Include heartbeat and zk-connected metric in PrometheusEmitter (#16209)

This commit is contained in:
Tapajit Chandra Paul 2024-04-01 15:42:06 +06:00 committed by GitHub
parent 20de7fd95a
commit dbef348249
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -126,5 +126,8 @@
"sys/cpu" : { "dimensions" : ["cpuName", "cpuTime"], "type" : "gauge", "help": "CPU used"},
"coordinator_segment/count" : { "dimensions" : ["dataSource"], "type" : "gauge", "help": "Number of served segments."},
"historical_segment/count" : { "dimensions" : ["dataSource", "tier", "priority"], "type" : "gauge", "help": "Number of served segments."}
"historical_segment/count" : { "dimensions" : ["dataSource", "tier", "priority"], "type" : "gauge", "help": "Number of served segments."},
"service/heartbeat" : { "dimensions" : ["dataSource", "type"], "type" : "gauge", "help": "Metric indicating the service is up. This metric is only available if the ServiceStatusMonitor module is included."},
"zk/connected" : { "dimensions" : [], "type" : "gauge", "help": "Indicator of connection status to zookeeper."}
}