6 releases

0.3.3 Feb 20, 2024
0.3.2 Feb 9, 2024
0.3.1 Oct 17, 2023
0.3.0 Jun 5, 2023
0.1.0 Nov 4, 2022

#36 in Visualization

Download history 141/week @ 2023-12-23 79/week @ 2023-12-30 57/week @ 2024-01-06 125/week @ 2024-01-13 62/week @ 2024-01-20 69/week @ 2024-01-27 130/week @ 2024-02-03 292/week @ 2024-02-10 651/week @ 2024-02-17 723/week @ 2024-02-24 955/week @ 2024-03-02 887/week @ 2024-03-09 830/week @ 2024-03-16 1093/week @ 2024-03-23 1028/week @ 2024-03-30 550/week @ 2024-04-06

3,646 downloads per month
Used in 15 crates (11 directly)

MIT/Apache

120KB
2.5K SLoC

Allocative

Crate implements lightweight memory profiler which allows object traversal and size introspection.

An object implementing Allocative trait is introspectable, and this crate provides two utilities to work with such objects:

Allocative overhead

When allocative is used, binary size is slightly increased due to implementations of Allocative trait, but it has no runtime/memory overhead when it is not used.

How it is different from other call-stack malloc profilers like jemalloc heap profiler

Allocative is not a substitute for call stack malloc profiler, it provides a different view on memory usage.

Here are some differences between allocative and call-stack malloc profiler:

  • Allocative requires implementation of Allocative trait for each type which needs to be measured, and some setup in the program to enable it
  • Allocative flamegraph shows object by object tree, not by call stack
  • Allocative shows gaps in allocated memory, e.g. spare capacity of collections or too large padding in structs or enums
  • Allocative allows profiling non-malloc allocations (for example, allocations within bumpalo)
  • Allocative allows profiling of memory for subset of the process data (for example, measure the size of RPC response before serialization)

Dependencies

~0.3–9.5MB
~63K SLoC