@@ -310,8 +310,8 @@ Some metrics might not be exposed when using other JVM implementations (e.g. IBM
310310 </thead >
311311 <tbody >
312312 <tr>
313- <th rowspan="5 "><strong>coordinator</strong></th>
314- <td style={{textAlign: 'center', verticalAlign: 'middle' }} rowspan="5 ">-</td>
313+ <th rowspan="6 "><strong>coordinator</strong></th>
314+ <td style={{textAlign: 'center', verticalAlign: 'middle' }} rowspan="6 ">-</td>
315315 <td>activeCoordinatorCount</td>
316316 <td>The number of active CoordinatorServer in this cluster.</td>
317317 <td>Gauge</td>
@@ -336,6 +336,11 @@ Some metrics might not be exposed when using other JVM implementations (e.g. IBM
336336 <td>The total number of buckets in this cluster.</td>
337337 <td>Gauge</td>
338338 </tr>
339+ <tr>
340+ <td>replicasToDeleteCount</td>
341+ <td>The total number of replicas in the progress to be deleted in this cluster.</td>
342+ <td>Gauge</td>
343+ </tr>
339344 </tbody >
340345</table >
341346
@@ -428,25 +433,37 @@ Some metrics might not be exposed when using other JVM implementations (e.g. IBM
428433 <td>Gauge</td>
429434 </tr>
430435 <tr>
431- <th rowspan="6 ">tabletserver</th>
432- <td rowspan="6 ">request</td>
436+ <th rowspan="8 ">tabletserver</th>
437+ <td rowspan="1 ">request</td>
433438 <td>requestQueueSize</td>
434439 <td>The TabletServer node network waiting queue size.</td>
435440 <td>Gauge</td>
436441 </tr>
437442 <tr>
438- <td>requestPerSecond</td>
439- <td>The total number of requests processed per second by the TabletServer node.</td>
443+ <td rowspan="7">
444+ request_productLog
445+ request_putKv
446+ request_lookup
447+ request_prefixLookup
448+ request_metadata
449+ </td>
450+ <td>requestsPerSecond</td>
451+ <td>The total number of requests processed per second for each request type.</td>
440452 <td>Meter</td>
441453 </tr>
442454 <tr>
443455 <td>errorsPerSecond</td>
444- <td>The total number of error requests processed per second by the TabletServer node .</td>
456+ <td>The total number of error requests processed per second for each request type .</td>
445457 <td>Meter</td>
446458 </tr>
459+ <tr>
460+ <td>requestBytes</td>
461+ <td>Size of requests for each request type.</td>
462+ <td>Histogram</td>
463+ </tr>
447464 <tr>
448465 <td>totalTimeMs</td>
449- <td>The total time it takes for the current TabletServer node to process a request .</td>
466+ <td>The total time it takes for each request type, it's requestQueueTimeMs + requestProcessTimeMs + responseSendTimeMs .</td>
450467 <td>Histogram</td>
451468 </tr>
452469 <tr>
@@ -456,7 +473,12 @@ Some metrics might not be exposed when using other JVM implementations (e.g. IBM
456473 </tr>
457474 <tr>
458475 <td>requestQueueTimeMs</td>
459- <td>The wait time spent by the request in the network waiting queue in this TabletServer node.</td>
476+ <td>The wait time spent by the request in the network waiting queue for each request type.</td>
477+ <td>Histogram</td>
478+ </tr>
479+ <tr>
480+ <td>responseSendTimeMs</td>
481+ <td>Time to send the response for each request type.</td>
460482 <td>Histogram</td>
461483 </tr>
462484 <tr>
@@ -610,7 +632,7 @@ Some metrics might not be exposed when using other JVM implementations (e.g. IBM
610632 <td>Meter</td>
611633 </tr>
612634 <tr>
613- <td rowspan="6 ">table_bucket</td>
635+ <td rowspan="7 ">table_bucket</td>
614636 <td>inSyncReplicasCount</td>
615637 <td>The inSync replicas count of this table bucket.</td>
616638 <td>Gauge</td>
@@ -619,6 +641,11 @@ Some metrics might not be exposed when using other JVM implementations (e.g. IBM
619641 <td>underMinIsr</td>
620642 <td>If this bucket is under min isr, this value is 1, otherwise 0.</td>
621643 <td>Gauge</td>
644+ </tr>
645+ <tr>
646+ <td>underReplicated</td>
647+ <td>If this bucket is under replication factor, this value is 1, otherwise 0.</td>
648+ <td>Gauge</td>
622649 </tr>
623650 <tr>
624651 <td>atMinIsr</td>
0 commit comments