From 1de0c93ef3e56b017e0bd00573320342a46c2d51 Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Wed, 28 Jan 2026 17:16:17 +0100 Subject: [PATCH] Filter experiment data by the Glean feature This makes the endpoint MUCH snappier and we should not run into deployment problems because of it that often --- etl/glean_etl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etl/glean_etl.py b/etl/glean_etl.py index e9785f4ce..a2d265bb0 100644 --- a/etl/glean_etl.py +++ b/etl/glean_etl.py @@ -36,7 +36,7 @@ ) EXPERIMENT_DATA_URL = os.getenv( "EXPERIMENT_DATA_URL", - "https://experimenter.services.mozilla.com/api/v6/experiments/", + "https://experimenter.services.mozilla.com/api/v6/experiments/?feature_config=glean", ) EXPERIMENTER_URL_TEMPLATE = "https://experimenter.services.mozilla.com/nimbus/{}/summary"