1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.hadoop.hbase.ipc;
21
22 import org.apache.hadoop.hbase.metrics.BaseSource;
23
24 public interface MetricsHBaseServerSource extends BaseSource {
25 String AUTHORIZATION_SUCCESSES_NAME = "authorizationSuccesses";
26 String AUTHORIZATION_SUCCESSES_DESC =
27 "Number of authorization successes.";
28 String AUTHORIZATION_FAILURES_NAME = "authorizationFailures";
29 String AUTHORIZATION_FAILURES_DESC =
30 "Number of authorization failures.";
31 String AUTHENTICATION_SUCCESSES_NAME = "authenticationSuccesses";
32 String AUTHENTICATION_SUCCESSES_DESC =
33 "Number of authentication successes.";
34 String AUTHENTICATION_FAILURES_NAME = "authenticationFailures";
35 String AUTHENTICATION_FAILURES_DESC =
36 "Number of authentication failures.";
37 String SENT_BYTES_NAME = "sentBytes";
38 String SENT_BYTES_DESC = "Number of bytes sent.";
39 String RECEIVED_BYTES_NAME = "receivedBytes";
40 String RECEIVED_BYTES_DESC = "Number of bytes received.";
41 String REQUEST_SIZE_NAME = "requestSize";
42 String REQUEST_SIZE_DESC = "Request size in bytes.";
43 String RESPONSE_SIZE_NAME = "responseSize";
44 String RESPONSE_SIZE_DESC = "Response size in bytes.";
45 String QUEUE_CALL_TIME_NAME = "queueCallTime";
46 String QUEUE_CALL_TIME_DESC = "Queue Call Time.";
47 String PROCESS_CALL_TIME_NAME = "processCallTime";
48 String PROCESS_CALL_TIME_DESC = "Processing call time.";
49 String TOTAL_CALL_TIME_NAME = "totalCallTime";
50 String TOTAL_CALL_TIME_DESC = "Total call time, including both queued and processing time.";
51 String QUEUE_SIZE_NAME = "queueSize";
52 String QUEUE_SIZE_DESC = "Number of bytes in the call queues.";
53 String GENERAL_QUEUE_NAME = "numCallsInGeneralQueue";
54 String GENERAL_QUEUE_DESC = "Number of calls in the general call queue.";
55 String PRIORITY_QUEUE_NAME = "numCallsInPriorityQueue";
56 String REPLICATION_QUEUE_NAME = "numCallsInReplicationQueue";
57 String REPLICATION_QUEUE_DESC =
58 "Number of calls in the replication call queue.";
59 String PRIORITY_QUEUE_DESC = "Number of calls in the priority call queue.";
60 String NUM_OPEN_CONNECTIONS_NAME = "numOpenConnections";
61 String NUM_OPEN_CONNECTIONS_DESC = "Number of open connections.";
62 String NUM_ACTIVE_HANDLER_NAME = "numActiveHandler";
63 String NUM_ACTIVE_HANDLER_DESC = "Number of active rpc handlers.";
64
65 String EXCEPTIONS_NAME="exceptions";
66 String EXCEPTIONS_DESC="Exceptions caused by requests";
67 String EXCEPTIONS_TYPE_DESC="Number of requests that resulted in the specified type of Exception";
68 String EXCEPTIONS_OOO_NAME="exceptions.OutOfOrderScannerNextException";
69 String EXCEPTIONS_BUSY_NAME="exceptions.RegionTooBusyException";
70 String EXCEPTIONS_UNKNOWN_NAME="exceptions.UnknownScannerException";
71 String EXCEPTIONS_SANITY_NAME="exceptions.FailedSanityCheckException";
72 String EXCEPTIONS_MOVED_NAME="exceptions.RegionMovedException";
73 String EXCEPTIONS_NSRE_NAME="exceptions.NotServingRegionException";
74
75 void authorizationSuccess();
76
77 void authorizationFailure();
78
79 void authenticationSuccess();
80
81 void authenticationFailure();
82
83 void exception();
84
85
86
87
88 void outOfOrderException();
89 void failedSanityException();
90 void movedRegionException();
91 void notServingRegionException();
92 void unknownScannerException();
93 void tooBusyException();
94
95 void sentBytes(long count);
96
97 void receivedBytes(int count);
98
99 void sentResponse(long count);
100
101 void receivedRequest(long count);
102
103 void dequeuedCall(int qTime);
104
105 void processedCall(int processingTime);
106
107 void queuedAndProcessedCall(int totalTime);
108 }