From 6469b04e7425a87b10861e670fae62ad01f84d26 Mon Sep 17 00:00:00 2001 From: Federico Stagni Date: Tue, 30 Jan 2024 17:05:10 +0100 Subject: [PATCH] fix: moved to weekly indices --- src/DIRAC/MonitoringSystem/Client/Types/AgentMonitoring.py | 2 +- src/DIRAC/MonitoringSystem/Client/Types/ServiceMonitoring.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DIRAC/MonitoringSystem/Client/Types/AgentMonitoring.py b/src/DIRAC/MonitoringSystem/Client/Types/AgentMonitoring.py index f77dd747226..8263eaa1c2d 100644 --- a/src/DIRAC/MonitoringSystem/Client/Types/AgentMonitoring.py +++ b/src/DIRAC/MonitoringSystem/Client/Types/AgentMonitoring.py @@ -39,6 +39,6 @@ def __init__(self): } ) - self.period = "month" + self.period = "week" self.checkType() diff --git a/src/DIRAC/MonitoringSystem/Client/Types/ServiceMonitoring.py b/src/DIRAC/MonitoringSystem/Client/Types/ServiceMonitoring.py index 0dea9cbfb9c..df15e39f222 100644 --- a/src/DIRAC/MonitoringSystem/Client/Types/ServiceMonitoring.py +++ b/src/DIRAC/MonitoringSystem/Client/Types/ServiceMonitoring.py @@ -51,6 +51,6 @@ def __init__(self): } ) - self.period = "month" + self.period = "week" self.checkType()