corrects math on power consumption

This commit is contained in:
Hyatt 2022-11-27 13:08:51 -06:00
parent 77c0e64cbb
commit e2f737884c
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -29,7 +29,7 @@ func (cfg *config) gatherMetrics() {
cfg.Prometheus.CurrentMa.With(prometheus.Labels{"device": host}).Set(float64(m.Emeter.GetRealtime.CurrentMa / 1000.0)) cfg.Prometheus.CurrentMa.With(prometheus.Labels{"device": host}).Set(float64(m.Emeter.GetRealtime.CurrentMa / 1000.0))
cfg.Prometheus.VoltageMv.With(prometheus.Labels{"device": host}).Set(float64(m.Emeter.GetRealtime.VoltageMv / 1000.0)) cfg.Prometheus.VoltageMv.With(prometheus.Labels{"device": host}).Set(float64(m.Emeter.GetRealtime.VoltageMv / 1000.0))
cfg.Prometheus.PowerMw.With(prometheus.Labels{"device": host}).Set(float64(m.Emeter.GetRealtime.PowerMw / 1000.0)) cfg.Prometheus.PowerMw.With(prometheus.Labels{"device": host}).Set(float64(m.Emeter.GetRealtime.PowerMw / 1000.0))
cfg.Prometheus.TotalWh.With(prometheus.Labels{"device": host}).Add(float64((m.Emeter.GetRealtime.TotalWh - tracker[host]) / 1000.0)) cfg.Prometheus.TotalWh.With(prometheus.Labels{"device": host}).Add(float64(m.Emeter.GetRealtime.TotalWh - tracker[host]))
tracker[host] = m.Emeter.GetRealtime.TotalWh tracker[host] = m.Emeter.GetRealtime.TotalWh
} }
time.Sleep(time.Duration(time.Second * 15)) time.Sleep(time.Duration(time.Second * 15))