NewSummaryVec works like the function of the same name in the prometheus package but it automatically registers the SummaryVec with the prometheus.DefaultRegisterer. If the registration fails, NewSummaryVec panics.
(opts prometheus.SummaryOpts, labelNames []string)
| 217 | // prometheus.DefaultRegisterer. If the registration fails, NewSummaryVec |
| 218 | // panics. |
| 219 | func NewSummaryVec(opts prometheus.SummaryOpts, labelNames []string) *prometheus.SummaryVec { |
| 220 | return With(prometheus.DefaultRegisterer).NewSummaryVec(opts, labelNames) |
| 221 | } |
| 222 | |
| 223 | // NewHistogram works like the function of the same name in the prometheus |
| 224 | // package but it automatically registers the Histogram with the |
nothing calls this directly
no test coverage detected