moduvex-observe
Observability for the Moduvex framework: structured logging, distributed
tracing, metrics collection, and health checks — all built on
moduvex-runtime with zero external async runtime dependencies.
Quick Start
use *;
// Install the default subscriber (reads MODUVEX_LOG / MODUVEX_LOG_FORMAT).
init_logging;
// Structured logging
info!;
// Metrics
let counter = new;
counter.inc;