syswatch 0.1.0

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
pub mod collector;
pub mod gpu;
pub mod model;
pub mod power;
pub mod ring;
pub mod services;

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