halldyll-core 0.1.0

Core scraping engine for Halldyll - high-performance async web scraper for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Observe - Logs, metrics, traces, health checks, graceful shutdown

pub mod logs;
pub mod metrics;
pub mod traces;
pub mod prometheus;
pub mod health;
pub mod shutdown;

pub use logs::StructuredLogger;
pub use metrics::{Metrics, MetricsCollector, MetricsSnapshot};
pub use traces::TraceContext;
pub use prometheus::PrometheusExporter;
pub use health::{HealthChecker, HealthResponse, HealthStatus, HealthMetrics};
pub use shutdown::{GracefulShutdown, ShutdownResult};