From 91445f38b4c2e3bae759f0ef25de5b6e070898f8 Mon Sep 17 00:00:00 2001 From: Adelin Patricia Date: Sat, 20 Jun 2026 22:30:31 +0530 Subject: [PATCH] fix: ensure metric aliases are always exported --- libs/observability/metrics.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/observability/metrics.py b/libs/observability/metrics.py index 07bdafd..ec35094 100644 --- a/libs/observability/metrics.py +++ b/libs/observability/metrics.py @@ -114,6 +114,6 @@ def metric_exists(name: str) -> bool: "agentic_workflow_duration_seconds" ] - # Backwards-compatible aliases used by API routes - INGEST_COUNTER = frames_processed_total - REASONING_TRIGGER_COUNTER = reasoning_triggers_total +# Backwards-compatible aliases used by API routes +INGEST_COUNTER = frames_processed_total +REASONING_TRIGGER_COUNTER = reasoning_triggers_total \ No newline at end of file