aprender-cbtop 0.63.0

Compute Block Top - Real-time load testing and hardware monitoring TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Analyzer bricks (Layer 2)
//!
//! Business logic and derived metrics.

mod bottleneck;
mod efficiency;
mod thermal;
mod throughput;

pub use bottleneck::BottleneckAnalyzerBrick;
pub use efficiency::EfficiencyAnalyzerBrick;
pub use thermal::ThermalAnalyzerBrick;
pub use throughput::ThroughputAnalyzerBrick;