opentelemetry.sdk.metrics package
Submodules
- opentelemetry.sdk.metrics.export
AggregationTemporality
Buckets
ConsoleMetricExporter
InMemoryMetricReader
MetricExporter
MetricExportResult
MetricReader
PeriodicExportingMetricReader
ExponentialHistogram
ExponentialHistogramDataPoint
ExponentialHistogramDataPoint.attributes
ExponentialHistogramDataPoint.start_time_unix_nano
ExponentialHistogramDataPoint.time_unix_nano
ExponentialHistogramDataPoint.count
ExponentialHistogramDataPoint.sum
ExponentialHistogramDataPoint.scale
ExponentialHistogramDataPoint.zero_count
ExponentialHistogramDataPoint.positive
ExponentialHistogramDataPoint.negative
ExponentialHistogramDataPoint.flags
ExponentialHistogramDataPoint.min
ExponentialHistogramDataPoint.max
ExponentialHistogramDataPoint.exemplars
ExponentialHistogramDataPoint.to_json()
Gauge
Histogram
HistogramDataPoint
HistogramDataPoint.attributes
HistogramDataPoint.start_time_unix_nano
HistogramDataPoint.time_unix_nano
HistogramDataPoint.count
HistogramDataPoint.sum
HistogramDataPoint.bucket_counts
HistogramDataPoint.explicit_bounds
HistogramDataPoint.min
HistogramDataPoint.max
HistogramDataPoint.exemplars
HistogramDataPoint.to_json()
Metric
MetricsData
NumberDataPoint
ResourceMetrics
ScopeMetrics
Sum
- opentelemetry.sdk.metrics.view
- class opentelemetry.sdk.metrics.AlignedHistogramBucketExemplarReservoir(boundaries, **kwargs)[source]
Bases:
FixedSizeExemplarReservoirABC
This Exemplar reservoir takes a configuration parameter that is the configuration of a Histogram. This implementation keeps the last seen measurement that falls within a histogram bucket.
- class opentelemetry.sdk.metrics.AlwaysOnExemplarFilter[source]
Bases:
ExemplarFilter
An ExemplarFilter which makes all measurements eligible for being an Exemplar.
- should_sample(value, time_unix_nano, attributes, context)[source]
Returns whether or not a reservoir should attempt to filter a measurement.
- Parameters:
timestamp – A timestamp that best represents when the measurement was taken
attributes (
Optional
[Mapping
[str
,Union
[str
,bool
,int
,float
,Sequence
[str
],Sequence
[bool
],Sequence
[int
],Sequence
[float
]]]]) – The complete set of measurement attributescontext (
Context
) – The Context of the measurement
- Return type:
- class opentelemetry.sdk.metrics.AlwaysOffExemplarFilter[source]
Bases:
ExemplarFilter
An ExemplarFilter which makes no measurements eligible for being an Exemplar.
Using this ExemplarFilter is as good as disabling Exemplar feature.
- should_sample(value, time_unix_nano, attributes, context)[source]
Returns whether or not a reservoir should attempt to filter a measurement.
- Parameters:
timestamp – A timestamp that best represents when the measurement was taken
attributes (
Optional
[Mapping
[str
,Union
[str
,bool
,int
,float
,Sequence
[str
],Sequence
[bool
],Sequence
[int
],Sequence
[float
]]]]) – The complete set of measurement attributescontext (
Context
) – The Context of the measurement
- Return type:
- class opentelemetry.sdk.metrics.Exemplar(filtered_attributes, value, time_unix_nano, span_id=None, trace_id=None)[source]
Bases:
object
A representation of an exemplar, which is a sample input measurement.
Exemplars also hold information about the environment when the measurement was recorded, for example the span and trace ID of the active span when the exemplar was recorded.
- Attributes
trace_id: (optional) The trace associated with a recording span_id: (optional) The span associated with a recording time_unix_nano: The time of the observation value: The recorded value filtered_attributes: A set of filtered attributes which provide additional insight into the Context when the observation was made.
References
https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/data-model.md#exemplars https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk.md#exemplar
- class opentelemetry.sdk.metrics.ExemplarFilter[source]
Bases:
ABC
ExemplarFilter
determines which measurements are eligible for becoming anExemplar
.Exemplar filters are used to filter measurements before attempting to store them in a reservoir.
- abstract should_sample(value, time_unix_nano, attributes, context)[source]
Returns whether or not a reservoir should attempt to filter a measurement.
- Parameters:
timestamp – A timestamp that best represents when the measurement was taken
attributes (
Optional
[Mapping
[str
,Union
[str
,bool
,int
,float
,Sequence
[str
],Sequence
[bool
],Sequence
[int
],Sequence
[float
]]]]) – The complete set of measurement attributescontext (
Context
) – The Context of the measurement
- Return type:
- class opentelemetry.sdk.metrics.ExemplarReservoir[source]
Bases:
ABC
ExemplarReservoir provide a method to offer measurements to the reservoir and another to collect accumulated Exemplars.
Note
The constructor MUST accept
**kwargs
that may be set from aggregation parameters.- abstract offer(value, time_unix_nano, attributes, context)[source]
Offers a measurement to be sampled.
- Parameters:
- Return type:
- abstract collect(point_attributes)[source]
Returns accumulated Exemplars and also resets the reservoir for the next sampling period
- Parameters:
point_attributes (
Optional
[Mapping
[str
,Union
[str
,bool
,int
,float
,Sequence
[str
],Sequence
[bool
],Sequence
[int
],Sequence
[float
]]]]) – The attributes associated with metric point.- Return type:
- Returns:
a list of
opentelemetry.sdk.metrics._internal.exemplar.exemplar.Exemplar
s. Returned exemplars contain the attributes that were filtered out by the aggregator, but recorded alongside the original measurement.
- class opentelemetry.sdk.metrics.Meter(instrumentation_scope, measurement_consumer)[source]
Bases:
Meter
See opentelemetry.metrics.Meter.
- create_counter(name, unit='', description='')[source]
Creates a Counter instrument
- Parameters:
name – The name of the instrument to be created
unit – The unit for observations this instrument reports. For example,
By
for bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
- create_up_down_counter(name, unit='', description='')[source]
Creates an UpDownCounter instrument
- Parameters:
name – The name of the instrument to be created
unit – The unit for observations this instrument reports. For example,
By
for bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
- create_observable_counter(name, callbacks=None, unit='', description='')[source]
Creates an ObservableCounter instrument
An observable counter observes a monotonically increasing count by calling provided callbacks which accept a
CallbackOptions
and return multipleObservation
.For example, an observable counter could be used to report system CPU time periodically. Here is a basic implementation:
def cpu_time_callback(options: CallbackOptions) -> Iterable[Observation]: observations = [] with open("/proc/stat") as procstat: procstat.readline() # skip the first line for line in procstat: if not line.startswith("cpu"): break cpu, *states = line.split() observations.append(Observation(int(states[0]) // 100, {"cpu": cpu, "state": "user"})) observations.append(Observation(int(states[1]) // 100, {"cpu": cpu, "state": "nice"})) observations.append(Observation(int(states[2]) // 100, {"cpu": cpu, "state": "system"})) # ... other states return observations meter.create_observable_counter( "system.cpu.time", callbacks=[cpu_time_callback], unit="s", description="CPU time" )
To reduce memory usage, you can use generator callbacks instead of building the full list:
def cpu_time_callback(options: CallbackOptions) -> Iterable[Observation]: with open("/proc/stat") as procstat: procstat.readline() # skip the first line for line in procstat: if not line.startswith("cpu"): break cpu, *states = line.split() yield Observation(int(states[0]) // 100, {"cpu": cpu, "state": "user"}) yield Observation(int(states[1]) // 100, {"cpu": cpu, "state": "nice"}) # ... other states
Alternatively, you can pass a sequence of generators directly instead of a sequence of callbacks, which each should return iterables of
Observation
:def cpu_time_callback(states_to_include: set[str]) -> Iterable[Iterable[Observation]]: # accept options sent in from OpenTelemetry options = yield while True: observations = [] with open("/proc/stat") as procstat: procstat.readline() # skip the first line for line in procstat: if not line.startswith("cpu"): break cpu, *states = line.split() if "user" in states_to_include: observations.append(Observation(int(states[0]) // 100, {"cpu": cpu, "state": "user"})) if "nice" in states_to_include: observations.append(Observation(int(states[1]) // 100, {"cpu": cpu, "state": "nice"})) # ... other states # yield the observations and receive the options for next iteration options = yield observations meter.create_observable_counter( "system.cpu.time", callbacks=[cpu_time_callback({"user", "system"})], unit="s", description="CPU time" )
The
CallbackOptions
contain a timeout which the callback should respect. For example if the callback does asynchronous work, like making HTTP requests, it should respect the timeout:def scrape_http_callback(options: CallbackOptions) -> Iterable[Observation]: r = requests.get('http://scrapethis.com', timeout=options.timeout_millis / 10**3) for value in r.json(): yield Observation(value)
- Parameters:
name – The name of the instrument to be created
callbacks – A sequence of callbacks that return an iterable of
Observation
. Alternatively, can be a sequence of generators that each yields iterables ofObservation
.unit – The unit for observations this instrument reports. For example,
By
for bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
- create_histogram(name, unit='', description='', *, explicit_bucket_boundaries_advisory=None)[source]
Creates a
Histogram
instrument
- create_gauge(name, unit='', description='')[source]
Creates a
Gauge
instrument- Parameters:
name – The name of the instrument to be created
unit – The unit for observations this instrument reports. For example,
By
for bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
Gauge
- create_observable_gauge(name, callbacks=None, unit='', description='')[source]
Creates an ObservableGauge instrument
- Parameters:
name – The name of the instrument to be created
callbacks – A sequence of callbacks that return an iterable of
Observation
. Alternatively, can be a generator that yields iterables ofObservation
.unit – The unit for observations this instrument reports. For example,
By
for bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
- create_observable_up_down_counter(name, callbacks=None, unit='', description='')[source]
Creates an ObservableUpDownCounter instrument
- Parameters:
name – The name of the instrument to be created
callbacks – A sequence of callbacks that return an iterable of
Observation
. Alternatively, can be a generator that yields iterables ofObservation
.unit – The unit for observations this instrument reports. For example,
By
for bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
- class opentelemetry.sdk.metrics.MeterProvider(metric_readers=(), resource=None, exemplar_filter=None, shutdown_on_exit=True, views=())[source]
Bases:
MeterProvider
See opentelemetry.metrics.MeterProvider.
- Parameters:
metric_readers (
Sequence
[MetricReader
]) – Register metric readers to collect metrics from the SDK on demand. Eachopentelemetry.sdk.metrics.export.MetricReader
is completely independent and will collect separate streams of metrics. TODO: referencePeriodicExportingMetricReader
usage with push exporters here.resource (
Optional
[Resource
]) – The resource representing what the metrics emitted from the SDK pertain to.shutdown_on_exit (
bool
) – If true, registers an atexit handler to call MeterProvider.shutdownviews (
Sequence
[View
]) – The views to configure the metric output the SDK
By default, instruments which do not match any
opentelemetry.sdk.metrics.view.View
(or if noopentelemetry.sdk.metrics.view.View
s are provided) will report metrics with the default aggregation for the instrument’s kind. To disable instruments by default, configure a match-allopentelemetry.sdk.metrics.view.View
with DropAggregation and then createopentelemetry.sdk.metrics.view.View
s to re-enable individual instruments:Disable default viewsMeterProvider( views=[ View(instrument_name="*", aggregation=DropAggregation()), View(instrument_name="mycounter"), ], # ... )
- get_meter(name, version=None, schema_url=None, attributes=None)[source]
Returns a Meter for use by the given instrumentation library.
For any two calls it is undefined whether the same or different Meter instances are returned, even for different library names.
This function may return different Meter types (e.g. a no-op meter vs. a functional meter).
- Parameters:
name (
str
) –The name of the instrumenting module.
__name__
may not be used as this can result in different meter names if the meters are in different files. It is better to use a fixed string that can be imported where needed and used consistently as the name of the meter.This should not be the name of the module that is instrumented but the name of the module doing the instrumentation. E.g., instead of
"requests"
, use"opentelemetry.instrumentation.requests"
.version (
Optional
[str
]) – Optional. The version string of the instrumenting library. Usually this should be the same asimportlib.metadata.version(instrumenting_library_name)
.schema_url (
Optional
[str
]) – Optional. Specifies the Schema URL of the emitted telemetry.attributes (
Optional
[Mapping
[str
,Union
[str
,bool
,int
,float
,Sequence
[str
],Sequence
[bool
],Sequence
[int
],Sequence
[float
]]]]) – Optional. Attributes that are associated with the emitted telemetry.
- Return type:
- exception opentelemetry.sdk.metrics.MetricsTimeoutError[source]
Bases:
Exception
Raised when a metrics function times out
- class opentelemetry.sdk.metrics.Counter(name, instrumentation_scope, measurement_consumer, unit='', description='')[source]
Bases:
_Synchronous
,Counter
- class opentelemetry.sdk.metrics.Histogram(name, instrumentation_scope, measurement_consumer, unit='', description='', explicit_bucket_boundaries_advisory=None)[source]
Bases:
_Synchronous
,Histogram
- class opentelemetry.sdk.metrics.ObservableCounter(name, instrumentation_scope, measurement_consumer, callbacks=None, unit='', description='')[source]
Bases:
_Asynchronous
,ObservableCounter
- class opentelemetry.sdk.metrics.ObservableGauge(name, instrumentation_scope, measurement_consumer, callbacks=None, unit='', description='')[source]
Bases:
_Asynchronous
,ObservableGauge
- class opentelemetry.sdk.metrics.ObservableUpDownCounter(name, instrumentation_scope, measurement_consumer, callbacks=None, unit='', description='')[source]
Bases:
_Asynchronous
,ObservableUpDownCounter
- class opentelemetry.sdk.metrics.SimpleFixedSizeExemplarReservoir(size=1, **kwargs)[source]
Bases:
FixedSizeExemplarReservoirABC
This reservoir uses an uniformly-weighted sampling algorithm based on the number of samples the reservoir has seen so far to determine if the offered measurements should be sampled.
- class opentelemetry.sdk.metrics.UpDownCounter(name, instrumentation_scope, measurement_consumer, unit='', description='')[source]
Bases:
_Synchronous
,UpDownCounter
- class opentelemetry.sdk.metrics.TraceBasedExemplarFilter[source]
Bases:
ExemplarFilter
An ExemplarFilter which makes those measurements eligible for being an Exemplar, which are recorded in the context of a sampled parent span.
- should_sample(value, time_unix_nano, attributes, context)[source]
Returns whether or not a reservoir should attempt to filter a measurement.
- Parameters:
timestamp – A timestamp that best represents when the measurement was taken
attributes (
Optional
[Mapping
[str
,Union
[str
,bool
,int
,float
,Sequence
[str
],Sequence
[bool
],Sequence
[int
],Sequence
[float
]]]]) – The complete set of measurement attributescontext (
Context
) – The Context of the measurement
- Return type: