- Rename alerts widget to hosts widget for clarity - Add sub_service field to ServiceInfo for display differentiation - Integrate system metrics (CPU load, memory, temperature, disk) as service rows - Convert nginx sites to individual sub-service rows with tree structure - Remove nginx site checkmarks - status now shown via row indicators - Update dashboard layout to display system and service data together - Maintain description lines for connection counts and service details Services widget now shows: - System metrics as regular service rows with status - Nginx sites as sub-services with ├─/└─ tree formatting - Regular services with full resource data and descriptions - Unified status indication across all row types
10 lines
145 B
Rust
10 lines
145 B
Rust
pub mod hosts;
|
|
pub mod backup;
|
|
pub mod dashboard;
|
|
pub mod services;
|
|
pub mod storage;
|
|
pub mod system;
|
|
pub mod widget;
|
|
|
|
pub use dashboard::render;
|