#metrics #run-time #tokio #memory #register #meter #open-telemetry

runtime-otel-metrics

Meter your tokio runtime and process memory with OpenTelemetry

1 unstable release

0.1.0 Apr 20, 2024

#320 in Debugging

Download history 137/week @ 2024-04-15 25/week @ 2024-04-22

162 downloads per month

MIT/Apache

11KB
178 lines

runtime-otel-metrics

runtime-otel-metrics is an experimental crate that enables you to meter your tokio runtime and memory usage with OpenTelemetry. For tokio metrics it leans on tokio's unstable runtime metrics. For memory usage we use the memory-stats crate.

Usage

To use the tokio feature, you must compile with the rustc flag --cfg tokio_unstable.

// Register Tokio metrics with OpenTelemetry
runtime_otel_metrics::tokio_rt::register_tokio_metrics(
    tokio::runtime::Handle::current(),
    &opentelemetry::global::meter("tokio"),
)?;

// Register memory metrics
runtime_otel_metrics::memory::register(&opentelemetry::global::meter("memory"))?;

Similar crates

Dependencies

~2.7–4.5MB
~73K SLoC