4 releases (1 stable)

1.0.0 Dec 25, 2020
0.2.1 Nov 24, 2020
0.2.0 Aug 25, 2020
0.1.0 Jul 19, 2020

#393 in Operating systems

Download history 147/week @ 2023-11-20 22/week @ 2023-11-27 90/week @ 2023-12-04 41/week @ 2023-12-11 35/week @ 2023-12-18 20/week @ 2023-12-25 37/week @ 2024-01-01 68/week @ 2024-01-08 54/week @ 2024-01-15 34/week @ 2024-01-22 11/week @ 2024-01-29 87/week @ 2024-02-05 209/week @ 2024-02-12 445/week @ 2024-02-19 1155/week @ 2024-02-26 1920/week @ 2024-03-04

3,753 downloads per month
Used in rusty-sidekiq

MIT license

14KB
226 lines

simple-process-stats

A small library to get memory usage and elapsed CPU time.

  • Supports Windows, Linux and macOS.
  • Async interface, uses tokio::fs for file operations
use simple_process_stats::ProcessStats;

let process_stats = ProcessStats::get().await.expect("could not get stats for running process");
println!("{:?}", process_stats);
// ProcessStats {
//     cpu_time_user: 421.875ms,
//     cpu_time_kernel: 102.332ms,
//     memory_usage_bytes: 3420160,
// }

On Linux, this library reads /proc/self/stat and uses the sysconf libc function.

On Windows, the library uses GetCurrentProcess combined with GetProcessTimes and K32GetProcessMemoryInfo.

On macOS, this library uses proc_pidinfo from libproc (and current process ID is determined via libc).


lib.rs:

A small library to get memory usage and elapsed CPU time.

  • Supports Windows, Linux and macOS.
  • Async interface, uses tokio::fs for file operations
use simple_process_stats::ProcessStats;

let process_stats = ProcessStats::get().await.expect("could not get stats for running process");
println!("{:?}", process_stats);
// ProcessStats {
//     cpu_time_user: 421.875ms,
//     cpu_time_kernel: 102.332ms,
//     memory_usage_bytes: 3420160,
// }

On Linux, this library reads /proc/self/stat and uses the sysconf libc function.

On Windows, the library uses GetCurrentProcess combined with GetProcessTimes and K32GetProcessMemoryInfo.

On macOS, this library uses proc_pidinfo from libproc (and current process ID is determined via libc).

Dependencies

~0.4–2.5MB
~45K SLoC