rpc/system_metrics.rs: Adjusted disk space metric names to match
node_exporter filesystem ones.
This commit is contained in:
parent
aea585b504
commit
8d8023b39a
1 changed files with 2 additions and 2 deletions
|
@ -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(),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue