metrics

package
v1.41.1 Latest Latest
Warning

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

Go to latest
Published: May 1, 2024 License: GPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// EvaluationsTotal is the total number of evaluation requests
	EvaluationsTotal = metrics.MustInt64().
						Counter(
			prometheus.BuildFQName(namespace, evaluationsSubsystem, "requests"),
			metric.WithDescription("The total number of requested evaluations"),
		)

	// EvaluationErrorsTotal is the total number of evaluation errors
	EvaluationErrorsTotal = metrics.MustInt64().
							Counter(
			prometheus.BuildFQName(namespace, evaluationsSubsystem, "errors"),
			metric.WithDescription("The total number of requested evaluations"),
		)

	// EvaluationResultsTotal is the total number of evaluation results
	EvaluationResultsTotal = metrics.MustInt64().
							Counter(
			prometheus.BuildFQName(namespace, evaluationsSubsystem, "results"),
			metric.WithDescription("Count of results including match, flag, segment, reason and value attributes"),
		)

	// EvaluationLatency is the latency of individual evaluations
	EvaluationLatency = metrics.MustFloat64().Histogram(
		prometheus.BuildFQName(namespace, evaluationsSubsystem, "latency"),
		metric.WithDescription("The latency of inidividual evaluations in milliseconds"),
		metric.WithUnit("ms"),
	)

	// Attributes used in evaluation metrics
	//nolint
	AttributeMatch     = attribute.Key("match")
	AttributeFlag      = attribute.Key("flag")
	AttributeSegment   = attribute.Key("segment")
	AttributeReason    = attribute.Key("reason")
	AttributeValue     = attribute.Key("value")
	AttributeNamespace = attribute.Key("namespace")
	AttributeType      = attribute.Key("type")
)

Evaluation specific metrics

View Source
var (
	// ErrorsTotal is the total number of errors in the server
	ErrorsTotal = metrics.MustInt64().
		Counter(
			prometheus.BuildFQName(namespace, serverSubsystem, "errors"),
			metric.WithDescription("The total number of server errors"),
		)
)

Prometheus metrics used throughout the server package

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

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