13 releases

0.4.8 Nov 7, 2022
0.4.7 Apr 27, 2021
0.4.6 Dec 12, 2020
0.4.5 Aug 18, 2020
0.4.2 Dec 22, 2019

#52 in Unix APIs

Download history 13236/week @ 2023-12-13 11486/week @ 2023-12-20 7991/week @ 2023-12-27 12871/week @ 2024-01-03 13569/week @ 2024-01-10 14119/week @ 2024-01-17 14048/week @ 2024-01-24 17213/week @ 2024-01-31 17903/week @ 2024-02-07 18314/week @ 2024-02-14 18176/week @ 2024-02-21 17779/week @ 2024-02-28 18174/week @ 2024-03-06 18678/week @ 2024-03-13 18092/week @ 2024-03-20 14052/week @ 2024-03-27

71,941 downloads per month
Used in 55 crates (5 directly)

MIT/Apache

67KB
584 lines

perf-event: a Rust interface to Linux performance monitoring

This uses the Linux perf_event_open API to access performance monitoring hardware and software. Use Builder to create a perf event counter, then use enable and disable to start and stop counting. Call read to get your count.

For example, this counts the number of cycles used by the call to println!. Try adjusting the length of the vector to see the cycle count change.

use perf_event::Builder;

fn main() -> std::io::Result<()> {
    let mut counter = Builder::new().build()?;

    let vec = (0..=51).collect::<Vec<_>>();

    counter.enable()?;
    println!("{:?}", vec);
    counter.disable()?;

    println!("{} instructions retired", counter.read()?);

    Ok(())
}

Since we don't specify what sort of event we want to count, Builder defaults to PERF_COUNT_HW_INSTRUCTIONS events, whose documentation says:

Retired instructions. Be careful, these can be affected by various issues, most notably hardware interrupt counts.

The examples directory includes programs that count other sorts of events.

See also

The perfcnt crate provides more extensive coverage of the Linux perf_event_open API than this crate.

Markus Stange's linux-perf-event-reader supports events. This crate only handles counters for now.

The not-perf project is a rewrite of perf in Rust, and has a bunch of code for dealing with the Linux perf API.

Dependencies

~290KB