View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  
19  package org.apache.hadoop.hbase.regionserver;
20  
21  public class MetricsTableWrapperStub implements MetricsTableWrapperAggregate {
22  
23    private String tableName;
24  
25    public MetricsTableWrapperStub(String tableName) {
26      this.tableName = tableName;
27    }
28  
29    @Override
30    public long getReadRequestCount(String table) {
31      return 10;
32    }
33  
34    @Override
35    public long getWriteRequestCount(String table) {
36      return 20;
37    }
38  
39    @Override
40    public long getTotalRequestsCount(String table) {
41      return 30;
42    }
43  
44    @Override
45    public long getMemstoreSize(String table) {
46      return 1000;
47    }
48  
49    @Override
50    public long getStoreFileSize(String table) {
51      return 2000;
52    }
53  
54    @Override
55    public long getTableSize(String table) {
56      return 3000;
57    }
58  
59    public String getTableName() {
60      return tableName;
61    }
62  
63    @Override
64    public long getNumRegions(String table) {
65      return 11;
66    }
67  
68    @Override
69    public long getNumStores(String table) {
70      return 22;
71    }
72  
73    @Override
74    public long getNumStoreFiles(String table) {
75      return 33;
76    }
77  
78    @Override
79    public long getMaxStoreFileAge(String table) {
80      return 44;
81    }
82  
83    @Override
84    public long getMinStoreFileAge(String table) {
85      return 55;
86    }
87  
88    @Override
89    public long getAvgStoreFileAge(String table) {
90      return 66;
91    }
92  
93    @Override
94    public long getNumReferenceFiles(String table) {
95      return 77;
96    }
97  
98    @Override
99    public long getAvgRegionSize(String table) {
100     return 88;
101   }
102 }