pub mod aggregator;
pub mod alert;
pub mod bus;
pub mod exporter;
pub mod gauge;
pub mod watcher;
pub use aggregator::{ComponentHealth, HealthReport, MetricsAggregator};
pub use alert::{Alert, AlertSeverity};
pub use bus::{AlertBus, AlertHandler};
pub use exporter::{export_otel_json, export_otel_json_value, export_prometheus_text};
pub use gauge::{MetricTimeSeries, ThresholdGauge};
pub use watcher::HealthWatcher;
pub use core_types::{HealthStatus, MetricsProvider, MetricsSnapshot};