syswatch 0.6.1

Single-host, read-only system diagnostics TUI. Twelve tabs covering CPU, memory, disks, processes, GPU, power, services, network, plus a Timeline scrubber and an Insights anomaly engine. Sibling to netwatch.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod collector;
pub mod gpu;
#[cfg(target_os = "macos")]
pub mod macos_sampler;
pub mod model;
pub mod power;
pub mod proc_bandwidth;
pub mod proc_gpu;
pub mod ring;
pub mod services;

pub use collector::Collector;
pub use model::*;
pub use ring::Ring;