From aafc6d27d2430dffd6cd4ec3161ddbae18c2980a Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Thu, 6 Nov 2025 13:57:56 -0300 Subject: [PATCH] SIENTIAPDE-1325 Update image tag to 0.5.0 in values.yaml and change GITHUB_BRANCH to feature/SIENTIAPDE-1325 for specific external operation metrics. Remove unused timestamp formatting in mongo_db.py to streamline data handling. --- orchestrator/activities/mongo_db.py | 5 ----- values.yaml | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/orchestrator/activities/mongo_db.py b/orchestrator/activities/mongo_db.py index ec699e8..f219f35 100644 --- a/orchestrator/activities/mongo_db.py +++ b/orchestrator/activities/mongo_db.py @@ -462,11 +462,6 @@ class MongoDB(SientiaMonitoring): self.debug(f'Collected: {data}', metadata=metadata) - for item in data: - item['timestamp'] = ( - item['timestamp'].replace(tzinfo=UTC).strftime(DATETIME_FORMAT_MS_WITH_TZ) - ) - self.info(f'Loaded {len(data)} documents from MongoDB', metadata=metadata) self.debug(f'Loaded data: {data}', metadata=metadata) diff --git a/values.yaml b/values.yaml index f35f2e8..88f5342 100644 --- a/values.yaml +++ b/values.yaml @@ -11,7 +11,7 @@ image: # This sets the pull policy for images. pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "0.4.9" + tag: "0.5.0" # This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ imagePullSecrets: @@ -151,7 +151,7 @@ env: - name: GITHUB_REPO_URL value: "git@github.com:Aignosi/sientia-dataops-orchestrator_temporal.git" - name: GITHUB_BRANCH - value: "fix/SIENTIAPDE-1314-ajustes-nas-camadas-de-monitoramento-do-sientia" + value: "feature/SIENTIAPDE-1325-adicionar-metricas-especificas-de-operacoes-externas" - name: PYTHON_APP value: "orchestrator.worker.worker"