1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.hadoop.hbase.regionserver;
20
21 import org.apache.hadoop.hbase.metrics.BaseSource;
22
23
24
25
26 public interface MetricsRegionServerSource extends BaseSource {
27
28
29
30
31 static final String METRICS_NAME = "Server";
32
33
34
35
36 static final String METRICS_CONTEXT = "regionserver";
37
38
39
40
41 static final String METRICS_DESCRIPTION = "Metrics about HBase RegionServer";
42
43
44
45
46 static final String METRICS_JMX_CONTEXT = "RegionServer,sub=" + METRICS_NAME;
47
48
49
50
51
52
53 void updatePut(long t);
54
55
56
57
58
59
60 void updateDelete(long t);
61
62
63
64
65
66
67 void updateGet(long t);
68
69
70
71
72
73
74 void updateIncrement(long t);
75
76
77
78
79
80
81 void updateAppend(long t);
82
83
84
85
86
87
88 void updateReplay(long t);
89
90
91
92
93 void incrSlowPut();
94
95
96
97
98 void incrSlowDelete();
99
100
101
102
103 void incrSlowGet();
104
105
106
107
108 void incrSlowIncrement();
109
110
111
112
113 void incrSlowAppend();
114
115
116 static final String REGION_COUNT = "regionCount";
117 static final String REGION_COUNT_DESC = "Number of regions";
118 static final String STORE_COUNT = "storeCount";
119 static final String STORE_COUNT_DESC = "Number of Stores";
120 static final String STOREFILE_COUNT = "storeFileCount";
121 static final String STOREFILE_COUNT_DESC = "Number of Store Files";
122 static final String MEMSTORE_SIZE = "memStoreSize";
123 static final String MEMSTORE_SIZE_DESC = "Size of the memstore";
124 static final String STOREFILE_SIZE = "storeFileSize";
125 static final String STOREFILE_SIZE_DESC = "Size of storefiles being served.";
126 static final String TOTAL_REQUEST_COUNT = "totalRequestCount";
127 static final String TOTAL_REQUEST_COUNT_DESC =
128 "Total number of requests this RegionServer has answered.";
129 static final String READ_REQUEST_COUNT = "readRequestCount";
130 static final String READ_REQUEST_COUNT_DESC =
131 "Number of read requests this region server has answered.";
132 static final String WRITE_REQUEST_COUNT = "writeRequestCount";
133 static final String WRITE_REQUEST_COUNT_DESC =
134 "Number of mutation requests this region server has answered.";
135 static final String CHECK_MUTATE_FAILED_COUNT = "checkMutateFailedCount";
136 static final String CHECK_MUTATE_FAILED_COUNT_DESC =
137 "Number of Check and Mutate calls that failed the checks.";
138 static final String CHECK_MUTATE_PASSED_COUNT = "checkMutatePassedCount";
139 static final String CHECK_MUTATE_PASSED_COUNT_DESC =
140 "Number of Check and Mutate calls that passed the checks.";
141 static final String STOREFILE_INDEX_SIZE = "storeFileIndexSize";
142 static final String STOREFILE_INDEX_SIZE_DESC = "Size of indexes in storefiles on disk.";
143 static final String STATIC_INDEX_SIZE = "staticIndexSize";
144 static final String STATIC_INDEX_SIZE_DESC = "Uncompressed size of the static indexes.";
145 static final String STATIC_BLOOM_SIZE = "staticBloomSize";
146 static final String STATIC_BLOOM_SIZE_DESC =
147 "Uncompressed size of the static bloom filters.";
148 static final String NUMBER_OF_PUTS_WITHOUT_WAL = "putsWithoutWALCount";
149 static final String NUMBER_OF_PUTS_WITHOUT_WAL_DESC =
150 "Number of mutations that have been sent by clients with the write ahead logging turned off.";
151 static final String DATA_SIZE_WITHOUT_WAL = "putsWithoutWALSize";
152 static final String DATA_SIZE_WITHOUT_WAL_DESC =
153 "Size of data that has been sent by clients with the write ahead logging turned off.";
154 static final String PERCENT_FILES_LOCAL = "percentFilesLocal";
155 static final String PERCENT_FILES_LOCAL_DESC =
156 "The percent of HFiles that are stored on the local hdfs data node.";
157 static final String COMPACTION_QUEUE_LENGTH = "compactionQueueLength";
158 static final String COMPACTION_QUEUE_LENGTH_DESC = "Length of the queue for compactions.";
159 static final String FLUSH_QUEUE_LENGTH = "flushQueueLength";
160 static final String FLUSH_QUEUE_LENGTH_DESC = "Length of the queue for region flushes";
161 static final String BLOCK_CACHE_FREE_SIZE = "blockCacheFreeSize";
162 static final String BLOCK_CACHE_FREE_DESC =
163 "Size of the block cache that is not occupied.";
164 static final String BLOCK_CACHE_COUNT = "blockCacheCount";
165 static final String BLOCK_CACHE_COUNT_DESC = "Number of block in the block cache.";
166 static final String BLOCK_CACHE_SIZE = "blockCacheSize";
167 static final String BLOCK_CACHE_SIZE_DESC = "Size of the block cache.";
168 static final String BLOCK_CACHE_HIT_COUNT = "blockCacheHitCount";
169 static final String BLOCK_CACHE_HIT_COUNT_DESC = "Count of the hit on the block cache.";
170 static final String BLOCK_CACHE_MISS_COUNT = "blockCacheMissCount";
171 static final String BLOCK_COUNT_MISS_COUNT_DESC =
172 "Number of requests for a block that missed the block cache.";
173 static final String BLOCK_CACHE_EVICTION_COUNT = "blockCacheEvictionCount";
174 static final String BLOCK_CACHE_EVICTION_COUNT_DESC =
175 "Count of the number of blocks evicted from the block cache.";
176 static final String BLOCK_CACHE_HIT_PERCENT = "blockCountHitPercent";
177 static final String BLOCK_CACHE_HIT_PERCENT_DESC =
178 "Percent of block cache requests that are hits";
179 static final String BLOCK_CACHE_EXPRESS_HIT_PERCENT = "blockCacheExpressHitPercent";
180 static final String BLOCK_CACHE_EXPRESS_HIT_PERCENT_DESC =
181 "The percent of the time that requests with the cache turned on hit the cache.";
182 static final String RS_START_TIME_NAME = "regionServerStartTime";
183 static final String ZOOKEEPER_QUORUM_NAME = "zookeeperQuorum";
184 static final String SERVER_NAME_NAME = "serverName";
185 static final String CLUSTER_ID_NAME = "clusterId";
186 static final String RS_START_TIME_DESC = "RegionServer Start Time";
187 static final String ZOOKEEPER_QUORUM_DESC = "Zookeeper Quorum";
188 static final String SERVER_NAME_DESC = "Server Name";
189 static final String CLUSTER_ID_DESC = "Cluster Id";
190 static final String UPDATES_BLOCKED_TIME = "updatesBlockedTime";
191 static final String UPDATES_BLOCKED_DESC =
192 "Number of MS updates have been blocked so that the memstore can be flushed.";
193 static final String DELETE_KEY = "delete";
194 static final String GET_KEY = "get";
195 static final String INCREMENT_KEY = "increment";
196 static final String MUTATE_KEY = "mutate";
197 static final String APPEND_KEY = "append";
198 static final String REPLAY_KEY = "replay";
199 static final String SCAN_NEXT_KEY = "scanNext";
200 static final String SLOW_MUTATE_KEY = "slowPutCount";
201 static final String SLOW_GET_KEY = "slowGetCount";
202 static final String SLOW_DELETE_KEY = "slowDeleteCount";
203 static final String SLOW_INCREMENT_KEY = "slowIncrementCount";
204 static final String SLOW_APPEND_KEY = "slowAppendCount";
205 static final String SLOW_MUTATE_DESC =
206 "The number of Multis that took over 1000ms to complete";
207 static final String SLOW_DELETE_DESC =
208 "The number of Deletes that took over 1000ms to complete";
209 static final String SLOW_GET_DESC = "The number of Gets that took over 1000ms to complete";
210 static final String SLOW_INCREMENT_DESC =
211 "The number of Increments that took over 1000ms to complete";
212 static final String SLOW_APPEND_DESC =
213 "The number of Appends that took over 1000ms to complete";
214
215
216 }