Code

thresholds: Log the current value of a DS value when generating an OKAY notification
authorJan Kundrát <jan.kundrat@cesnet.cz>
Tue, 11 Mar 2014 09:59:32 +0000 (10:59 +0100)
committerJan Kundrát <jan.kundrat@cesnet.cz>
Tue, 11 Mar 2014 09:59:32 +0000 (10:59 +0100)
src/threshold.c

index 2173fa8084da10a7b04ada03c8695a4736f06bc7..a4449741d0c566ee4df8dac7cb196c33e98dd9e5 100644 (file)
@@ -629,7 +629,9 @@ static int ut_report_state (const data_set_t *ds,
           ": Value is no longer missing.");
     else
       status = ssnprintf (buf, bufsize,
-          ": All data sources are within range again.");
+          ": All data sources are within range again. "
+          "Current value of \"%s\" is %f.",
+          ds->ds[ds_index].name, values[ds_index]);
     buf += status;
     bufsize -= status;
   }