pub fn api_service_runtimes(
_caller: Actor,
service: &str,
offset: Option<i64>,
page_size: Option<i64>,
pool: &State<DbPool>,
) -> Result<Json<ServiceRuntimeDto>, Status>Expand description
Conversion-runtime report for a service (agent twin of the runtime screen): distribution summary
- histogram + paginated slowest conversions, from the worker’s
runtime_mslog lines. Token-gated via theActorguard (401without a token). Paginated (offset/page_size, default 100, maxMAX_REPORT_PAGE_SIZE;offsetcapped atMAX_REPORT_OFFSET);404if the service is unknown.