SummaryVec is a Collector that bundles a set of Summaries 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). Create
| 550 | // (e.g. HTTP request latencies, partitioned by status code and method). Create |
| 551 | // instances with NewSummaryVec. |
| 552 | type SummaryVec struct { |
| 553 | *MetricVec |
| 554 | } |
| 555 | |
| 556 | // NewSummaryVec creates a new SummaryVec based on the provided SummaryOpts and |
| 557 | // partitioned by the given label names. |
nothing calls this directly
no outgoing calls
no test coverage detected