opentelemetry.sdk.metrics package
Submodules
- opentelemetry.sdk.metrics.export
AggregationTemporalityBucketsConsoleMetricExporterInMemoryMetricReaderMetricExporterMetricExportResultMetricReaderPeriodicExportingMetricReaderExponentialHistogramExponentialHistogramDataPointExponentialHistogramDataPoint.to_json()ExponentialHistogramDataPoint.attributesExponentialHistogramDataPoint.start_time_unix_nanoExponentialHistogramDataPoint.time_unix_nanoExponentialHistogramDataPoint.countExponentialHistogramDataPoint.sumExponentialHistogramDataPoint.scaleExponentialHistogramDataPoint.zero_countExponentialHistogramDataPoint.positiveExponentialHistogramDataPoint.negativeExponentialHistogramDataPoint.flagsExponentialHistogramDataPoint.minExponentialHistogramDataPoint.maxExponentialHistogramDataPoint.exemplars
GaugeHistogramHistogramDataPointHistogramDataPoint.to_json()HistogramDataPoint.attributesHistogramDataPoint.start_time_unix_nanoHistogramDataPoint.time_unix_nanoHistogramDataPoint.countHistogramDataPoint.sumHistogramDataPoint.bucket_countsHistogramDataPoint.explicit_boundsHistogramDataPoint.minHistogramDataPoint.maxHistogramDataPoint.exemplars
MetricMetricsDataNumberDataPointResourceMetricsScopeMetricsSum
- opentelemetry.sdk.metrics.view
- class opentelemetry.sdk.metrics.AlignedHistogramBucketExemplarReservoir(boundaries, **kwargs)[source]
Bases:
FixedSizeExemplarReservoirABCThis 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:
ExemplarFilterAn 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:
ExemplarFilterAn 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:
objectA 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.
- Variables:
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:
ABCExemplarFilterdetermines which measurements are eligible for becoming anExemplar.Exemplar filters are used to filter measurements before attempting to store them in a reservoir.
- abstractmethod 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:
ABCExemplarReservoir provide a method to offer measurements to the reservoir and another to collect accumulated Exemplars.
Note
The constructor MUST accept
**kwargsthat may be set from aggregation parameters.- abstractmethod 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.Exemplars. 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, *, _meter_config=None)[source]
Bases:
MeterSee
opentelemetry.metrics.Meter.- create_counter(name, unit='', description='')[source]
Creates a
Counterinstrument- Parameters:
name – The name of the instrument to be created
unit – The unit for observations this instrument reports. For example,
Byfor bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
- create_gauge(name, unit='', description='')[source]
Creates a
Gaugeinstrument- Parameters:
name – The name of the instrument to be created
unit – The unit for observations this instrument reports. For example,
Byfor bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
Gauge
- create_histogram(name, unit='', description='', *, explicit_bucket_boundaries_advisory=None)[source]
Creates a
Histograminstrument
- create_observable_counter(name, callbacks=None, unit='', description='')[source]
Creates an
ObservableCounterinstrumentAn observable counter observes a monotonically increasing count by calling provided callbacks which accept a
CallbackOptionsand 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
CallbackOptionscontain 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,
Byfor bytes. UCUM units are recommended.description – A description for this instrument and what it measures.
- Return type:
- create_observable_gauge(name, callbacks=None, unit='', description='')[source]
Creates an
ObservableGaugeinstrument- 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,
Byfor 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
ObservableUpDownCounterinstrument- 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,
Byfor 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
UpDownCounterinstrument- Parameters:
name – The name of the instrument to be created
unit – The unit for observations this instrument reports. For example,
Byfor 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=(), *, _meter_configurator=None)[source]
Bases:
MeterProviderSee
opentelemetry.metrics.MeterProvider.- Parameters:
metric_readers (
Sequence[MetricReader]) – Register metric readers to collect metrics from the SDK on demand. Eachopentelemetry.sdk.metrics.export.MetricReaderis completely independent and will collect separate streams of metrics. For push-based export, useopentelemetry.sdk.metrics.export.PeriodicExportingMetricReader.resource (
Optional[Resource]) – The resource representing what the metrics emitted from the SDK pertain to.shutdown_on_exit (
bool) – If true, registers anatexithandler to callMeterProvider.shutdownviews (
Sequence[View]) – The views to configure the metric output the SDK
Push-based export with PeriodicExportingMetricReaderfrom opentelemetry.sdk.metrics import MeterProvider from opentelemetry.sdk.metrics.export import ( ConsoleMetricExporter, PeriodicExportingMetricReader, ) reader = PeriodicExportingMetricReader(ConsoleMetricExporter()) provider = MeterProvider(metric_readers=[reader])
By default, instruments which do not match any
opentelemetry.sdk.metrics.view.View(or if noopentelemetry.sdk.metrics.view.Views 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.ViewwithDropAggregationand then createopentelemetry.sdk.metrics.view.Views 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
Meterfor use by the given instrumentation library.For any two calls it is undefined whether the same or different
Meterinstances are returned, even for different library names.This function may return different
Metertypes (e.g. a no-op meter vs. a functional meter).- Parameters:
name (
str) –The name of the instrumenting module.
__name__should be avoided 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:
ExceptionRaised when a metrics function times out
- class opentelemetry.sdk.metrics.Counter(name, instrumentation_scope, measurement_consumer, unit='', description='', *, _meter_config=None)[source]
Bases:
_Synchronous,Counter- add(amount, attributes=None, context=None)[source]
Records an increment to the counter.
- Parameters:
amount (
Union[int,float]) – The amount to increment the counter by. Must be non-negative.attributes (
dict[str,str] |None) – Optional set of attributes to associate with the measurement.context (
Context|None) – Optional context to associate with the measurement. If not provided, the current context is used.
- class opentelemetry.sdk.metrics.Histogram(name, instrumentation_scope, measurement_consumer, unit='', description='', explicit_bucket_boundaries_advisory=None, *, _meter_config=None)[source]
Bases:
_Synchronous,Histogram- record(amount, attributes=None, context=None)[source]
Records a measurement.
Used to report measurements that are likely to be statistically meaningful, such as request durations, payload sizes, or any value for which a distribution (e.g. percentiles) is useful.
- Parameters:
amount (
Union[int,float]) – The measurement to record. Should be non-negative in most cases; negative values are only meaningful when the histogram is used to track signed deltas.attributes (
dict[str,str] |None) – Optional set of attributes to associate with the measurement.context (
Context|None) – Optional context to associate with the measurement. If not provided, the current context is used.
- class opentelemetry.sdk.metrics.ObservableCounter(name, instrumentation_scope, measurement_consumer, callbacks=None, unit='', description='', *, _meter_config=None)[source]
Bases:
_Asynchronous,ObservableCounter
- class opentelemetry.sdk.metrics.ObservableGauge(name, instrumentation_scope, measurement_consumer, callbacks=None, unit='', description='', *, _meter_config=None)[source]
Bases:
_Asynchronous,ObservableGauge
- class opentelemetry.sdk.metrics.ObservableUpDownCounter(name, instrumentation_scope, measurement_consumer, callbacks=None, unit='', description='', *, _meter_config=None)[source]
Bases:
_Asynchronous,ObservableUpDownCounter
- class opentelemetry.sdk.metrics.SimpleFixedSizeExemplarReservoir(size=1, **kwargs)[source]
Bases:
FixedSizeExemplarReservoirABCThis 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='', *, _meter_config=None)[source]
Bases:
_Synchronous,UpDownCounter- add(amount, attributes=None, context=None)[source]
Records an increment or decrement to the counter.
Unlike
Counter, theamountmay be negative, allowing the instrument to track values that go up and down (e.g. number of active requests, queue depth).- Parameters:
amount (
Union[int,float]) – The amount to add to the counter. May be positive or negative.attributes (
dict[str,str] |None) – Optional set of attributes to associate with the measurement.context (
Context|None) – Optional context to associate with the measurement. If not provided, the current context is used.
- class opentelemetry.sdk.metrics.TraceBasedExemplarFilter[source]
Bases:
ExemplarFilterAn 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: