24 releases (15 breaking)

0.16.1 Jul 31, 2024
0.16.0 Jan 17, 2024
0.15.0 Nov 21, 2023
0.13.0 May 24, 2023
0.3.0 Jul 5, 2021

#93 in Profiling

Download history 15156/week @ 2024-11-18 15221/week @ 2024-11-25 21006/week @ 2024-12-02 26590/week @ 2024-12-09 24869/week @ 2024-12-16 8793/week @ 2024-12-23 10675/week @ 2024-12-30 19155/week @ 2025-01-06 18426/week @ 2025-01-13 18193/week @ 2025-01-20 20033/week @ 2025-01-27 22737/week @ 2025-02-03 21249/week @ 2025-02-10 20661/week @ 2025-02-17 21118/week @ 2025-02-24 25372/week @ 2025-03-03

90,699 downloads per month
Used in 30 crates (13 directly)

MIT/Apache

150KB
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

~2–7.5MB
~60K SLoC