accidental tab autocomplete 🔪

This commit is contained in:
Benjamin Visser 2018-01-17 14:44:58 -05:00
parent 2ae1878ef4
commit c9e0b6b582

View file

@ -115,7 +115,7 @@ func (p nginxStatusCollector) scrape(ch chan<- prometheus.Metric) {
ch <- prometheus.MustNewConstMetric(p.data.requestsTotal,
prometheus.CounterValue, float64(s.Requests), p.ingressClass, p.watchNamespace)
ch <- prometheus.MustNewConstMetric(p.data.connections,
prometheus.GaugeValue, float64(s.Reading), pconnections.ingressClass, p.watchNamespace, "reading")
prometheus.GaugeValue, float64(s.Reading), p.ingressClass, p.watchNamespace, "reading")
ch <- prometheus.MustNewConstMetric(p.data.connections,
prometheus.GaugeValue, float64(s.Writing), p.ingressClass, p.watchNamespace, "writing")
ch <- prometheus.MustNewConstMetric(p.data.connections,