#alloc #instrument #stats

dev stats_alloc

An allocator wrapper that allows for instrumenting global allocators

11 releases

Uses old Rust 2015

0.1.10 Mar 30, 2022
0.1.9 Mar 30, 2022
0.1.8 May 13, 2019
0.1.6 Aug 3, 2018

#40 in Memory management

Download history 7618/week @ 2023-10-27 9524/week @ 2023-11-03 28473/week @ 2023-11-10 26832/week @ 2023-11-17 21454/week @ 2023-11-24 59573/week @ 2023-12-01 38083/week @ 2023-12-08 39346/week @ 2023-12-15 10619/week @ 2023-12-22 26128/week @ 2023-12-29 41090/week @ 2024-01-05 42943/week @ 2024-01-12 47149/week @ 2024-01-19 34825/week @ 2024-01-26 42913/week @ 2024-02-02 35293/week @ 2024-02-09

169,016 downloads per month
Used in 17 crates (16 directly)

MIT license

13KB
188 lines

stats_alloc

An instrumenting middleware for global allocators in Rust, useful in testing for validating assumptions regarding allocation patterns, and potentially in production loads to monitor for memory leaks.

Example

extern crate stats_alloc;

use stats_alloc::{StatsAlloc, Region, INSTRUMENTED_SYSTEM};
use std::alloc::System;

#[global_allocator]
static GLOBAL: &StatsAlloc<System> = &INSTRUMENTED_SYSTEM;

fn example_using_region() {
    let reg = Region::new(&GLOBAL);
    let x: Vec<u8> = Vec::with_capacity(1_024);
    println!("Stats at 1: {:#?}", reg.change());
    // Used here to ensure that the value is not
    // dropped before we check the statistics
    ::std::mem::size_of_val(&x);
}

Custom allocators

Currenty wrapping a custom allocator requires the use of the nightly compiler and compiling with the "nightly" feature due to the soon to stabilize use of the unstable const_fn_trait_bound and the fact that the internals of the instrumenting type are not public. If that's fine with you, a custom allocator can be wrapped as follows:

#[global_allocator]
static GLOBAL: StatsAlloc<System> = StatsAlloc::new(MyCustomAllocator::new());

No runtime deps

Features