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

no-std wasm-tracing

Tracing subscriber for WebAssembly. Maintained fork of tracing-wasm.

3 unstable releases

0.2.1 Sep 4, 2024
0.2.0 Sep 4, 2024
0.1.0 Sep 4, 2024

#258 in WebAssembly

Download history 303/week @ 2024-09-03 26/week @ 2024-09-10 22/week @ 2024-09-17 18/week @ 2024-09-24 34/week @ 2024-10-01 3/week @ 2024-10-08 82/week @ 2024-10-15 436/week @ 2024-10-22 12/week @ 2024-10-29 1327/week @ 2024-11-05 366/week @ 2024-11-12

2,142 downloads per month

MIT/Apache

23KB
433 lines

wasm-tracing

A maintained fork of tracing-wasm that is compatible with the latest tracing and wasm-bindgen versions.

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

Crates.io Documentation MIT licensed APACHE licensed

Note: wasm_tracing 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 wasm_tracing 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:
    wasm_tracing::set_as_global_default();

    Ok(())
}

Dependencies

~2–3MB
~56K SLoC