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 runtime-control expected logging-schema table contracts.
//!
//! This module preserves a stable gateway runtime expectations import surface
//! while contracts are split by runtime-control surface:
//! - `connection_registry` for realtime registry telemetry
//! - `deferred_queue` for deferred queue telemetry
//! - `admission_events` for admission limiter telemetry

mod admission_events;
mod connection_registry;
mod deferred_queue;

pub(super) use admission_events::EXPECTED_GATEWAY_ADMISSION_EVENTS;
pub(super) use connection_registry::EXPECTED_GATEWAY_CONNECTION_REGISTRY_REALTIME;
pub(super) use deferred_queue::EXPECTED_GATEWAY_DEFERRED_REQUEST_QUEUE;