Counter https://prometheus.io/docs/concepts/metric_types/#counter
| 24 | // Counter |
| 25 | // https://prometheus.io/docs/concepts/metric_types/#counter |
| 26 | type Counter interface { |
| 27 | metric |
| 28 | |
| 29 | Inc(lbls labels.Labels, value float64) |
| 30 | } |
| 31 | |
| 32 | // Histogram |
| 33 | // https://prometheus.io/docs/concepts/metric_types/#histogram |
no outgoing calls
no test coverage detected