23 releases (15 breaking)

0.16.0 Jan 17, 2024
0.15.0 Nov 21, 2023
0.14.0 Sep 28, 2023
0.13.0 May 24, 2023
0.3.0 Jul 5, 2021

#58 in Profiling

Download history 4351/week @ 2024-01-29 5353/week @ 2024-02-05 5940/week @ 2024-02-12 5803/week @ 2024-02-19 6737/week @ 2024-02-26 6534/week @ 2024-03-04 8090/week @ 2024-03-11 8874/week @ 2024-03-18 9105/week @ 2024-03-25 6910/week @ 2024-04-01 7967/week @ 2024-04-08 9623/week @ 2024-04-15 11069/week @ 2024-04-22 8674/week @ 2024-04-29 7207/week @ 2024-05-06 12190/week @ 2024-05-13

40,414 downloads per month
Used in 46 crates (6 directly)

MIT/Apache

125KB
2.5K SLoC

puffin_http

Embark Embark Crates.io Docs

A HTTP server/client for communicating puffin profiling events.

You can view them using puffin_viewer.

How to use

Add a puffin_http Server to the profiled application When the server is started, puffin_viewer application can connect to it and display profiling information.

fn main() {
    let server_addr = format!("0.0.0.0:{}", puffin_http::DEFAULT_PORT);
    let _puffin_server = puffin_http::Server::new(&server_addr).unwrap();
    eprintln!("Serving demo profile data on {server_addr}. Run `puffin_viewer` to view it.");
    puffin::set_scopes_on(true);

    //
}

You can checkout the examples/server.rs for a more complete example.

Dependencies

~1.8–8MB
~55K SLoC