HistogramVec is a Collector that bundles a set of Histograms 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. HTTP request latencies, partitioned by status code and method). Cre
| 1171 | // (e.g. HTTP request latencies, partitioned by status code and method). Create |
| 1172 | // instances with NewHistogramVec. |
| 1173 | type HistogramVec struct { |
| 1174 | *MetricVec |
| 1175 | } |
| 1176 | |
| 1177 | // NewHistogramVec creates a new HistogramVec based on the provided HistogramOpts and |
| 1178 | // partitioned by the given label names. |
nothing calls this directly
no outgoing calls
no test coverage detected