printers: Add label to differentiate each printers metrics
This commit is contained in:
parent
3ae05b8690
commit
51c7d41aaa
|
@ -8,23 +8,28 @@ import (
|
||||||
func (e *Exporter) printerMetrics(ch chan<- prometheus.Metric) error {
|
func (e *Exporter) printerMetrics(ch chan<- prometheus.Metric) error {
|
||||||
printers, err := e.client.GetPrinters([]string{"printer-state"})
|
printers, err := e.client.GetPrinters([]string{"printer-state"})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
e.log.Error(err, "failed to fetch completed jobs")
|
e.log.Error(err, "failed to fetch printers")
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
states := make(map[ipp.PrinterState]int)
|
ch <- prometheus.MustNewConstMetric(e.printersTotal, prometheus.GaugeValue, float64(len(printers)))
|
||||||
|
|
||||||
|
for _, attr := range printers {
|
||||||
|
|
||||||
|
printer := attr["printer-name"][0].Value.(string)
|
||||||
|
|
||||||
|
states := make(map[int8]int)
|
||||||
states[ipp.PrinterStateIdle] = 0
|
states[ipp.PrinterStateIdle] = 0
|
||||||
states[ipp.PrinterStateProcessing] = 0
|
states[ipp.PrinterStateProcessing] = 0
|
||||||
states[ipp.PrinterStateStopped] = 0
|
states[ipp.PrinterStateStopped] = 0
|
||||||
|
|
||||||
for _, attr := range printers {
|
states[int8(attr["printer-state"][0].Value.(int))]++
|
||||||
states[ipp.PrinterState(attr["printer-state"][0].Value.(int))]++
|
|
||||||
}
|
|
||||||
|
|
||||||
ch <- prometheus.MustNewConstMetric(e.printersTotal, prometheus.GaugeValue, float64(len(printers)))
|
ch <- prometheus.MustNewConstMetric(e.printerStateTotal, prometheus.GaugeValue, float64(states[ipp.PrinterStateIdle]), printer, "idle")
|
||||||
ch <- prometheus.MustNewConstMetric(e.printerStateTotal, prometheus.GaugeValue, float64(states[ipp.PrinterStateIdle]), "idle")
|
ch <- prometheus.MustNewConstMetric(e.printerStateTotal, prometheus.GaugeValue, float64(states[ipp.PrinterStateProcessing]), printer, "processing")
|
||||||
ch <- prometheus.MustNewConstMetric(e.printerStateTotal, prometheus.GaugeValue, float64(states[ipp.PrinterStateProcessing]), "processing")
|
ch <- prometheus.MustNewConstMetric(e.printerStateTotal, prometheus.GaugeValue, float64(states[ipp.PrinterStateStopped]), printer, "stopped")
|
||||||
ch <- prometheus.MustNewConstMetric(e.printerStateTotal, prometheus.GaugeValue, float64(states[ipp.PrinterStateStopped]), "stopped")
|
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue