bottom 0.12.3

A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! How we manage data internally.

mod time_series;
pub use time_series::{TimeSeriesData, Values};

mod process;
pub use process::ProcessData;

mod store;
pub use store::*;

mod temperature;
pub use temperature::*;