ObserverVec is an interface implemented by `HistogramVec` and `SummaryVec`.
| 41 | |
| 42 | // ObserverVec is an interface implemented by `HistogramVec` and `SummaryVec`. |
| 43 | type ObserverVec interface { |
| 44 | GetMetricWith(Labels) (Observer, error) |
| 45 | GetMetricWithLabelValues(lvs ...string) (Observer, error) |
| 46 | With(Labels) Observer |
| 47 | WithLabelValues(...string) Observer |
| 48 | CurryWith(Labels) (ObserverVec, error) |
| 49 | MustCurryWith(Labels) ObserverVec |
| 50 | |
| 51 | Collector |
| 52 | } |
| 53 | |
| 54 | // ExemplarObserver is implemented by Observers that offer the option of |
| 55 | // observing a value together with an exemplar. Its ObserveWithExemplar method |
no outgoing calls
no test coverage detected