#tracing #logging #wasm-module

no-std tracing-tunnel

Tunnelling tracing information across API boundary

2 unstable releases

0.2.0-beta.1 Mar 3, 2024
0.1.0 Dec 9, 2022

#103 in Debugging

Download history 41/week @ 2023-12-23 138/week @ 2023-12-30 210/week @ 2024-01-06 446/week @ 2024-01-13 201/week @ 2024-01-20 97/week @ 2024-01-27 130/week @ 2024-02-03 194/week @ 2024-02-10 125/week @ 2024-02-17 170/week @ 2024-02-24 632/week @ 2024-03-02 248/week @ 2024-03-09 1797/week @ 2024-03-16 2290/week @ 2024-03-23 2420/week @ 2024-03-30 2404/week @ 2024-04-06

8,983 downloads per month
Used in 2 crates (via tracing-capture)

MIT/Apache

79KB
1.5K SLoC

Tunnelling Tracing Information Across API Boundary

Build Status License: MIT OR Apache-2.0 rust 1.70+ required no_std tested

Documentation: Docs.rs crate docs (main)

This crate provides tracing infrastructure helpers allowing to transfer tracing events across an API boundary:

  • TracingEventSender is a tracing Subscriber that converts tracing events into (de)serializable presentation that can be sent elsewhere using a customizable hook.
  • TracingEventReceiver consumes events produced by a TracingEventSender and relays them to the tracing infrastructure. It is assumed that the source of events may outlive both the lifetime of a particular TracingEventReceiver instance, and the lifetime of the program encapsulating the receiver. To deal with this, the receiver provides the means to persist / restore its state.

This solves the problem of having dynamic call sites for tracing spans / events, i.e., ones not known during compilation. This may occur if call sites are defined in dynamically loaded modules the execution of which is embedded into the program, such as WASM modules.

See the crate docs for the details about the crate design and potential use cases.

Usage

Add this to your Crate.toml:

[dependencies]
tracing-tunnel = "0.2.0-beta.1"

Note that the both pieces of functionality described above are gated behind opt-in features; consult the crate docs for details.

Sending tracing events

use std::sync::mpsc;
use tracing_tunnel::{TracingEvent, TracingEventSender, TracingEventReceiver};

// Let's collect tracing events using an MPSC channel.
let (events_sx, events_rx) = mpsc::sync_channel(10);
let subscriber = TracingEventSender::new(move |event| {
    events_sx.send(event).ok();
});

tracing::subscriber::with_default(subscriber, || {
    tracing::info_span!("test", num = 42_i64).in_scope(|| {
        tracing::warn!("I feel disturbance in the Force...");
    });
});

let events: Vec<TracingEvent> = events_rx.iter().collect();
println!("{events:?}");
// Do something with events...

Receiving tracing events

use std::sync::mpsc;
use tracing_tunnel::{
    LocalSpans, PersistedMetadata, PersistedSpans, TracingEvent, TracingEventReceiver,
};

tracing_subscriber::fmt().pretty().init();

fn replay_events(events: &[TracingEvent]) {
    let mut spans = PersistedSpans::default();
    let mut local_spans = LocalSpans::default();
    let mut receiver = TracingEventReceiver::default();
    for event in events {
        if let Err(err) = receiver.try_receive(event.clone()) {
            tracing::warn!(%err, "received invalid tracing event");
        }
    }

    // Persist the resulting receiver state. There are two pieces
    // of the state: metadata and alive spans. The spans are further split
    // into the persisted and local parts.
    let metadata = receiver.persist_metadata();
    let (spans, local_spans) = receiver.persist();
    // Store `metadata` and `spans`, e.g., in a DB, and `local_spans`
    // in a local data struct such as `HashMap` keyed by the executable ID.
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in tracing-toolbox by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.6–1.2MB
~27K SLoC