From d2952654b4cc97a523ec92b356b8a8f44fe8d804 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Fri, 1 Aug 2025 10:03:19 -0300 Subject: [PATCH] SIENTIAPDE-1174 SIENTIAPDE-1174 Add write_metrics activity to main workflow for enhanced metrics tracking - Included the write_metrics activity in the main workflow to support Prometheus metrics tracking. --- laborious/worker/worker.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/laborious/worker/worker.py b/laborious/worker/worker.py index 4e72058..674c564 100644 --- a/laborious/worker/worker.py +++ b/laborious/worker/worker.py @@ -102,7 +102,8 @@ async def main(): # Postgres activities.load_custom_query, activities.repeat_last_prediction, - activities.export_data_to_postgres + activities.export_data_to_postgres, + activities.write_metrics ], max_concurrent_workflow_tasks=100, max_concurrent_activities=100,