opentelemetry-resourcedetector-process

An OpenTelemetry package to populates Resource attributes from the running process


Keywords
observability, opentelemetry, psutil
License
MIT
Install
pip install opentelemetry-resourcedetector-process==0.1.1

Documentation

opentelemetry-resourcedetector-process

An OpenTelemetry package to populates Resource attributes from the running process.

Usage

from opentelemetry.sdk.resources import get_aggregated_resources
from opentelemetry_resourcedetector_process import ProcessResourceDetector

...

resource = get_aggregated_resources([
    ProcessResourceDetector(),
    SomeOtherResourceDetector()
])

... pass the returned `resource` to a TracerProvder, for example ...