Fix stale threshold

This commit is contained in:
Robert Jacob 2020-06-21 18:04:42 +02:00
parent 3d98195772
commit b757b59f9f
2 changed files with 4 additions and 3 deletions

View File

@ -138,7 +138,7 @@ func (c *netatmoCollector) collectData(ch chan<- prometheus.Metric, device *neta
date := time.Unix(*data.LastMeasure, 0)
if time.Since(date) > c.staleThreshold {
c.log.Warnf("Data is stale: %s > %s", time.Since(date), c.staleThreshold)
c.log.Warnf("Data is stale for %s: %s > %s", moduleName, time.Since(date), c.staleThreshold)
return
}

View File

@ -36,8 +36,9 @@ func main() {
}
metrics := &netatmoCollector{
log: log,
client: client,
log: log,
client: client,
staleThreshold: cfg.StaleDuration,
}
prometheus.MustRegister(metrics)