Ignore user count threshold in opmon views

This commit is contained in:
Anna Scholtz 2022-03-14 12:52:54 -07:00
Родитель cda79b9831
Коммит 6b0b918cc6
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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 (