macmon 0.7.0

Apple Silicon system monitor & Rust library — CPU/GPU power, temperature, RAM. No sudo. TUI, JSON pipe, Prometheus exporter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! macmon - Sudoless performance monitoring library for Apple Silicon processors
//!
//! This library provides access to hardware metrics from Apple Silicon processors,
//! including CPU/GPU frequencies, power consumption, temperatures, and memory usage.

pub mod app;
pub mod config;
pub mod debug;
pub mod metrics;
pub mod sources;

// Re-export commonly used types
pub use app::App;
pub use config::{Config, ViewType};
pub use metrics::{MemMetrics, Metrics, Sampler, TempMetrics, zero_div};
pub use sources::SocInfo;