summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2023-12-05 13:30:43 +0200
committerGitHub <noreply@github.com>2023-12-05 13:30:43 +0200
commitc77c5eca4e54715c281676bea7fa7526b3dde36d (patch)
treec6e24e18f73421605c34c4c29fc3b2e8860d6f2d
parent981a998b9bdb15aecfdee5555ccba590a09eabaf (diff)
change level to debug "took too long to be updated" (#16540)
-rw-r--r--database/rrdset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/rrdset.c b/database/rrdset.c
index 408f64e817..f4bb48aa75 100644
--- a/database/rrdset.c
+++ b/database/rrdset.c
@@ -1676,7 +1676,7 @@ void rrdset_timed_done(RRDSET *st, struct timeval now, bool pending_rrdset_next)
// check if the chart has a long time to be updated
if(unlikely(st->usec_since_last_update > MAX(st->db.entries, 60) * update_every_ut)) {
- netdata_log_info("host '%s', chart '%s': took too long to be updated (counter #%u, update #%u, %0.3" NETDATA_DOUBLE_MODIFIER
+ nd_log_daemon(NDLP_DEBUG, "host '%s', chart '%s': took too long to be updated (counter #%u, update #%u, %0.3" NETDATA_DOUBLE_MODIFIER
" secs). Resetting it.", rrdhost_hostname(st->rrdhost), rrdset_id(st), st->counter, st->counter_done,
(NETDATA_DOUBLE)st->usec_since_last_update / USEC_PER_SEC);
rrdset_reset(st);