GaugeVec is a Collector that bundles a set of Gauges that all share the same Desc, but have different values for their variable labels. This is used if you want to count the same thing partitioned by various dimensions (e.g. number of operations queued, partitioned by user and operation type). Creat
| 144 | // (e.g. number of operations queued, partitioned by user and operation |
| 145 | // type). Create instances with NewGaugeVec. |
| 146 | type GaugeVec struct { |
| 147 | *MetricVec |
| 148 | } |
| 149 | |
| 150 | // NewGaugeVec creates a new GaugeVec based on the provided GaugeOpts and |
| 151 | // partitioned by the given label names. |
nothing calls this directly
no outgoing calls
no test coverage detected