moduvex-observe 1.0.0

Observability for Moduvex — structured logging, tracing, metrics, health checks
Documentation
  • Coverage
  • 70.79%
    126 out of 178 items documented0 out of 108 items with examples
  • Size
  • Source code size: 100.86 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 6.51 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 21s Average build duration of successful builds.
  • all releases: 21s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Moduvex/moduvex
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tranhoangtu-it

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 moduvex_observe::prelude::*;

// Install the default subscriber (reads MODUVEX_LOG / MODUVEX_LOG_FORMAT).
moduvex_observe::init_logging();

// Structured logging
info!("request handled", status = 200, path = "/users");

// Metrics
let counter = Counter::new("http_requests_total", "Total HTTP requests");
counter.inc();