type github.com/prometheus/client_golang/prometheus.Observer
19 uses
github.com/prometheus/client_golang/prometheus (current package)
histogram.go#L404: func (v *HistogramVec) GetMetricWithLabelValues(lvs ...string) (Observer, error) {
histogram.go#L407: return metric.(Observer), err
histogram.go#L424: func (v *HistogramVec) GetMetricWith(labels Labels) (Observer, error) {
histogram.go#L427: return metric.(Observer), err
histogram.go#L436: func (v *HistogramVec) WithLabelValues(lvs ...string) Observer {
histogram.go#L447: func (v *HistogramVec) With(labels Labels) Observer {
observer.go#L18: type Observer interface {
observer.go#L44: GetMetricWith(Labels) (Observer, error)
observer.go#L45: GetMetricWithLabelValues(lvs ...string) (Observer, error)
observer.go#L46: With(Labels) Observer
observer.go#L47: WithLabelValues(...string) Observer
summary.go#L567: func (v *SummaryVec) GetMetricWithLabelValues(lvs ...string) (Observer, error) {
summary.go#L570: return metric.(Observer), err
summary.go#L587: func (v *SummaryVec) GetMetricWith(labels Labels) (Observer, error) {
summary.go#L590: return metric.(Observer), err
summary.go#L599: func (v *SummaryVec) WithLabelValues(lvs ...string) Observer {
summary.go#L610: func (v *SummaryVec) With(labels Labels) Observer {
timer.go#L22: observer Observer
timer.go#L33: func NewTimer(o Observer) *Timer {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |