datasynth-server 3.1.0

gRPC and REST server for synthetic data generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Observability infrastructure for the DataSynth server.
//!
//! Provides metrics collection and optional OpenTelemetry integration.
//!
//! ## Feature flags
//!
//! - Default: Manual Prometheus text format metrics at `/metrics`
//! - `otel`: OpenTelemetry OTLP trace export + Prometheus metric bridge

pub mod metrics;

#[cfg(feature = "otel")]
pub mod otel;