From: Manuel Luis SanmartĂ­n Rozada Date: Thu, 19 Jun 2014 14:50:48 +0000 (+0200) Subject: Plugin threshold: time is not set in missing notifications. X-Git-Tag: collectd-5.5.0~283^2 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=f28e85ce5eda0261b6b2ee2f81709892361a99f4 Plugin threshold: time is not set in missing notifications. --- diff --git a/src/threshold.c b/src/threshold.c index 7df4d616..887dbca3 100644 --- a/src/threshold.c +++ b/src/threshold.c @@ -942,6 +942,7 @@ static int ut_missing (const value_list_t *vl, cdtime_t missing_time; char identifier[6 * DATA_MAX_NAME_LEN]; notification_t n; + cdtime_t now; if (threshold_tree == NULL) return (0); @@ -951,13 +952,15 @@ static int ut_missing (const value_list_t *vl, if ((th == NULL) || ((th->flags & UT_FLAG_INTERESTING) == 0)) return (0); - missing_time = cdtime () - vl->time; + now = cdtime (); + missing_time = now - vl->time; FORMAT_VL (identifier, sizeof (identifier), vl); NOTIFICATION_INIT_VL (&n, vl); ssnprintf (n.message, sizeof (n.message), "%s has not been updated for %.3f seconds.", identifier, CDTIME_T_TO_DOUBLE (missing_time)); + n.time = now; plugin_dispatch_notification (&n);