RDU manifest events
RDU manifest events are structured logs emitted per request by the model runtime. They contain token counts, high-level latencies, and a set of detailed timing fields. These events are typically indexed into a log index (for example, an OpenSearch index) and can be filtered by fields such as model, tenant, pod, and time range.RDU manifest fields
These fields are logging events and may be subject to schema evolution.
Example queries
Examples assume a log backend that supports a query language (e.g., OpenSearch or Loki) and timestamps on each event. p95 total latency per model (last 15 minutes)- Filter:
model:"<model_name>" AND @timestamp:[now-15m TO now] - Aggregate: percentile 95 on
total_latencygrouped bymodel.
- Group by
model, compute p50/p90 for bothtime_to_first_tokenandtotal_latency.
- Filter:
decode_queue_time > <threshold> - Group by
modelortenantto identify where queueing is highest.
- Filter:
model:"<model_name>" - Aggregate: average
acceptance_rateover time.
Related topics
- Monitoring and Observability – High-level telemetry breakdown and hierarchy.
- Metrics – Router-level metrics reference.

