Semantic conventions for CPython runtime metrics

Status: Development

This document describes semantic conventions for CPython Runtime metrics in OpenTelemetry.

CPython Garbage Collection

Status: development

Description: CPython metrics related to garbage collection, captured under the namespace cpython.gc.*.

Metric: cpython.gc.collections

This metric is recommended.

NameInstrument TypeUnit (UCUM)DescriptionStability
cpython.gc.collectionsCounter{collection}The number of times a generation was collected since interpreter start. [1]Development

[1]: This metric reports data from gc.stats().

AttributeTypeDescriptionExamplesRequirement LevelStability
cpython.gc.generationintValue of the garbage collector collection generation.0; 1; 2RequiredDevelopment

cpython.gc.generation has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

ValueDescriptionStability
0Generation 0Development
1Generation 1Development
2Generation 2Development

Metric: cpython.gc.collected_objects

This metric is recommended.

NameInstrument TypeUnit (UCUM)DescriptionStability
cpython.gc.collected_objectsCounter{object}The total number of objects collected inside a generation since interpreter start. [1]Development

[1]: This metric reports data from gc.stats().

AttributeTypeDescriptionExamplesRequirement LevelStability
cpython.gc.generationintValue of the garbage collector collection generation.0; 1; 2RequiredDevelopment

cpython.gc.generation has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

ValueDescriptionStability
0Generation 0Development
1Generation 1Development
2Generation 2Development

Metric: cpython.gc.uncollectable_objects

This metric is recommended.

NameInstrument TypeUnit (UCUM)DescriptionStability
cpython.gc.uncollectable_objectsCounter{object}The total number of objects which were found to be uncollectable inside a generation since interpreter start. [1]Development

[1]: This metric reports data from gc.stats().

AttributeTypeDescriptionExamplesRequirement LevelStability
cpython.gc.generationintValue of the garbage collector collection generation.0; 1; 2RequiredDevelopment

cpython.gc.generation has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

ValueDescriptionStability
0Generation 0Development
1Generation 1Development
2Generation 2Development