Skip to content

Commit 3f7b801

Browse files
committed
Fixed the description of memory_total_kib rrd datasource.
It is memory "in the host", not "in use". Signed-off-by: Thomas Sanders <[email protected]>
1 parent deb8451 commit 3f7b801

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/rrdd/rrdd_main.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ let read_mem_metrics xc =
424424
let xapiactualfree_kib = Int64.of_int (gcstat.Gc.free_words / 256) in
425425
let xapiactuallive_kib = Int64.of_int (gcstat.Gc.live_words / 256) in
426426
[
427-
(Host, ds_make ~name:"memory_total_kib" ~description:"Total amount of memory in use"
427+
(Host, ds_make ~name:"memory_total_kib" ~description:"Total amount of memory in the host"
428428
~value:(Rrd.VT_Int64 total_kib) ~ty:Rrd.Gauge ~min:0.0 ~default:true ~units:"KiB" ());
429429
(Host, ds_make ~name:"memory_free_kib" ~description:"Total amount of free memory"
430430
~value:(Rrd.VT_Int64 free_kib) ~ty:Rrd.Gauge ~min:0.0 ~default:true ~units:"KiB" ());

0 commit comments

Comments
 (0)