fraiseql-server 2.0.0-alpha.1

HTTP server for FraiseQL v2 GraphQL engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Operational tools for FraiseQL server
//!
//! Provides production-ready operational infrastructure:
//! - Health check endpoints
//! - Readiness and liveness probes
//! - Metrics collection and export
//! - Graceful shutdown with signal handling

pub mod config;
pub mod health;
pub mod metrics;
pub mod shutdown;

pub use config::{ServerConfig, validate_config};
pub use health::{HealthStatus, health_check};
pub use metrics::{MetricsCollector, metrics_summary};
pub use shutdown::{ShutdownHandler, install_signal_handlers};