metrics

package
v1.14.9 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// NetworkPluginOperationsKey is the key for operation count metrics.
	NetworkPluginOperationsKey = "network_plugin_operations"
	// NetworkPluginOperationsLatencyKey is the key for the operation latency metrics.
	NetworkPluginOperationsLatencyKey = "network_plugin_operations_duration_seconds"
	// DeprecatedNetworkPluginOperationsLatencyKey is the deprecated key for the operation latency metrics.
	DeprecatedNetworkPluginOperationsLatencyKey = "network_plugin_operations_latency_microseconds"
)

Variables

View Source
var (
	// NetworkPluginOperationsLatency collects operation latency numbers by operation
	// type.
	NetworkPluginOperationsLatency = prometheus.NewHistogramVec(
		prometheus.HistogramOpts{
			Subsystem: kubeletSubsystem,
			Name:      NetworkPluginOperationsLatencyKey,
			Help:      "Latency in seconds of network plugin operations. Broken down by operation type.",
			Buckets:   prometheus.DefBuckets,
		},
		[]string{"operation_type"},
	)

	// DeprecatedNetworkPluginOperationsLatency collects operation latency numbers by operation
	// type.
	DeprecatedNetworkPluginOperationsLatency = prometheus.NewSummaryVec(
		prometheus.SummaryOpts{
			Subsystem: kubeletSubsystem,
			Name:      DeprecatedNetworkPluginOperationsLatencyKey,
			Help:      "(Deprecated) Latency in microseconds of network plugin operations. Broken down by operation type.",
		},
		[]string{"operation_type"},
	)
)

Functions

func Register

func Register()

Register all metrics.

func SinceInMicroseconds

func SinceInMicroseconds(start time.Time) float64

SinceInMicroseconds gets the time since the specified start in microseconds.

func SinceInSeconds added in v1.14.0

func SinceInSeconds(start time.Time) float64

SinceInSeconds gets the time since the specified start in seconds.

Types

This section is empty.

Jump to

Keyboard shortcuts

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