mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Fix debug output
This commit is contained in:
parent
1a987c2dbf
commit
38e6e6b672
|
@ -30,9 +30,9 @@ func NewTimeCollector() (Collector, error) {
|
|||
}
|
||||
|
||||
func (c *timeCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
||||
now := time.Now()
|
||||
log.Debugf("Set time: %f", now.Unix())
|
||||
c.metric.Set(float64(now.Unix()))
|
||||
now := float64(time.Now().Unix())
|
||||
log.Debugf("Set time: %f", now)
|
||||
c.metric.Set(now)
|
||||
c.metric.Collect(ch)
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue