From 5cc161d7b7ab76a9c61ae660ec7684d05229c8b6 Mon Sep 17 00:00:00 2001 From: ngovinh2k2 Date: Mon, 15 Dec 2025 00:55:06 +0700 Subject: [PATCH] fix: remove group_by field --- common/utils/telemetry_client.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/common/utils/telemetry_client.py b/common/utils/telemetry_client.py index 62c3520..052a3a1 100644 --- a/common/utils/telemetry_client.py +++ b/common/utils/telemetry_client.py @@ -161,7 +161,6 @@ def get_widget_data( organization_slug: str, start_time: str | None = None, end_time: str | None = None, - group_by: str | None = None, ) -> dict: """ Fetch widget data for a specific entity from the telemetry service @@ -175,9 +174,6 @@ def get_widget_data( if end_time: params["end_time"] = end_time - if group_by: - params["group_by"] = group_by - try: response = requests.get( endpoint,