rpc/system_metrics.rs: Adjusted disk space metric names to match

node_exporter filesystem ones.
This commit is contained in:
Jonathan Davies 2023-01-26 17:32:02 +00:00
parent aea585b504
commit 8d8023b39a

View file

@ -22,11 +22,11 @@ impl SystemMetrics {
.with_description("Garage replication factor setting") .with_description("Garage replication factor setting")
.init(), .init(),
_disk_avail: meter _disk_avail: meter
.u64_observable_gauge("garage_local_disk_avail") .u64_observable_gauge("garage_local_disk_avail_bytes")
.with_description("Garage available disk space on each node") .with_description("Garage available disk space on each node")
.init(), .init(),
_disk_total: meter _disk_total: meter
.u64_observable_gauge("garage_local_disk_total") .u64_observable_gauge("garage_local_size_bytes")
.with_description("Garage total disk space on each node") .with_description("Garage total disk space on each node")
.init(), .init(),
} }