selfware 0.2.2

Your personal AI workshop — software you own, software that lasts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Observability and analytics module
//!
//! This module contains telemetry and analytics functionality including:
//! - Telemetry collection
//! - Usage analytics
//! - Log analysis
//! - Carbon tracking
//! - Test dashboards

pub mod analytics;
pub mod carbon_tracker;
pub mod dashboard;
pub mod telemetry;
pub mod test_dashboard;

#[cfg(feature = "log-analysis")]
pub mod log_analysis;