[][src]Module opentelemetry::sdk::metrics

OpenTelemetry Metrics SDK

The metrics SDK supports producing diagnostic measurements using three basic kinds of Instruments. "Metrics" are the thing being produced--mathematical, statistical summaries of certain observable behavior in the program. Instruments are the devices used by the program to record observations about their behavior. Therefore, we use "metric instrument" to refer to a program object, allocated through the Meter struct, used for recording metrics. There are three distinct instruments in the Metrics API, commonly known as Counters, Gauges, and Measures.

Structs

Meter

Meter implementation to create manage metric instruments and record batch measurements

Type Definitions

LabelSet

Collection of label key and value types.