athena_rs 3.26.1

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Gateway request-telemetry expected logging-schema table contracts.
//!
//! This module preserves a stable gateway request expectations import surface
//! while telemetry sink contracts are split by concern:
//! - `request_log` for request-level telemetry
//! - `operation_log` for operation-level telemetry
//! - `route_request_log` for optional route-level telemetry

mod operation_log;
mod request_log;
mod route_request_log;

pub(super) use operation_log::EXPECTED_GATEWAY_OPERATION_LOG;
pub(super) use request_log::EXPECTED_GATEWAY_REQUEST_LOG;
pub(super) use route_request_log::EXPECTED_GATEWAY_ROUTE_REQUEST_LOG;