//! Foxhunt Monitoring Module //! //! Provides comprehensive Prometheus metrics collection for the HFT trading system. //! Optimized for minimal latency impact in critical trading paths. pub mod metrics; pub mod server; // DO NOT RE-EXPORT - Use explicit imports at usage sites FoxhuntMetrics, record_order, record_order_fill, record_order_rejection, record_latency, record_order_processing_latency, record_market_data_latency, record_risk_breach, update_position_value, update_var, update_active_orders, record_market_data_message, record_ml_prediction, update_throughput, }; // DO NOT RE-EXPORT - Use explicit imports at usage sites MetricsServer, MetricsServerConfig, MetricsError, start_metrics_server, start_metrics_server_with_config, };