001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.apache.hadoop.hbase.regionserver;
019
020import java.util.HashMap;
021import java.util.Map;
022
023public class MetricsTableWrapperStub implements MetricsTableWrapperAggregate {
024
025  private String tableName;
026
027  public MetricsTableWrapperStub(String tableName) {
028    this.tableName = tableName;
029  }
030
031  @Override
032  public long getReadRequestCount(String table) {
033    return 10;
034  }
035
036  @Override
037  public long getWriteRequestCount(String table) {
038    return 20;
039  }
040
041  @Override
042  public long getTotalRequestsCount(String table) {
043    return 30;
044  }
045
046  @Override
047  public long getFilteredReadRequestCount(String table) {
048    return 40;
049  }
050
051  @Override
052  public long getMemStoreSize(String table) {
053    return 1000;
054  }
055
056  @Override
057  public long getStoreFileSize(String table) {
058    return 2000;
059  }
060
061  @Override
062  public long getTableSize(String table) {
063    return 3000;
064  }
065
066  public String getTableName() {
067    return tableName;
068  }
069
070  @Override
071  public long getNumRegions(String table) {
072    return 11;
073  }
074
075  @Override
076  public long getNumStores(String table) {
077    return 22;
078  }
079
080  @Override
081  public long getNumStoreFiles(String table) {
082    return 33;
083  }
084
085  @Override
086  public long getMaxStoreFiles(String table) {
087    return 8;
088  }
089
090  @Override
091  public long getMaxStoreFileAge(String table) {
092    return 44;
093  }
094
095  @Override
096  public long getMinStoreFileAge(String table) {
097    return 55;
098  }
099
100  @Override
101  public long getAvgStoreFileAge(String table) {
102    return 66;
103  }
104
105  @Override
106  public long getNumReferenceFiles(String table) {
107    return 77;
108  }
109
110  @Override
111  public long getAvgRegionSize(String table) {
112    return 88;
113  }
114
115  @Override
116  public long getCpRequestsCount(String table) {
117    return 99;
118  }
119
120  public long getStaticIndexSize(String table) {
121    return 101;
122  }
123
124  @Override
125  public long getStaticBloomSize(String table) {
126    return 111;
127  }
128
129  @Override
130  public long getBloomFilterRequestsCount(String table) {
131    return 222;
132  }
133
134  @Override
135  public long getBloomFilterNegativeResultsCount(String table) {
136    return 333;
137  }
138
139  @Override
140  public long getBloomFilterEligibleRequestsCount(String table) {
141    return 444;
142  }
143
144  @Override
145  public Map<String, Long> getMemstoreOnlyRowReadsCount(String table) {
146    Map<String, Long> map = new HashMap<String, Long>();
147    map.put("table#info", 3L);
148    return map;
149  }
150
151  @Override
152  public Map<String, Long> getMixedRowReadsCount(String table) {
153    Map<String, Long> map = new HashMap<String, Long>();
154    map.put("table#info", 3L);
155    return map;
156  }
157}