@@ -6,10 +6,6 @@ pub const PROMETHEUS_HTTP_PORT: u16 = 9091;
6
6
7
7
#[ derive( Clone ) ]
8
8
pub struct OrchestratorMetrics {
9
- pub heart_beat_count : IntCounter ,
10
- pub resident_mem_used : IntGauge ,
11
- /// Registry version last used to successfully fetch datacenter information
12
- pub datacenter_registry_version : IntGauge ,
13
9
pub ssh_access_registry_version : IntGauge ,
14
10
pub firewall_registry_version : IntGauge ,
15
11
pub reboot_duration : IntGauge ,
@@ -45,18 +41,6 @@ impl KeyRotationStatus {
45
41
impl OrchestratorMetrics {
46
42
pub fn new ( metrics_registry : & ic_metrics:: MetricsRegistry ) -> Self {
47
43
Self {
48
- heart_beat_count : metrics_registry. int_counter (
49
- "replica_heart_beat_count" ,
50
- "Number of times a process heart beat has been observed for the Subnet Replica" ,
51
- ) ,
52
- resident_mem_used : metrics_registry. int_gauge (
53
- "replica_resident_memory_used" ,
54
- "Resident memory allocated by the Subnet Replica in bytes" ,
55
- ) ,
56
- datacenter_registry_version : metrics_registry. int_gauge (
57
- "datacenter_registry_version" ,
58
- "Registry version last used to successfully fetch datacenter information" ,
59
- ) ,
60
44
ssh_access_registry_version : metrics_registry. int_gauge (
61
45
"ssh_access_registry_version" ,
62
46
"Registry version last used to update the SSH public keys" ,
0 commit comments