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,