Learning Roadmap¶
- Install —
pip install pico-otel[all](Getting Started). - See spans locally — default console exporter; hit an endpoint, read the span dump.
- Name your service —
otel.service_name; find it in the span resource. - Ship to a collector — set
otel.endpoint;autoswitches to OTLP. - Metrics with actuator — install pico-actuator; curl
/actuator/metrics(Architecture for the contract). - Trim — drop extras you do not use; lower
traces_sample_ratiounder load.