Ignore user count threshold in opmon views
This commit is contained in:
Родитель
cda79b9831
Коммит
6b0b918cc6
|
@ -8,7 +8,7 @@ WITH valid_builds AS (
|
|||
FROM `{{gcp_project}}.{{dataset}}.{{slug}}_histogram`
|
||||
WHERE {% include 'where_clause.sql' %}
|
||||
GROUP BY 1
|
||||
HAVING COUNT(DISTINCT client_id) >= {{user_count_threshold}}
|
||||
-- HAVING COUNT(DISTINCT client_id) >= {{user_count_threshold}}
|
||||
),
|
||||
|
||||
filtered_histograms AS (
|
||||
|
|
|
@ -6,7 +6,7 @@ WITH valid_builds AS (
|
|||
FROM `{{gcp_project}}.{{dataset}}.{{slug}}_scalar`
|
||||
WHERE {% include 'where_clause.sql' %}
|
||||
GROUP BY 1
|
||||
HAVING COUNT(DISTINCT client_id) >= {{user_count_threshold}}
|
||||
-- HAVING COUNT(DISTINCT client_id) >= {{user_count_threshold}}
|
||||
),
|
||||
|
||||
filtered_scalars AS (
|
||||
|
|
Загрузка…
Ссылка в новой задаче