metrics

package
v1.14.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 16, 2019 License: Apache-2.0, Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

Package metrics provides abstractions for registering which metrics to record.

Index

Constants

This section is empty.

Variables

View Source
var (
	// RequestLatency is the latency metric that rest clients will update.
	RequestLatency LatencyMetric = noopLatency{}
	// RequestResult is the result metric that rest clients will update.
	RequestResult ResultMetric = noopResult{}
)

Functions

func Register

func Register(lm LatencyMetric, rm ResultMetric)

Register registers metrics for the rest client to use. This can only be called once.

Types

type LatencyMetric

type LatencyMetric interface {
	Observe(verb string, u url.URL, latency time.Duration)
}

LatencyMetric observes client latency partitioned by verb and url.

type ResultMetric

type ResultMetric interface {
	Increment(code string, method string, host string)
}

ResultMetric counts response codes partitioned by method and host.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL