Skip to main content

cbtop/bricks/
mod.rs

1//! Brick implementations for cbtop
2//!
3//! Four-layer architecture following PROBAR-SPEC-009:
4//! - Layer 1: Collectors - Data collection from hardware
5//! - Layer 2: Analyzers - Business logic and derived metrics
6//! - Layer 3: Panels - Rendering using presentar-terminal widgets
7//! - Layer 4: Generators - Load generation
8
9pub mod analyzers;
10pub mod collectors;
11pub mod generators;
12pub mod panels;
13
14// Re-exports
15pub use analyzers::*;
16pub use collectors::*;
17pub use generators::*;