type github.com/prometheus/client_golang/prometheus.ObserverVec

13 uses

	github.com/prometheus/client_golang/prometheus (current package)
		histogram.go#L468: func (v *HistogramVec) CurryWith(labels Labels) (ObserverVec, error) {
		histogram.go#L478: func (v *HistogramVec) MustCurryWith(labels Labels) ObserverVec {
		observer.go#L43: type ObserverVec interface {
		observer.go#L48: 	CurryWith(Labels) (ObserverVec, error)
		observer.go#L49: 	MustCurryWith(Labels) ObserverVec
		summary.go#L631: func (v *SummaryVec) CurryWith(labels Labels) (ObserverVec, error) {
		summary.go#L641: func (v *SummaryVec) MustCurryWith(labels Labels) ObserverVec {

	github.com/prometheus/client_golang/prometheus/promhttp
		instrument_client.go#L88: func InstrumentRoundTripperDuration(obs prometheus.ObserverVec, next http.RoundTripper) RoundTripperFunc {
		instrument_server.go#L61: func InstrumentHandlerDuration(obs prometheus.ObserverVec, next http.Handler) http.HandlerFunc {
		instrument_server.go#L129: func InstrumentHandlerTimeToWriteHeader(obs prometheus.ObserverVec, next http.Handler) http.HandlerFunc {
		instrument_server.go#L157: func InstrumentHandlerRequestSize(obs prometheus.ObserverVec, next http.Handler) http.HandlerFunc {
		instrument_server.go#L192: func InstrumentHandlerResponseSize(obs prometheus.ObserverVec, next http.Handler) http.Handler {
		instrument_server.go#L268: 	case prometheus.ObserverVec: