Add add
(value float64, labels diting.Labels)
| 16 | |
| 17 | //Add add |
| 18 | func (c *Counter) Add(value float64, labels diting.Labels) { |
| 19 | c.counterVec.With(ReadLabels(labels)).Add(value) |
| 20 | } |
| 21 | |
| 22 | //Gauge gauge |
| 23 | type Gauge struct { |
nothing calls this directly
no test coverage detected