MCPcopy
hub / github.com/prometheus/client_golang / SummaryVec

Struct SummaryVec

prometheus/summary.go:552–554  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

550// (e.g. HTTP request latencies, partitioned by status code and method). Create
551// instances with NewSummaryVec.
552type 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected