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
14
15
16
17
//! Brick implementations for cbtop
//!
//! Four-layer architecture following PROBAR-SPEC-009:
//! - Layer 1: Collectors - Data collection from hardware
//! - Layer 2: Analyzers - Business logic and derived metrics
//! - Layer 3: Panels - Rendering using presentar-terminal widgets
//! - Layer 4: Generators - Load generation

pub mod analyzers;
pub mod collectors;
pub mod generators;
pub mod panels;

// Re-exports
pub use analyzers::*;
pub use collectors::*;
pub use generators::*;