adds counter for total WH consumed

This commit is contained in:
Hyatt 2022-11-27 10:40:30 -06:00
parent 5a25bb1c09
commit 77c0e64cbb
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
3 changed files with 29 additions and 15 deletions

View File

@ -63,6 +63,7 @@ type configPrometheus struct {
CurrentMa *prometheus.GaugeVec CurrentMa *prometheus.GaugeVec
VoltageMv *prometheus.GaugeVec VoltageMv *prometheus.GaugeVec
PowerMw *prometheus.GaugeVec PowerMw *prometheus.GaugeVec
TotalWh *prometheus.CounterVec
} }
func defaultConfig() *config { func defaultConfig() *config {
@ -87,6 +88,11 @@ func defaultConfig() *config {
Name: "watts", Name: "watts",
Help: "current wattage", Help: "current wattage",
}, []string{"device"}), }, []string{"device"}),
TotalWh: prometheus.NewCounterVec(prometheus.CounterOpts{
Namespace: "tplink",
Name: "watt_hours",
Help: "total watt hours",
}, []string{"device"}),
}, },
} }
} }
@ -323,7 +329,7 @@ func initialize() *config {
} }
time.Now().Format(cfg.TimeFormat) time.Now().Format(cfg.TimeFormat)
prometheus.MustRegister(cfg.Prometheus.CurrentMa, cfg.Prometheus.VoltageMv, cfg.Prometheus.PowerMw) prometheus.MustRegister(cfg.Prometheus.CurrentMa, cfg.Prometheus.VoltageMv, cfg.Prometheus.PowerMw, cfg.Prometheus.TotalWh)
// print running config // print running config
cfg.printRunningConfig(cfgInfo) cfg.printRunningConfig(cfgInfo)

View File

@ -10,8 +10,14 @@ import (
) )
func (cfg *config) gatherMetrics() { func (cfg *config) gatherMetrics() {
tracker := make(map[string]float64)
for { for {
for _, host := range cfg.Hosts { for _, host := range cfg.Hosts {
log.Printf("[TRACE] Reading Metrics from %s.", host)
if _, isMapKey := tracker[host]; !isMapKey {
tracker[host] = float64(0)
}
d := tplink.Tplink{ d := tplink.Tplink{
Host: host, Host: host,
} }
@ -20,9 +26,11 @@ func (cfg *config) gatherMetrics() {
log.Printf("[WARNING] Unable to read from device: %s: %v", host, err) log.Printf("[WARNING] Unable to read from device: %s: %v", host, err)
continue continue
} }
cfg.Prometheus.CurrentMa.With(prometheus.Labels{"device": host}).Set(float64(m.Emeter.GetRealtime.CurrentMa)) 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)) 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)) 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))
tracker[host] = m.Emeter.GetRealtime.TotalWh
} }
time.Sleep(time.Duration(time.Second * 15)) time.Sleep(time.Duration(time.Second * 15))
} }

View File

@ -68,23 +68,23 @@ type SysInfo struct {
} `json:"system"` } `json:"system"`
Emeter struct { Emeter struct {
GetRealtime struct { GetRealtime struct {
CurrentMa int `json:"current_ma"` CurrentMa float64 `json:"current_ma"`
VoltageMv int `json:"voltage_mv"` VoltageMv float64 `json:"voltage_mv"`
PowerMw int `json:"power_mw"` PowerMw float64 `json:"power_mw"`
TotalWh int `json:"total_wh"` TotalWh float64 `json:"total_wh"`
ErrCode int `json:"err_code"` ErrCode float64 `json:"err_code"`
} `json:"get_realtime"` } `json:"get_realtime"`
GetVgainIgain struct { GetVgainIgain struct {
Vgain int `json:"vgain"` Vgain float64 `json:"vgain"`
Igain int `json:"igain"` Igain float64 `json:"igain"`
ErrCode int `json:"err_code"` ErrCode int `json:"err_code"`
} `json:"get_vgain_igain"` } `json:"get_vgain_igain"`
GetDaystat struct { GetDaystat struct {
DayList []struct { DayList []struct {
Year int `json:"year"` Year float64 `json:"year"`
Month int `json:"month"` Month float64 `json:"month"`
Day int `json:"day"` Day float64 `json:"day"`
EnergyWh int `json:"energy_wh"` EnergyWh float64 `json:"energy_wh"`
} `json:"day_list"` } `json:"day_list"`
ErrCode int `json:"err_code"` ErrCode int `json:"err_code"`
} `json:"get_daystat"` } `json:"get_daystat"`