#tracing #tracing-subscriber #logging #metrics #spans

no-std veilid-tracing-wasm

Fork of tracing-wasm modified to the needs of the Veilid project. Tracing subscriber for browser WASM

1 unstable release

0.1.0 Feb 28, 2025

#858 in Debugging

Download history 187/week @ 2025-02-28

187 downloads per month

MIT/Apache

20KB
355 lines

tracing-wasm

Leverage performance profiling with your browser tools with the tracing crate.

Crates.io Documentation MIT licensed APACHE licensed

Screenshot of performance reported using the tracing-wasm Subscriber

Note: tracing_wasm uses the global JavaScript console and performance objects. It will not work in environments where one or both of these are not available, such as Node.js or Cloudflare Workers.

Usage

For the simplest out of the box set-up, you can simply set tracing_wasm as your default tracing Subscriber in wasm_bindgen(start)

We have this declared in our ./src/lib.rs

#[wasm_bindgen(start)]
pub fn start() -> Result<(), JsValue> {
    // print pretty errors in wasm https://github.com/rustwasm/console_error_panic_hook
    // This is not needed for tracing_wasm to work, but it is a common tool for getting proper error line numbers for panics.
    console_error_panic_hook::set_once();

    // Add this line:
    tracing_wasm::set_as_global_default();

    Ok(())
}

Dependencies

~2–3MB
~54K SLoC