//! Prometheus metrics integration for rust-camel.
//!
//! Implements `MetricsCollector` trait to export rust-camel metrics in Prometheus format.
//!
//! # TODO(PRM-011)
//!
//! - Route policy integration not implemented (per-route metric policies)
//! - Event notifier hook not implemented (metric event callbacks)
//! - Prometheus config struct (scrape interval, custom labels, histogram buckets) not exposed
pub use HealthChecker;
pub use MetricsCollector;
pub use PrometheusMetrics;
pub use MetricsServer;
pub use PrometheusService;