From 382682f606752da6d19fd8b03beafcf163a5d558 Mon Sep 17 00:00:00 2001 From: Konstantina Chremmou Date: Sat, 9 Dec 2023 00:20:49 +0000 Subject: [PATCH] Fixed typo in ds field minimal_heartbeat. Signed-off-by: Konstantina Chremmou --- lib/rrd.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rrd.ml b/lib/rrd.ml index 642a875..3c2f8d7 100644 --- a/lib/rrd.ml +++ b/lib/rrd.ml @@ -939,7 +939,7 @@ module Json = struct [ ("name", string ds.ds_name) ; ("type", string (ds_type_to_string ds.ds_ty)) - ; ("minimal_hearbeat", float ds.ds_mrhb) + ; ("minimal_heartbeat", float ds.ds_mrhb) ; ("min", float ds.ds_min) ; ("max", float ds.ds_max) ; ("last_ds", string (ds_value_to_string ds.ds_last))