Auto-push from LookML generation

This commit is contained in:
Generated LookML Creator 2024-03-20 04:26:15 +00:00
Родитель 953fbf28e9
Коммит d447a58a35
145 изменённых файлов: 10439 добавлений и 8404 удалений

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

@ -50,13 +50,17 @@ view: metric_definitions_active_users_aggregates_v1 {
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -34,6 +34,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -101,29 +102,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.fenix.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -146,6 +165,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -35,6 +35,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -102,29 +103,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.fenix.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -147,6 +166,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -47,6 +47,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -118,29 +119,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.fenix.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -163,6 +182,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -63,13 +63,17 @@ SUM(dau) AS feature_usage_dau_v1,
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -35,6 +35,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -102,29 +103,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.fenix.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -147,6 +166,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -37,6 +37,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -103,29 +104,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.fenix.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -148,6 +167,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -30,6 +30,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -92,29 +93,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.fenix.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -137,6 +156,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -33,6 +33,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -144,29 +145,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.fenix.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -189,6 +208,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -51,13 +51,17 @@ SUM(IF(FORMAT_DATE('%m-%d', submission_date) BETWEEN '11-18' AND '12-15', dau, 0
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -358,6 +358,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -734,29 +738,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1088,6 +1113,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -342,6 +342,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -718,29 +722,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1072,6 +1097,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -364,6 +364,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -734,29 +738,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1087,6 +1112,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -340,6 +340,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -711,29 +715,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start first_seen_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end first_seen_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.first_seen_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start first_seen_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end first_seen_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.first_seen_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start first_seen_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end first_seen_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1065,6 +1090,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -339,6 +339,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -710,29 +714,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start first_seen_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end first_seen_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.first_seen_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start first_seen_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end first_seen_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.first_seen_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start first_seen_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end first_seen_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1064,6 +1089,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -344,6 +344,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -721,29 +725,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1075,6 +1100,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -49,13 +49,17 @@ SUM(COALESCE(num_clients_dau_active_atleastonce_in_last_28_days, 0)) AS cohort_c
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -347,6 +347,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -718,29 +722,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1072,6 +1097,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -339,6 +339,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -719,29 +723,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1073,6 +1098,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -359,6 +359,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -736,29 +740,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1090,6 +1115,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -359,6 +359,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.metrics.uuid.legacy_telemetry_client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -735,29 +739,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.metrics.uuid.legacy_telemetry_client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1089,6 +1114,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -349,6 +349,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.legacy_telemetry_client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -720,29 +724,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.legacy_telemetry_client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1074,6 +1099,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -340,6 +340,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.legacy_telemetry_client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -711,29 +715,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.legacy_telemetry_client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1065,6 +1090,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -430,6 +430,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.legacy_telemetry_client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -809,29 +813,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.legacy_telemetry_client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1163,6 +1188,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -342,6 +342,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -718,29 +722,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1072,6 +1097,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -351,6 +351,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -722,29 +726,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1076,6 +1101,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -339,6 +339,10 @@ base.base_vr_crash_count AS vr_crash_count,
base.base_web_notification_shown_sum AS web_notification_shown_sum,
base.base_windows_build_number AS windows_build_number,
base.base_windows_ubr AS windows_ubr,
base.base_first_seen_date AS first_seen_date,
base.base_second_seen_date AS second_seen_date,
base.base_submission_date_s3 AS submission_date_s3,
base.base_submission_timestamp_min AS submission_timestamp_min,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -710,29 +714,50 @@ vr_crash_count AS base_vr_crash_count,
web_notification_shown_sum AS base_web_notification_shown_sum,
windows_build_number AS base_windows_build_number,
windows_ubr AS base_windows_ubr,
first_seen_date AS base_first_seen_date,
second_seen_date AS base_second_seen_date,
submission_date_s3 AS base_submission_date_s3,
submission_timestamp_min AS base_submission_timestamp_min,
FROM
mozdata.telemetry.clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
aborts_content_sum,
aborts_gmplugin_sum,
@ -1064,6 +1089,10 @@ vr_crash_count,
web_notification_shown_sum,
windows_build_number,
windows_ubr,
first_seen_date,
second_seen_date,
submission_date_s3,
submission_timestamp_min,
client_id,
analysis_basis ;;

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

@ -5,6 +5,24 @@
# You can extend this view in the looker-spoke-default project (https://github.com/mozilla/looker-spoke-default)
view: metrics {
dimension: metrics__quantity__browser_backup_prof_d_disk_space {
label: "Browser Backup Prof D Disk Space"
hidden: no
sql: ${TABLE}.metrics.quantity.browser_backup_prof_d_disk_space ;;
type: number
group_label: "Browser Backup"
group_item_label: "Prof D Disk Space"
link: {
label: "Glean Dictionary reference for Browser Backup Prof D Disk Space"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/browser_backup_prof_d_disk_space"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "The total disk space available on the storage device that the profile directory is stored on. To reduce fingerprintability, we round to the nearest 10 megabytes and return the result in kilobytes.
"
}
dimension: metrics__counter__browser_engagement_active_ticks {
label: "Browser Engagement Active Ticks"
hidden: no

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

@ -2841,6 +2841,15 @@ success - search service successfully initialized.
"
}
dimension: metrics__quantity__browser_backup_prof_d_disk_space {
sql: ${TABLE}.metrics.quantity.browser_backup_prof_d_disk_space ;;
type: number
group_label: "Metrics Quantity"
group_item_label: "Browser Backup Prof D Disk Space"
description: "The total disk space available on the storage device that the profile directory is stored on. To reduce fingerprintability, we round to the nearest 10 megabytes and return the result in kilobytes.
"
}
dimension: metrics__quantity__browser_engagement_profile_count {
sql: ${TABLE}.metrics.quantity.browser_engagement_profile_count ;;
type: number

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

@ -55,6 +55,11 @@ view: newtab_visits_table {
type: yesno
}
dimension: had_non_search_engagement {
sql: ${TABLE}.had_non_search_engagement ;;
type: yesno
}
dimension: is_new_profile {
sql: ${TABLE}.is_new_profile ;;
type: yesno
@ -65,6 +70,11 @@ view: newtab_visits_table {
type: string
}
dimension: locale {
sql: ${TABLE}.locale ;;
type: string
}
dimension: newtab_blocked_sponsors {
sql: ${TABLE}.newtab_blocked_sponsors ;;
hidden: yes

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

@ -50,13 +50,17 @@ view: metric_definitions_active_users_aggregates_v1 {
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -50,13 +50,17 @@ SUM(total_downloads) AS downloads,
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -33,6 +33,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -100,29 +101,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.firefox_ios.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -145,6 +164,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -35,6 +35,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -102,29 +103,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.firefox_ios.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -147,6 +166,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -43,6 +43,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -114,29 +115,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.firefox_ios.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -159,6 +178,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -51,13 +51,17 @@ SUM(retained_week_4) AS week_4_retained_users,
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -30,6 +30,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -97,29 +98,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.firefox_ios.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -142,6 +161,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -36,6 +36,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -102,29 +103,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.firefox_ios.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -147,6 +166,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -30,6 +30,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -92,29 +93,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.firefox_ios.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -137,6 +156,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -33,6 +33,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -149,29 +150,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.firefox_ios.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -194,6 +213,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -50,13 +50,17 @@ view: metric_definitions_active_users_aggregates_v1 {
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -33,6 +33,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -100,29 +101,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.focus_android.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -145,6 +164,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -35,6 +35,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -102,29 +103,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.focus_android.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -147,6 +166,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -30,6 +30,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -97,29 +98,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.focus_android.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -142,6 +161,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -37,6 +37,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -99,29 +100,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.focus_android.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -144,6 +163,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -50,13 +50,17 @@ view: metric_definitions_active_users_aggregates_v1 {
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -32,6 +32,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -98,29 +99,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_ios_focus.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -142,6 +161,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -34,6 +34,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -100,29 +101,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_ios_focus.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -144,6 +163,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -29,6 +29,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -95,29 +96,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_ios_focus.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -139,6 +158,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -36,6 +36,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -101,29 +102,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_ios_focus.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -145,6 +164,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -32,6 +32,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -98,29 +99,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_klar.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -142,6 +161,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -29,6 +29,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -95,29 +96,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_klar.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -139,6 +158,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -35,6 +35,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -96,29 +97,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_klar.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -140,6 +159,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -32,6 +32,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -98,29 +99,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_ios_klar.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -142,6 +161,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -29,6 +29,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_info.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -95,29 +96,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_ios_klar.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_info.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -139,6 +158,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -35,6 +35,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -100,29 +101,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.org_mozilla_ios_klar.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -144,6 +163,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -8,139 +8,116 @@ view: acoustic_contact_change_events {
dimension: basket_token {
sql: ${TABLE}.basket_token ;;
type: string
description: "token generated for unsubscribe and email\ preference center links; this was called token__c in SFMC"
}
dimension: cohort {
sql: ${TABLE}.cohort ;;
type: string
description: "stores values for automation testing"
}
dimension: double_opt_in {
sql: ${TABLE}.double_opt_in ;;
type: yesno
description: "TRUE = double opted-in FALSE = not opted-in."
}
dimension: email_format {
sql: ${TABLE}.email_format ;;
type: string
description: "preferred email format - values are H for HTML or T for\ Text and sometimes this field is blank for a contact"
}
dimension: email_id {
sql: ${TABLE}.email_id ;;
type: string
description: "key to connect to rt_newsletters\ and rt_mofo_contact relational databases"
}
dimension: email_lang {
sql: ${TABLE}.email_lang ;;
type: string
description: "preferred email language"
}
dimension: fxa_account_deleted {
sql: ${TABLE}.fxa_account_deleted ;;
type: yesno
description: "has the fxa account been deleted?"
}
dimension: fxa_first_service {
sql: ${TABLE}.fxa_first_service ;;
type: string
description: "the first service added to the Firefox account"
}
dimension: fxa_id {
sql: ${TABLE}.fxa_id ;;
type: string
description: "key to connect to rt_moco_fxa_service relational database"
}
dimension: has_opted_out_of_email {
sql: ${TABLE}.has_opted_out_of_email ;;
type: yesno
description: "TRUE = has opted-out (exclude them from email sends)\ FALSE = can send emails"
}
dimension: mailing_country {
sql: ${TABLE}.mailing_country ;;
type: string
description: "subscriber's country"
}
dimension: recipient_id {
sql: ${TABLE}.recipient_id ;;
type: number
description: "Recipient's ID"
}
dimension: relay_waitlist_geo {
sql: ${TABLE}.relay_waitlist_geo ;;
type: string
description: "Relay waitlist country location"
}
dimension: sfdc_id {
sql: ${TABLE}.sfdc_id ;;
type: string
description: "key to connect to rt_mofo_campaign_member\ and rt_mofo_opportunity relational databases"
}
dimension: sub_about_mozilla {
sql: ${TABLE}.sub_about_mozilla ;;
type: yesno
description: "subscribed to Mozilla Community"
}
dimension: sub_apps_and_hacks {
sql: ${TABLE}.sub_apps_and_hacks ;;
type: yesno
description: "subscribed to Developer newsletter"
}
dimension: sub_common_voice {
sql: ${TABLE}.sub_common_voice ;;
type: yesno
description: "subscribed to Mozilla Common Voice"
}
dimension: sub_firefox_accounts_journey {
sql: ${TABLE}.sub_firefox_accounts_journey ;;
type: yesno
description: "subscribed to Firefox Account Tips"
}
dimension: sub_firefox_news {
sql: ${TABLE}.sub_firefox_news ;;
type: yesno
description: "subscribed to Firefox News"
}
dimension: sub_firefox_sweepstakes {
sql: ${TABLE}.sub_firefox_sweepstakes ;;
type: yesno
description: "subscribed to Firefox Sweepstakes"
}
dimension: sub_hubs {
sql: ${TABLE}.sub_hubs ;;
type: yesno
description: "subscribed to Mozilla Hubs"
}
dimension: sub_internet_health_report {
sql: ${TABLE}.sub_internet_health_report ;;
type: yesno
description: "subscribed to Insights"
}
dimension: sub_knowledge_is_power {
sql: ${TABLE}.sub_knowledge_is_power ;;
type: yesno
description: "subscribed to Knowledge is Power"
}
dimension: sub_miti {
@ -151,67 +128,56 @@ view: acoustic_contact_change_events {
dimension: sub_mixed_reality {
sql: ${TABLE}.sub_mixed_reality ;;
type: yesno
description: "subscribed to Mixed Reality"
}
dimension: sub_mozilla_fellowship_awardee_alumni {
sql: ${TABLE}.sub_mozilla_fellowship_awardee_alumni ;;
type: yesno
description: "subscribed to Fellowship and Awardee Alumni"
}
dimension: sub_mozilla_festival {
sql: ${TABLE}.sub_mozilla_festival ;;
type: yesno
description: "subscribed to MozFest"
}
dimension: sub_mozilla_foundation {
sql: ${TABLE}.sub_mozilla_foundation ;;
type: yesno
description: "subscribed to Mozilla Foundation"
}
dimension: sub_mozilla_technology {
sql: ${TABLE}.sub_mozilla_technology ;;
type: yesno
description: "subscribed to Mozilla Technology"
}
dimension: sub_mozillians_nda {
sql: ${TABLE}.sub_mozillians_nda ;;
type: yesno
description: "NDA'd Mozillians"
}
dimension: sub_rally {
sql: ${TABLE}.sub_rally ;;
type: yesno
description: "subscribed to Mozilla Rally"
}
dimension: sub_take_action_for_the_internet {
sql: ${TABLE}.sub_take_action_for_the_internet ;;
type: yesno
description: "subscribed to Take Action for the Internet"
}
dimension: sub_test_pilot {
sql: ${TABLE}.sub_test_pilot ;;
type: yesno
description: "subscribed to New Product Testing"
}
dimension: vpn_waitlist_geo {
sql: ${TABLE}.vpn_waitlist_geo ;;
type: string
description: "VPN waitlist country location"
}
dimension: vpn_waitlist_platform {
sql: ${TABLE}.vpn_waitlist_platform ;;
hidden: yes
description: "VPN waitlist platform name"
}
dimension_group: date_created {
@ -227,7 +193,6 @@ view: acoustic_contact_change_events {
]
convert_tz: no
datatype: date
description: "Date when the contact was created"
}
dimension_group: fxa_created {
@ -243,7 +208,6 @@ view: acoustic_contact_change_events {
]
convert_tz: no
datatype: date
description: "records the date/time a subscriber created a Firefox account"
}
dimension_group: last_modified {
@ -259,8 +223,7 @@ view: acoustic_contact_change_events {
]
convert_tz: no
datatype: date
description: "Correspnds to Airflow's exec date. \ Means when at the time the job run, that was \ most recently when the contact was updated."
}
sql_table_name: `moz-fx-data-marketing-prod.acoustic.contact_v1` ;;
sql_table_name: `mozdata.acoustic.contact` ;;
}

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

@ -8,67 +8,56 @@ view: acoustic_contact_current_snapshot {
dimension: basket_token {
sql: ${TABLE}.basket_token ;;
type: string
description: "token generated for unsubscribe and email\ preference center links; this was called token__c in SFMC"
}
dimension: cohort {
sql: ${TABLE}.cohort ;;
type: string
description: "stores values for automation testing"
}
dimension: double_opt_in {
sql: ${TABLE}.double_opt_in ;;
type: yesno
description: "TRUE = double opted-in FALSE = not opted-in."
}
dimension: email_format {
sql: ${TABLE}.email_format ;;
type: string
description: "preferred email format - values are H for HTML or T for\ Text and sometimes this field is blank for a contact"
}
dimension: email_id {
sql: ${TABLE}.email_id ;;
type: string
description: "key to connect to rt_newsletters\ and rt_mofo_contact relational databases"
}
dimension: email_lang {
sql: ${TABLE}.email_lang ;;
type: string
description: "preferred email language"
}
dimension: fxa_account_deleted {
sql: ${TABLE}.fxa_account_deleted ;;
type: yesno
description: "has the fxa account been deleted?"
}
dimension: fxa_first_service {
sql: ${TABLE}.fxa_first_service ;;
type: string
description: "the first service added to the Firefox account"
}
dimension: fxa_id {
sql: ${TABLE}.fxa_id ;;
type: string
description: "key to connect to rt_moco_fxa_service relational database"
}
dimension: has_opted_out_of_email {
sql: ${TABLE}.has_opted_out_of_email ;;
type: yesno
description: "TRUE = has opted-out (exclude them from email sends)\ FALSE = can send emails"
}
dimension: mailing_country {
sql: ${TABLE}.mailing_country ;;
type: string
description: "subscriber's country"
}
dimension: recipient_id {
@ -79,67 +68,56 @@ view: acoustic_contact_current_snapshot {
dimension: relay_waitlist_geo {
sql: ${TABLE}.relay_waitlist_geo ;;
type: string
description: "Relay waitlist country location"
}
dimension: sfdc_id {
sql: ${TABLE}.sfdc_id ;;
type: string
description: "key to connect to rt_mofo_campaign_member\ and rt_mofo_opportunity relational databases"
}
dimension: sub_about_mozilla {
sql: ${TABLE}.sub_about_mozilla ;;
type: yesno
description: "subscribed to Mozilla Community"
}
dimension: sub_apps_and_hacks {
sql: ${TABLE}.sub_apps_and_hacks ;;
type: yesno
description: "subscribed to Developer newsletter"
}
dimension: sub_common_voice {
sql: ${TABLE}.sub_common_voice ;;
type: yesno
description: "subscribed to Mozilla Common Voice"
}
dimension: sub_firefox_accounts_journey {
sql: ${TABLE}.sub_firefox_accounts_journey ;;
type: yesno
description: "subscribed to Firefox Account Tips"
}
dimension: sub_firefox_news {
sql: ${TABLE}.sub_firefox_news ;;
type: yesno
description: "subscribed to Firefox News"
}
dimension: sub_firefox_sweepstakes {
sql: ${TABLE}.sub_firefox_sweepstakes ;;
type: yesno
description: "subscribed to Firefox Sweepstakes"
}
dimension: sub_hubs {
sql: ${TABLE}.sub_hubs ;;
type: yesno
description: "subscribed to Mozilla Hubs"
}
dimension: sub_internet_health_report {
sql: ${TABLE}.sub_internet_health_report ;;
type: yesno
description: "subscribed to Insights"
}
dimension: sub_knowledge_is_power {
sql: ${TABLE}.sub_knowledge_is_power ;;
type: yesno
description: "subscribed to Knowledge is Power"
}
dimension: sub_miti {
@ -150,67 +128,56 @@ view: acoustic_contact_current_snapshot {
dimension: sub_mixed_reality {
sql: ${TABLE}.sub_mixed_reality ;;
type: yesno
description: "subscribed to Mixed Reality"
}
dimension: sub_mozilla_fellowship_awardee_alumni {
sql: ${TABLE}.sub_mozilla_fellowship_awardee_alumni ;;
type: yesno
description: "subscribed to Fellowship and Awardee Alumni"
}
dimension: sub_mozilla_festival {
sql: ${TABLE}.sub_mozilla_festival ;;
type: yesno
description: "subscribed to MozFest"
}
dimension: sub_mozilla_foundation {
sql: ${TABLE}.sub_mozilla_foundation ;;
type: yesno
description: "subscribed to Mozilla Foundation"
}
dimension: sub_mozilla_technology {
sql: ${TABLE}.sub_mozilla_technology ;;
type: yesno
description: "subscribed to Mozilla Technology"
}
dimension: sub_mozillians_nda {
sql: ${TABLE}.sub_mozillians_nda ;;
type: yesno
description: "NDA'd Mozillians"
}
dimension: sub_rally {
sql: ${TABLE}.sub_rally ;;
type: yesno
description: "subscribed to Mozilla Rally"
}
dimension: sub_take_action_for_the_internet {
sql: ${TABLE}.sub_take_action_for_the_internet ;;
type: yesno
description: "subscribed to Take Action for the Internet"
}
dimension: sub_test_pilot {
sql: ${TABLE}.sub_test_pilot ;;
type: yesno
description: "subscribed to New Product Testing"
}
dimension: vpn_waitlist_geo {
sql: ${TABLE}.vpn_waitlist_geo ;;
type: string
description: "VPN waitlist country location"
}
dimension: vpn_waitlist_platform {
sql: ${TABLE}.vpn_waitlist_platform ;;
hidden: yes
description: "VPN waitlist platform name"
}
dimension_group: date_created {
@ -226,7 +193,6 @@ view: acoustic_contact_current_snapshot {
]
convert_tz: no
datatype: date
description: "Date when the contact was created"
}
dimension_group: fxa_created {
@ -242,7 +208,6 @@ view: acoustic_contact_current_snapshot {
]
convert_tz: no
datatype: date
description: "records the date/time a subscriber created a Firefox account"
}
dimension_group: last_modified {
@ -258,8 +223,7 @@ view: acoustic_contact_current_snapshot {
]
convert_tz: no
datatype: date
description: "Correspnds to Airflow's exec date. \ Means when at the time the job run, that was \ most recently when the contact was updated."
}
sql_table_name: `moz-fx-data-marketing-prod.acoustic.contact_current_snapshot_v1` ;;
sql_table_name: `mozdata.acoustic.contact_current_snapshot` ;;
}

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

@ -8,49 +8,41 @@ view: acoustic_email_events {
dimension: body_type {
sql: ${TABLE}.body_type ;;
type: string
description: "The body type the contact received."
}
dimension: campaign_id {
sql: ${TABLE}.campaign_id ;;
type: number
description: "The ID of the campaign associated with the event."
}
dimension: click_name {
sql: ${TABLE}.click_name ;;
type: string
description: "The user-specified name of the link or Clickstream."
}
dimension: content_id {
sql: ${TABLE}.content_id ;;
type: string
description: "The ID of the content associated with the event."
}
dimension: event_type {
sql: ${TABLE}.event_type ;;
type: string
description: "The type of contact event."
}
dimension: mailing_id {
sql: ${TABLE}.mailing_id ;;
type: number
description: "The ID of the Sent email associated with the event."
}
dimension: recipient_id {
sql: ${TABLE}.recipient_id ;;
type: number
description: "The ID of the contact associated with the event."
}
dimension: recipient_type {
sql: ${TABLE}.recipient_type ;;
type: string
description: "The type of contact to whom the Acoustic Campaign sent the email."
}
dimension: report_id {
@ -61,13 +53,11 @@ view: acoustic_email_events {
dimension: suppression_reason {
sql: ${TABLE}.suppression_reason ;;
type: string
description: "The reason a contact was suppressed."
}
dimension: url {
sql: ${TABLE}.url ;;
type: string
description: "The hyperlink of a Clickthrough or Clickstream."
}
dimension_group: event {
@ -82,7 +72,6 @@ view: acoustic_email_events {
quarter,
year,
]
description: "The date and time of the event in the API users time zone."
}
dimension_group: submission {
@ -98,8 +87,7 @@ view: acoustic_email_events {
]
convert_tz: no
datatype: date
description: "Airflow's execution date should \ overlap with date inside event_timestamp field"
}
sql_table_name: `moz-fx-data-marketing-prod.acoustic.raw_recipient_v1` ;;
sql_table_name: `mozdata.acoustic.raw_recipient` ;;
}

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

@ -29,6 +29,7 @@ base.base_normalized_os AS normalized_os,
base.base_normalized_os_version AS normalized_os_version,
base.base_sample_id AS sample_id,
base.base_telemetry_sdk_build AS telemetry_sdk_build,
base.base_first_seen_date AS first_seen_date,
m.client_id AS client_id,
{% if aggregate_metrics_by._parameter_value == 'day' %}
@ -100,29 +101,47 @@ normalized_os AS base_normalized_os,
normalized_os_version AS base_normalized_os_version,
sample_id AS base_sample_id,
telemetry_sdk_build AS base_telemetry_sdk_build,
first_seen_date AS base_first_seen_date,
FROM
mozdata.monitor_cirrus.baseline_clients_daily
WHERE
submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE),
CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
), CURRENT_DATE())
) base
ON
base.base_submission_date = m.submission_date
AND base.base_client_id = m.client_id
WHERE base.base_submission_date BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
) AND
), CURRENT_DATE())
AND
base.base_sample_id < {% parameter sampling %}
AND m.submission_date BETWEEN
AND
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
android_sdk_version,
app_build,
@ -144,6 +163,7 @@ normalized_os,
normalized_os_version,
sample_id,
telemetry_sdk_build,
first_seen_date,
client_id,
analysis_basis ;;

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

@ -6,7 +6,7 @@
# Using a datagroup in a derived table: https://cloud.google.com/looker/docs/reference/param-view-datagroup-trigger
datagroup: bigquery_table_storage_v1_last_updated {
label: "BigQuery Tables Storage Last Updated"
label: "bigquery_table_storage_v1 Last Updated"
sql_trigger: SELECT MAX(storage_last_modified_time)
FROM `moz-fx-data-shared-prod`.`region-us`.INFORMATION_SCHEMA.TABLE_STORAGE
WHERE table_schema = 'monitoring_derived'

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

@ -5,6 +5,149 @@
# You can extend this view in the looker-spoke-default project (https://github.com/mozilla/looker-spoke-default)
view: daemonsession {
dimension: metrics__counter__connection_health_no_signal_count {
label: "Connection Health No Signal Count"
hidden: no
sql: ${TABLE}.metrics.counter.connection_health_no_signal_count ;;
type: number
group_label: "Connection Health"
group_item_label: "No Signal Count"
link: {
label: "Glean Dictionary reference for Connection Health No Signal Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Count of times that the connection health check results
in no signal.
The health check counters must not be considered as markers of time. There is a possible
situation in the health check (which calls the telemetry) which frequently results in more
than one count per second. The situation: A health check is conducted because a network
check did not return, and milliseconds later that network check returns and another health
check is started because of the return.
"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__sum {
label: "Connection Health No Signal Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.sum ;;
type: number
group_label: "Connection Health"
group_item_label: "No Signal Time Sum"
link: {
label: "Glean Dictionary reference for Connection Health No Signal Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time spent in no signal state.
Only collected on desktop for vpnsession, as mobile apps
frequently are relaunched during VPN sessions. It is
collected in daemonsession, currently only on Android.
To be done on iOS: https://mozilla-hub.atlassian.net/browse/VPN-4979
"
}
dimension: metrics__counter__connection_health_stable_count {
label: "Connection Health Stable Count"
hidden: no
sql: ${TABLE}.metrics.counter.connection_health_stable_count ;;
type: number
group_label: "Connection Health"
group_item_label: "Stable Count"
link: {
label: "Glean Dictionary reference for Connection Health Stable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Count of times that the connection health check succeeds.
The health check counters must not be considered as markers of time. There is a possible
situation in the health check (which calls the telemetry) which frequently results in more
than one count per second. The situation: A health check is conducted because a network
check did not return, and milliseconds later that network check returns and another health
check is started because of the return.
"
}
dimension: metrics__timing_distribution__connection_health_stable_time__sum {
label: "Connection Health Stable Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.sum ;;
type: number
group_label: "Connection Health"
group_item_label: "Stable Time Sum"
link: {
label: "Glean Dictionary reference for Connection Health Stable Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time spent in stable state.
Only collected on desktop for vpnsession, as mobile apps
frequently are relaunched during VPN sessions. It is
collected in daemonsession, currently only on Android.
To be done on iOS: https://mozilla-hub.atlassian.net/browse/VPN-4979
"
}
dimension: metrics__counter__connection_health_unstable_count {
label: "Connection Health Unstable Count"
hidden: no
sql: ${TABLE}.metrics.counter.connection_health_unstable_count ;;
type: number
group_label: "Connection Health"
group_item_label: "Unstable Count"
link: {
label: "Glean Dictionary reference for Connection Health Unstable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Count of times that the connection health check results
in unstable.
The health check counters must not be considered as markers of time. There is a possible
situation in the health check (which calls the telemetry) which frequently results in more
than one count per second. The situation: A health check is conducted because a network
check did not return, and milliseconds later that network check returns and another health
check is started because of the return.
"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__sum {
label: "Connection Health Unstable Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.sum ;;
type: number
group_label: "Connection Health"
group_item_label: "Unstable Time Sum"
link: {
label: "Glean Dictionary reference for Connection Health Unstable Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time spent in unstable state.
Only collected on desktop for vpnsession, as mobile apps
frequently are relaunched during VPN sessions. It is
collected in daemonsession, currently only on Android.
To be done on iOS: https://mozilla-hub.atlassian.net/browse/VPN-4979
"
}
dimension: metrics__counter__session_connection_health_stable_count {
label: "Session Connection Health Stable Count"
hidden: yes
@ -641,6 +784,81 @@ The labels are the `category.name` identifier of the metric.
type: count
}
measure: connection_health_no_signal_count {
type: sum
sql: ${metrics__counter__connection_health_no_signal_count} ;;
link: {
label: "Glean Dictionary reference for Connection Health No Signal Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_no_signal_count_client_count {
type: count_distinct
filters: [
metrics__counter__connection_health_no_signal_count: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Connection Health No Signal Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_stable_count {
type: sum
sql: ${metrics__counter__connection_health_stable_count} ;;
link: {
label: "Glean Dictionary reference for Connection Health Stable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_stable_count_client_count {
type: count_distinct
filters: [
metrics__counter__connection_health_stable_count: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Connection Health Stable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_unstable_count {
type: sum
sql: ${metrics__counter__connection_health_unstable_count} ;;
link: {
label: "Glean Dictionary reference for Connection Health Unstable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_unstable_count_client_count {
type: count_distinct
filters: [
metrics__counter__connection_health_unstable_count: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Connection Health Unstable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: session_connection_health_stable_count {
type: sum
sql: ${metrics__counter__session_connection_health_stable_count} ;;
@ -951,6 +1169,42 @@ view: daemonsession__events__extra {
}
}
view: daemonsession__metrics__timing_distribution__connection_health_no_signal_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: daemonsession__metrics__timing_distribution__connection_health_stable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: daemonsession__metrics__timing_distribution__connection_health_unstable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: daemonsession__ping_info__experiments {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -290,6 +290,27 @@ view: daemonsession_table {
group_item_label: "Version"
}
dimension: metrics__counter__connection_health_no_signal_count {
sql: ${TABLE}.metrics.counter.connection_health_no_signal_count ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Connection Health No Signal Count"
}
dimension: metrics__counter__connection_health_stable_count {
sql: ${TABLE}.metrics.counter.connection_health_stable_count ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Connection Health Stable Count"
}
dimension: metrics__counter__connection_health_unstable_count {
sql: ${TABLE}.metrics.counter.connection_health_unstable_count ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Connection Health Unstable Count"
}
dimension: metrics__counter__session_connection_health_stable_count {
sql: ${TABLE}.metrics.counter.session_connection_health_stable_count ;;
type: number
@ -345,6 +366,183 @@ view: daemonsession_table {
group_item_label: "Session Daemon Session Source"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__range {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__sum {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__values {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_stable_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__connection_health_stable_time__count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__connection_health_stable_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__connection_health_stable_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__connection_health_stable_time__range {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_stable_time__sum {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__connection_health_stable_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__connection_health_stable_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__connection_health_stable_time__values {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_unstable_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__range {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_unstable_time__sum {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__values {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.values ;;
hidden: yes
}
dimension: metrics__uuid__session_daemon_session_id {
sql: ${TABLE}.metrics.uuid.session_daemon_session_id ;;
type: string
@ -562,6 +760,42 @@ view: daemonsession_table__events__extra {
}
}
view: daemonsession_table__metrics__timing_distribution__connection_health_no_signal_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: daemonsession_table__metrics__timing_distribution__connection_health_stable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: daemonsession_table__metrics__timing_distribution__connection_health_unstable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: daemonsession_table__ping_info__experiments {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -0,0 +1,125 @@
# *Do not manually modify this file*
#
# This file has been generated via https://github.com/mozilla/lookml-generator
# You can extend this view in the looker-spoke-default project (https://github.com/mozilla/looker-spoke-default)
view: ga4_site_metrics_summary {
dimension: browser {
sql: ${TABLE}.browser ;;
type: string
}
dimension: campaign {
sql: ${TABLE}.campaign ;;
type: string
}
dimension: content {
sql: ${TABLE}.content ;;
type: string
}
dimension: country {
sql: ${TABLE}.country ;;
type: string
map_layer_name: countries
}
dimension: device_category {
sql: ${TABLE}.device_category ;;
type: string
}
dimension: download_installer_intent_goal {
sql: ${TABLE}.download_installer_intent_goal ;;
type: number
}
dimension: download_intent_goal {
sql: ${TABLE}.download_intent_goal ;;
type: number
}
dimension: join_waitlist_intent_goal {
sql: ${TABLE}.join_waitlist_intent_goal ;;
type: number
}
dimension: join_waitlist_success_goal {
sql: ${TABLE}.join_waitlist_success_goal ;;
type: number
}
dimension: language {
sql: ${TABLE}.language ;;
type: string
}
dimension: medium {
sql: ${TABLE}.medium ;;
type: string
}
dimension: non_fx_sessions {
sql: ${TABLE}.non_fx_sessions ;;
type: number
}
dimension: non_fx_subscribe_intent_goal {
sql: ${TABLE}.non_fx_subscribe_intent_goal ;;
type: number
}
dimension: operating_system {
sql: ${TABLE}.operating_system ;;
type: string
}
dimension: sessions {
sql: ${TABLE}.sessions ;;
type: number
}
dimension: sign_in_intent_goal {
sql: ${TABLE}.sign_in_intent_goal ;;
type: number
}
dimension: site {
sql: ${TABLE}.site ;;
type: string
}
dimension: source {
sql: ${TABLE}.source ;;
type: string
}
dimension: standardized_country_name {
sql: ${TABLE}.standardized_country_name ;;
type: string
}
dimension: subscribe_intent_goal {
sql: ${TABLE}.subscribe_intent_goal ;;
type: number
}
dimension_group: date {
sql: ${TABLE}.date ;;
type: time
timeframes: [
raw,
date,
week,
month,
quarter,
year,
]
convert_tz: no
datatype: date
}
sql_table_name: `mozdata.mozilla_vpn.site_metrics_summary_v2` ;;
}

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

@ -5,6 +5,149 @@
# You can extend this view in the looker-spoke-default project (https://github.com/mozilla/looker-spoke-default)
view: vpnsession {
dimension: metrics__counter__connection_health_no_signal_count {
label: "Connection Health No Signal Count"
hidden: no
sql: ${TABLE}.metrics.counter.connection_health_no_signal_count ;;
type: number
group_label: "Connection Health"
group_item_label: "No Signal Count"
link: {
label: "Glean Dictionary reference for Connection Health No Signal Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Count of times that the connection health check results
in no signal.
The health check counters must not be considered as markers of time. There is a possible
situation in the health check (which calls the telemetry) which frequently results in more
than one count per second. The situation: A health check is conducted because a network
check did not return, and milliseconds later that network check returns and another health
check is started because of the return.
"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__sum {
label: "Connection Health No Signal Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.sum ;;
type: number
group_label: "Connection Health"
group_item_label: "No Signal Time Sum"
link: {
label: "Glean Dictionary reference for Connection Health No Signal Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time spent in no signal state.
Only collected on desktop for vpnsession, as mobile apps
frequently are relaunched during VPN sessions. It is
collected in daemonsession, currently only on Android.
To be done on iOS: https://mozilla-hub.atlassian.net/browse/VPN-4979
"
}
dimension: metrics__counter__connection_health_stable_count {
label: "Connection Health Stable Count"
hidden: no
sql: ${TABLE}.metrics.counter.connection_health_stable_count ;;
type: number
group_label: "Connection Health"
group_item_label: "Stable Count"
link: {
label: "Glean Dictionary reference for Connection Health Stable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Count of times that the connection health check succeeds.
The health check counters must not be considered as markers of time. There is a possible
situation in the health check (which calls the telemetry) which frequently results in more
than one count per second. The situation: A health check is conducted because a network
check did not return, and milliseconds later that network check returns and another health
check is started because of the return.
"
}
dimension: metrics__timing_distribution__connection_health_stable_time__sum {
label: "Connection Health Stable Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.sum ;;
type: number
group_label: "Connection Health"
group_item_label: "Stable Time Sum"
link: {
label: "Glean Dictionary reference for Connection Health Stable Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time spent in stable state.
Only collected on desktop for vpnsession, as mobile apps
frequently are relaunched during VPN sessions. It is
collected in daemonsession, currently only on Android.
To be done on iOS: https://mozilla-hub.atlassian.net/browse/VPN-4979
"
}
dimension: metrics__counter__connection_health_unstable_count {
label: "Connection Health Unstable Count"
hidden: no
sql: ${TABLE}.metrics.counter.connection_health_unstable_count ;;
type: number
group_label: "Connection Health"
group_item_label: "Unstable Count"
link: {
label: "Glean Dictionary reference for Connection Health Unstable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Count of times that the connection health check results
in unstable.
The health check counters must not be considered as markers of time. There is a possible
situation in the health check (which calls the telemetry) which frequently results in more
than one count per second. The situation: A health check is conducted because a network
check did not return, and milliseconds later that network check returns and another health
check is started because of the return.
"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__sum {
label: "Connection Health Unstable Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.sum ;;
type: number
group_label: "Connection Health"
group_item_label: "Unstable Time Sum"
link: {
label: "Glean Dictionary reference for Connection Health Unstable Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time spent in unstable state.
Only collected on desktop for vpnsession, as mobile apps
frequently are relaunched during VPN sessions. It is
collected in daemonsession, currently only on Android.
To be done on iOS: https://mozilla-hub.atlassian.net/browse/VPN-4979
"
}
dimension: metrics__quantity__session_apps_excluded {
label: "Session Apps Excluded"
hidden: no
@ -667,6 +810,81 @@ The labels are the `category.name` identifier of the metric.
type: count
}
measure: connection_health_no_signal_count {
type: sum
sql: ${metrics__counter__connection_health_no_signal_count} ;;
link: {
label: "Glean Dictionary reference for Connection Health No Signal Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_no_signal_count_client_count {
type: count_distinct
filters: [
metrics__counter__connection_health_no_signal_count: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Connection Health No Signal Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_no_signal_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_stable_count {
type: sum
sql: ${metrics__counter__connection_health_stable_count} ;;
link: {
label: "Glean Dictionary reference for Connection Health Stable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_stable_count_client_count {
type: count_distinct
filters: [
metrics__counter__connection_health_stable_count: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Connection Health Stable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_stable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_unstable_count {
type: sum
sql: ${metrics__counter__connection_health_unstable_count} ;;
link: {
label: "Glean Dictionary reference for Connection Health Unstable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: connection_health_unstable_count_client_count {
type: count_distinct
filters: [
metrics__counter__connection_health_unstable_count: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Connection Health Unstable Count"
url: "https://dictionary.telemetry.mozilla.org/apps/mozilla_vpn/metrics/connection_health_unstable_count"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: session_connection_health_stable_count {
type: sum
sql: ${metrics__counter__session_connection_health_stable_count} ;;
@ -977,6 +1195,42 @@ view: vpnsession__events__extra {
}
}
view: vpnsession__metrics__timing_distribution__connection_health_no_signal_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: vpnsession__metrics__timing_distribution__connection_health_stable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: vpnsession__metrics__timing_distribution__connection_health_unstable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: vpnsession__ping_info__experiments {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -290,6 +290,27 @@ view: vpnsession_table {
group_item_label: "Version"
}
dimension: metrics__counter__connection_health_no_signal_count {
sql: ${TABLE}.metrics.counter.connection_health_no_signal_count ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Connection Health No Signal Count"
}
dimension: metrics__counter__connection_health_stable_count {
sql: ${TABLE}.metrics.counter.connection_health_stable_count ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Connection Health Stable Count"
}
dimension: metrics__counter__connection_health_unstable_count {
sql: ${TABLE}.metrics.counter.connection_health_unstable_count ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Connection Health Unstable Count"
}
dimension: metrics__counter__session_connection_health_stable_count {
sql: ${TABLE}.metrics.counter.session_connection_health_stable_count ;;
type: number
@ -352,6 +373,183 @@ view: vpnsession_table {
group_item_label: "Session Dns Type"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__range {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__sum {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health No Signal Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__connection_health_no_signal_time__values {
sql: ${TABLE}.metrics.timing_distribution.connection_health_no_signal_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_stable_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__connection_health_stable_time__count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__connection_health_stable_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__connection_health_stable_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__connection_health_stable_time__range {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_stable_time__sum {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__connection_health_stable_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__connection_health_stable_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Stable Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__connection_health_stable_time__values {
sql: ${TABLE}.metrics.timing_distribution.connection_health_stable_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_unstable_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__count {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.count ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__range {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__connection_health_unstable_time__sum {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Connection Health Unstable Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__connection_health_unstable_time__values {
sql: ${TABLE}.metrics.timing_distribution.connection_health_unstable_time.values ;;
hidden: yes
}
dimension: metrics__uuid__session_installation_id {
sql: ${TABLE}.metrics.uuid.session_installation_id ;;
type: string
@ -569,6 +767,42 @@ view: vpnsession_table__events__extra {
}
}
view: vpnsession_table__metrics__timing_distribution__connection_health_no_signal_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: vpnsession_table__metrics__timing_distribution__connection_health_stable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: vpnsession_table__metrics__timing_distribution__connection_health_unstable_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: vpnsession_table__ping_info__experiments {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -51,13 +51,17 @@ SUM(IF(FORMAT_DATE('%m-%d', submission_date) BETWEEN '11-18' AND '12-15', dau, 0
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

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

@ -50,13 +50,17 @@ COALESCE(SUM(ad_click), 0) AS search_forecasting_ad_clicks,
)
AS m
WHERE m.submission_date BETWEEN
WHERE
m.submission_date
BETWEEN
COALESCE(
SAFE_CAST(
{% date_start submission_date %} AS DATE
) AND
), CURRENT_DATE()) AND
COALESCE(
SAFE_CAST(
{% date_end submission_date %} AS DATE
)
), CURRENT_DATE())
GROUP BY
client_id,

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'active_hours'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
add_an_image_to_pdf_with_alt_text_rollout.metric: 'uri_count'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'ad_clicks'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'retained'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'qualified_cumulative_days_of_use'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'search_count'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'ad_clicks'
add_an_image_to_pdf_with_alt_text_rollout.metric: 'days_of_use'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'days_of_use'
add_an_image_to_pdf_with_alt_text_rollout.metric: 'search_count'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'active_hours'
add_an_image_to_pdf_with_alt_text_rollout.metric: 'qualified_cumulative_days_of_use'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'active_hours'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
address_autofill_desktop_pref_beta_rollout.metric: 'uri_count'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'retained'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'search_count'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_beta_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_beta_rollout.metric: 'search_count'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'active_hours'
address_autofill_desktop_pref_beta_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'active_hours'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
address_autofill_desktop_pref_nightly_rollout.metric: 'uri_count'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'retained'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'search_count'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_nightly_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_nightly_rollout.metric: 'search_count'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'active_hours'
address_autofill_desktop_pref_nightly_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'active_hours'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
address_autofill_desktop_pref_release_rollout.metric: 'uri_count'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
address_autofill_desktop_pref_release_rollout.metric: 'retained'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'search_count'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_release_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_release_rollout.metric: 'search_count'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'active_hours'
address_autofill_desktop_pref_release_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 30
col: 12

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

@ -43,8 +43,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Ios Daily Active Users V2
name: Firefox Ios Daily Active Users V2_sum
- title: Fenix Daily Active Users V2
name: Fenix Daily Active Users V2_sum
note_state: expanded
note_display: above
note_text: Sum
@ -59,7 +59,7 @@
all_browsers_dau.branch
]
filters:
all_browsers_dau.metric: 'firefox_ios_daily_active_users_v2'
all_browsers_dau.metric: 'fenix_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 0
col: 12
@ -74,39 +74,6 @@
listen:
Date: all_browsers_dau.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Focus Ios Daily Active Users V2
name: Focus Ios Daily Active Users V2_sum
note_state: expanded
note_display: above
note_text: Sum
explore: all_browsers_dau
type: looker_line
fields: [
all_browsers_dau.submission_date,
all_browsers_dau.branch,
all_browsers_dau.point
]
pivots: [
all_browsers_dau.branch
]
filters:
all_browsers_dau.metric: 'focus_ios_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 10
col: 0
width: 12
height: 8
field_x: all_browsers_dau.submission_date
field_y: all_browsers_dau.point
log_scale: false
ci_lower: all_browsers_dau.lower
ci_upper: all_browsers_dau.upper
show_grid: true
listen:
Date: all_browsers_dau.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Desktop Daily Active Users V2
@ -128,7 +95,7 @@
all_browsers_dau.metric: 'firefox_desktop_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 10
col: 12
col: 0
width: 12
height: 8
field_x: all_browsers_dau.submission_date
@ -142,8 +109,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Fenix Daily Active Users V2
name: Fenix Daily Active Users V2_sum
- title: Focus Ios Daily Active Users V2
name: Focus Ios Daily Active Users V2_sum
note_state: expanded
note_display: above
note_text: Sum
@ -158,7 +125,40 @@
all_browsers_dau.branch
]
filters:
all_browsers_dau.metric: 'fenix_daily_active_users_v2'
all_browsers_dau.metric: 'focus_ios_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 10
col: 12
width: 12
height: 8
field_x: all_browsers_dau.submission_date
field_y: all_browsers_dau.point
log_scale: false
ci_lower: all_browsers_dau.lower
ci_upper: all_browsers_dau.upper
show_grid: true
listen:
Date: all_browsers_dau.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Ios Daily Active Users V2
name: Firefox Ios Daily Active Users V2_sum
note_state: expanded
note_display: above
note_text: Sum
explore: all_browsers_dau
type: looker_line
fields: [
all_browsers_dau.submission_date,
all_browsers_dau.branch,
all_browsers_dau.point
]
pivots: [
all_browsers_dau.branch
]
filters:
all_browsers_dau.metric: 'firefox_ios_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 20
col: 0

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

@ -10,6 +10,108 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'active_hours'
android_add_ons_extension_process.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'uri_count'
android_add_ons_extension_process.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'ad_clicks'
android_add_ons_extension_process.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Performance Page Non Blank Paint
name: Performance Page Non Blank Paint_percentile
note_state: expanded
@ -30,7 +132,112 @@
filters:
android_add_ons_extension_process.metric: 'performance_page_non_blank_paint'
android_add_ons_extension_process.statistic: percentile
row: 0
row: 10
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
Percentile: android_add_ons_extension_process.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'retained'
android_add_ons_extension_process.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'days_of_use'
android_add_ons_extension_process.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Storage Stats App Bytes
name: Storage Stats App Bytes_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: android_add_ons_extension_process
type: "ci-line-chart"
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.upper,
android_add_ons_extension_process.lower,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'storage_stats_app_bytes'
android_add_ons_extension_process.statistic: percentile
row: 30
col: 0
width: 12
height: 8
@ -65,7 +272,7 @@
filters:
android_add_ons_extension_process.metric: 'tagged_sap_searches'
android_add_ons_extension_process.statistic: mean
row: 0
row: 30
col: 12
width: 12
height: 8
@ -78,148 +285,6 @@
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'uri_count'
android_add_ons_extension_process.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'retained'
android_add_ons_extension_process.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Storage Stats Data Dir Bytes
name: Storage Stats Data Dir Bytes_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: android_add_ons_extension_process
type: "ci-line-chart"
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.upper,
android_add_ons_extension_process.lower,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'storage_stats_data_dir_bytes'
android_add_ons_extension_process.statistic: percentile
row: 20
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
Percentile: android_add_ons_extension_process.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Storage Stats App Bytes
name: Storage Stats App Bytes_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: android_add_ons_extension_process
type: "ci-line-chart"
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.upper,
android_add_ons_extension_process.lower,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'storage_stats_app_bytes'
android_add_ons_extension_process.statistic: percentile
row: 20
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
Percentile: android_add_ons_extension_process.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -241,7 +306,7 @@
filters:
android_add_ons_extension_process.metric: 'search_count'
android_add_ons_extension_process.statistic: mean
row: 30
row: 40
col: 0
width: 12
height: 8
@ -254,40 +319,6 @@
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'ad_clicks'
android_add_ons_extension_process.statistic: mean
row: 30
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -312,7 +343,7 @@
android_add_ons_extension_process.metric: 'storage_stats_cache_bytes'
android_add_ons_extension_process.statistic: percentile
row: 40
col: 0
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
@ -328,58 +359,26 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Storage Stats Data Dir Bytes
name: Storage Stats Data Dir Bytes_percentile
note_state: expanded
note_display: above
note_text: Mean
note_text: Percentile
explore: android_add_ons_extension_process
type: looker_line
type: "ci-line-chart"
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.upper,
android_add_ons_extension_process.lower,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'days_of_use'
android_add_ons_extension_process.statistic: mean
row: 40
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process.submission_date
field_y: android_add_ons_extension_process.point
log_scale: false
ci_lower: android_add_ons_extension_process.lower
ci_upper: android_add_ons_extension_process.upper
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process
type: looker_line
fields: [
android_add_ons_extension_process.submission_date,
android_add_ons_extension_process.branch,
android_add_ons_extension_process.point
]
pivots: [
android_add_ons_extension_process.branch
]
filters:
android_add_ons_extension_process.metric: 'active_hours'
android_add_ons_extension_process.statistic: mean
android_add_ons_extension_process.metric: 'storage_stats_data_dir_bytes'
android_add_ons_extension_process.statistic: percentile
row: 50
col: 0
width: 12
@ -392,6 +391,7 @@
show_grid: true
listen:
Date: android_add_ons_extension_process.submission_date
Percentile: android_add_ons_extension_process.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"

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

@ -10,45 +10,8 @@
preferred_viewer: dashboards-next
elements:
- title: Performance Page Non Blank Paint
name: Performance Page Non Blank Paint_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: android_add_ons_extension_process_beta
type: "ci-line-chart"
fields: [
android_add_ons_extension_process_beta.submission_date,
android_add_ons_extension_process_beta.branch,
android_add_ons_extension_process_beta.upper,
android_add_ons_extension_process_beta.lower,
android_add_ons_extension_process_beta.point
]
pivots: [
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'performance_page_non_blank_paint'
android_add_ons_extension_process_beta.statistic: percentile
row: 0
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_beta.submission_date
field_y: android_add_ons_extension_process_beta.point
log_scale: false
ci_lower: android_add_ons_extension_process_beta.lower
ci_upper: android_add_ons_extension_process_beta.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_beta.submission_date
Percentile: android_add_ons_extension_process_beta.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
@ -63,10 +26,10 @@
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'tagged_sap_searches'
android_add_ons_extension_process_beta.metric: 'active_hours'
android_add_ons_extension_process_beta.statistic: mean
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_beta.submission_date
@ -99,41 +62,7 @@
filters:
android_add_ons_extension_process_beta.metric: 'uri_count'
android_add_ons_extension_process_beta.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_beta.submission_date
field_y: android_add_ons_extension_process_beta.point
log_scale: false
ci_lower: android_add_ons_extension_process_beta.lower
ci_upper: android_add_ons_extension_process_beta.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_beta
type: looker_line
fields: [
android_add_ons_extension_process_beta.submission_date,
android_add_ons_extension_process_beta.branch,
android_add_ons_extension_process_beta.point
]
pivots: [
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'retained'
android_add_ons_extension_process_beta.statistic: mean
row: 10
row: 0
col: 12
width: 12
height: 8
@ -146,40 +75,6 @@
listen:
Date: android_add_ons_extension_process_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_beta
type: looker_line
fields: [
android_add_ons_extension_process_beta.submission_date,
android_add_ons_extension_process_beta.branch,
android_add_ons_extension_process_beta.point
]
pivots: [
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'search_count'
android_add_ons_extension_process_beta.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_beta.submission_date
field_y: android_add_ons_extension_process_beta.point
log_scale: false
ci_lower: android_add_ons_extension_process_beta.lower
ci_upper: android_add_ons_extension_process_beta.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -201,7 +96,43 @@
filters:
android_add_ons_extension_process_beta.metric: 'ad_clicks'
android_add_ons_extension_process_beta.statistic: mean
row: 20
row: 10
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_beta.submission_date
field_y: android_add_ons_extension_process_beta.point
log_scale: false
ci_lower: android_add_ons_extension_process_beta.lower
ci_upper: android_add_ons_extension_process_beta.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Performance Page Non Blank Paint
name: Performance Page Non Blank Paint_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: android_add_ons_extension_process_beta
type: "ci-line-chart"
fields: [
android_add_ons_extension_process_beta.submission_date,
android_add_ons_extension_process_beta.branch,
android_add_ons_extension_process_beta.upper,
android_add_ons_extension_process_beta.lower,
android_add_ons_extension_process_beta.point
]
pivots: [
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'performance_page_non_blank_paint'
android_add_ons_extension_process_beta.statistic: percentile
row: 10
col: 12
width: 12
height: 8
@ -211,6 +142,41 @@
ci_lower: android_add_ons_extension_process_beta.lower
ci_upper: android_add_ons_extension_process_beta.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_beta.submission_date
Percentile: android_add_ons_extension_process_beta.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_beta
type: looker_line
fields: [
android_add_ons_extension_process_beta.submission_date,
android_add_ons_extension_process_beta.branch,
android_add_ons_extension_process_beta.point
]
pivots: [
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'retained'
android_add_ons_extension_process_beta.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_beta.submission_date
field_y: android_add_ons_extension_process_beta.point
log_scale: false
ci_lower: android_add_ons_extension_process_beta.lower
ci_upper: android_add_ons_extension_process_beta.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_beta.submission_date
@ -235,6 +201,40 @@
filters:
android_add_ons_extension_process_beta.metric: 'days_of_use'
android_add_ons_extension_process_beta.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process_beta.submission_date
field_y: android_add_ons_extension_process_beta.point
log_scale: false
ci_lower: android_add_ons_extension_process_beta.lower
ci_upper: android_add_ons_extension_process_beta.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_beta
type: looker_line
fields: [
android_add_ons_extension_process_beta.submission_date,
android_add_ons_extension_process_beta.branch,
android_add_ons_extension_process_beta.point
]
pivots: [
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'tagged_sap_searches'
android_add_ons_extension_process_beta.statistic: mean
row: 30
col: 0
width: 12
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
android_add_ons_extension_process_beta.branch
]
filters:
android_add_ons_extension_process_beta.metric: 'active_hours'
android_add_ons_extension_process_beta.metric: 'search_count'
android_add_ons_extension_process_beta.statistic: mean
row: 30
col: 12

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

@ -10,45 +10,8 @@
preferred_viewer: dashboards-next
elements:
- title: Performance Page Non Blank Paint
name: Performance Page Non Blank Paint_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: android_add_ons_extension_process_release_rollout
type: "ci-line-chart"
fields: [
android_add_ons_extension_process_release_rollout.submission_date,
android_add_ons_extension_process_release_rollout.branch,
android_add_ons_extension_process_release_rollout.upper,
android_add_ons_extension_process_release_rollout.lower,
android_add_ons_extension_process_release_rollout.point
]
pivots: [
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'performance_page_non_blank_paint'
android_add_ons_extension_process_release_rollout.statistic: percentile
row: 0
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_release_rollout.submission_date
field_y: android_add_ons_extension_process_release_rollout.point
log_scale: false
ci_lower: android_add_ons_extension_process_release_rollout.lower
ci_upper: android_add_ons_extension_process_release_rollout.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
Percentile: android_add_ons_extension_process_release_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
@ -63,10 +26,10 @@
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'tagged_sap_searches'
android_add_ons_extension_process_release_rollout.metric: 'active_hours'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_release_rollout.submission_date
@ -99,41 +62,7 @@
filters:
android_add_ons_extension_process_release_rollout.metric: 'uri_count'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_release_rollout.submission_date
field_y: android_add_ons_extension_process_release_rollout.point
log_scale: false
ci_lower: android_add_ons_extension_process_release_rollout.lower
ci_upper: android_add_ons_extension_process_release_rollout.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_release_rollout
type: looker_line
fields: [
android_add_ons_extension_process_release_rollout.submission_date,
android_add_ons_extension_process_release_rollout.branch,
android_add_ons_extension_process_release_rollout.point
]
pivots: [
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'retained'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 10
row: 0
col: 12
width: 12
height: 8
@ -146,40 +75,6 @@
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_release_rollout
type: looker_line
fields: [
android_add_ons_extension_process_release_rollout.submission_date,
android_add_ons_extension_process_release_rollout.branch,
android_add_ons_extension_process_release_rollout.point
]
pivots: [
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'search_count'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_release_rollout.submission_date
field_y: android_add_ons_extension_process_release_rollout.point
log_scale: false
ci_lower: android_add_ons_extension_process_release_rollout.lower
ci_upper: android_add_ons_extension_process_release_rollout.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -201,7 +96,43 @@
filters:
android_add_ons_extension_process_release_rollout.metric: 'ad_clicks'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 20
row: 10
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_release_rollout.submission_date
field_y: android_add_ons_extension_process_release_rollout.point
log_scale: false
ci_lower: android_add_ons_extension_process_release_rollout.lower
ci_upper: android_add_ons_extension_process_release_rollout.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Performance Page Non Blank Paint
name: Performance Page Non Blank Paint_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: android_add_ons_extension_process_release_rollout
type: "ci-line-chart"
fields: [
android_add_ons_extension_process_release_rollout.submission_date,
android_add_ons_extension_process_release_rollout.branch,
android_add_ons_extension_process_release_rollout.upper,
android_add_ons_extension_process_release_rollout.lower,
android_add_ons_extension_process_release_rollout.point
]
pivots: [
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'performance_page_non_blank_paint'
android_add_ons_extension_process_release_rollout.statistic: percentile
row: 10
col: 12
width: 12
height: 8
@ -211,6 +142,41 @@
ci_lower: android_add_ons_extension_process_release_rollout.lower
ci_upper: android_add_ons_extension_process_release_rollout.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
Percentile: android_add_ons_extension_process_release_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_release_rollout
type: looker_line
fields: [
android_add_ons_extension_process_release_rollout.submission_date,
android_add_ons_extension_process_release_rollout.branch,
android_add_ons_extension_process_release_rollout.point
]
pivots: [
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'retained'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_add_ons_extension_process_release_rollout.submission_date
field_y: android_add_ons_extension_process_release_rollout.point
log_scale: false
ci_lower: android_add_ons_extension_process_release_rollout.lower
ci_upper: android_add_ons_extension_process_release_rollout.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
@ -235,6 +201,40 @@
filters:
android_add_ons_extension_process_release_rollout.metric: 'days_of_use'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: android_add_ons_extension_process_release_rollout.submission_date
field_y: android_add_ons_extension_process_release_rollout.point
log_scale: false
ci_lower: android_add_ons_extension_process_release_rollout.lower
ci_upper: android_add_ons_extension_process_release_rollout.upper
show_grid: true
listen:
Date: android_add_ons_extension_process_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_add_ons_extension_process_release_rollout
type: looker_line
fields: [
android_add_ons_extension_process_release_rollout.submission_date,
android_add_ons_extension_process_release_rollout.branch,
android_add_ons_extension_process_release_rollout.point
]
pivots: [
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'tagged_sap_searches'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 30
col: 0
width: 12
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
android_add_ons_extension_process_release_rollout.branch
]
filters:
android_add_ons_extension_process_release_rollout.metric: 'active_hours'
android_add_ons_extension_process_release_rollout.metric: 'search_count'
android_add_ons_extension_process_release_rollout.statistic: mean
row: 30
col: 12

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

@ -10,8 +10,8 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
@ -26,7 +26,7 @@
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'tagged_sap_searches'
android_default_toolbar_placement_treatment_a_rollout.metric: 'active_hours'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 0
col: 0
@ -75,6 +75,40 @@
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'ad_clicks'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -97,40 +131,6 @@
android_default_toolbar_placement_treatment_a_rollout.metric: 'retained'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'search_count'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
@ -143,40 +143,6 @@
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'ad_clicks'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -199,6 +165,40 @@
android_default_toolbar_placement_treatment_a_rollout.metric: 'days_of_use'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'tagged_sap_searches'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -214,8 +214,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -230,7 +230,7 @@
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'active_hours'
android_default_toolbar_placement_treatment_a_rollout.metric: 'search_count'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 30
col: 0

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: awesome_bar_result_menu_rollout_phase_1
type: looker_line
fields: [
awesome_bar_result_menu_rollout_phase_1.submission_date,
awesome_bar_result_menu_rollout_phase_1.branch,
awesome_bar_result_menu_rollout_phase_1.point
]
pivots: [
awesome_bar_result_menu_rollout_phase_1.branch
]
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'active_hours'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: awesome_bar_result_menu_rollout_phase_1.submission_date
field_y: awesome_bar_result_menu_rollout_phase_1.point
log_scale: false
ci_lower: awesome_bar_result_menu_rollout_phase_1.lower
ci_upper: awesome_bar_result_menu_rollout_phase_1.upper
show_grid: true
listen:
Date: awesome_bar_result_menu_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
awesome_bar_result_menu_rollout_phase_1.metric: 'uri_count'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: awesome_bar_result_menu_rollout_phase_1.submission_date
field_y: awesome_bar_result_menu_rollout_phase_1.point
log_scale: false
ci_lower: awesome_bar_result_menu_rollout_phase_1.lower
ci_upper: awesome_bar_result_menu_rollout_phase_1.upper
show_grid: true
listen:
Date: awesome_bar_result_menu_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: awesome_bar_result_menu_rollout_phase_1
type: looker_line
fields: [
awesome_bar_result_menu_rollout_phase_1.submission_date,
awesome_bar_result_menu_rollout_phase_1.branch,
awesome_bar_result_menu_rollout_phase_1.point
]
pivots: [
awesome_bar_result_menu_rollout_phase_1.branch
]
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'ad_clicks'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'retained'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: awesome_bar_result_menu_rollout_phase_1.submission_date
field_y: awesome_bar_result_menu_rollout_phase_1.point
log_scale: false
ci_lower: awesome_bar_result_menu_rollout_phase_1.lower
ci_upper: awesome_bar_result_menu_rollout_phase_1.upper
show_grid: true
listen:
Date: awesome_bar_result_menu_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: awesome_bar_result_menu_rollout_phase_1
type: looker_line
fields: [
awesome_bar_result_menu_rollout_phase_1.submission_date,
awesome_bar_result_menu_rollout_phase_1.branch,
awesome_bar_result_menu_rollout_phase_1.point
]
pivots: [
awesome_bar_result_menu_rollout_phase_1.branch
]
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'qualified_cumulative_days_of_use'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: awesome_bar_result_menu_rollout_phase_1.submission_date
field_y: awesome_bar_result_menu_rollout_phase_1.point
log_scale: false
ci_lower: awesome_bar_result_menu_rollout_phase_1.lower
ci_upper: awesome_bar_result_menu_rollout_phase_1.upper
show_grid: true
listen:
Date: awesome_bar_result_menu_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: awesome_bar_result_menu_rollout_phase_1
type: looker_line
fields: [
awesome_bar_result_menu_rollout_phase_1.submission_date,
awesome_bar_result_menu_rollout_phase_1.branch,
awesome_bar_result_menu_rollout_phase_1.point
]
pivots: [
awesome_bar_result_menu_rollout_phase_1.branch
]
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'search_count'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
awesome_bar_result_menu_rollout_phase_1.branch
]
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'ad_clicks'
awesome_bar_result_menu_rollout_phase_1.metric: 'days_of_use'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
awesome_bar_result_menu_rollout_phase_1.branch
]
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'days_of_use'
awesome_bar_result_menu_rollout_phase_1.metric: 'search_count'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
awesome_bar_result_menu_rollout_phase_1.branch
]
filters:
awesome_bar_result_menu_rollout_phase_1.metric: 'active_hours'
awesome_bar_result_menu_rollout_phase_1.metric: 'qualified_cumulative_days_of_use'
awesome_bar_result_menu_rollout_phase_1.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'uri_count'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'uri_count'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'uri_count'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import
type: looker_line
fields: [
csv_import.submission_date,
csv_import.branch,
csv_import.point
]
pivots: [
csv_import.branch
]
filters:
csv_import.metric: 'active_hours'
csv_import.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: csv_import.submission_date
field_y: csv_import.point
log_scale: false
ci_lower: csv_import.lower
ci_upper: csv_import.upper
show_grid: true
listen:
Date: csv_import.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
csv_import.metric: 'uri_count'
csv_import.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: csv_import.submission_date
field_y: csv_import.point
log_scale: false
ci_lower: csv_import.lower
ci_upper: csv_import.upper
show_grid: true
listen:
Date: csv_import.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import
type: looker_line
fields: [
csv_import.submission_date,
csv_import.branch,
csv_import.point
]
pivots: [
csv_import.branch
]
filters:
csv_import.metric: 'ad_clicks'
csv_import.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
csv_import.metric: 'retained'
csv_import.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: csv_import.submission_date
field_y: csv_import.point
log_scale: false
ci_lower: csv_import.lower
ci_upper: csv_import.upper
show_grid: true
listen:
Date: csv_import.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import
type: looker_line
fields: [
csv_import.submission_date,
csv_import.branch,
csv_import.point
]
pivots: [
csv_import.branch
]
filters:
csv_import.metric: 'qualified_cumulative_days_of_use'
csv_import.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: csv_import.submission_date
field_y: csv_import.point
log_scale: false
ci_lower: csv_import.lower
ci_upper: csv_import.upper
show_grid: true
listen:
Date: csv_import.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import
type: looker_line
fields: [
csv_import.submission_date,
csv_import.branch,
csv_import.point
]
pivots: [
csv_import.branch
]
filters:
csv_import.metric: 'search_count'
csv_import.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
csv_import.branch
]
filters:
csv_import.metric: 'ad_clicks'
csv_import.metric: 'days_of_use'
csv_import.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
csv_import.branch
]
filters:
csv_import.metric: 'days_of_use'
csv_import.metric: 'search_count'
csv_import.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
csv_import.branch
]
filters:
csv_import.metric: 'active_hours'
csv_import.metric: 'qualified_cumulative_days_of_use'
csv_import.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_beta_rollout
type: looker_line
fields: [
csv_import_beta_rollout.submission_date,
csv_import_beta_rollout.branch,
csv_import_beta_rollout.point
]
pivots: [
csv_import_beta_rollout.branch
]
filters:
csv_import_beta_rollout.metric: 'active_hours'
csv_import_beta_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: csv_import_beta_rollout.submission_date
field_y: csv_import_beta_rollout.point
log_scale: false
ci_lower: csv_import_beta_rollout.lower
ci_upper: csv_import_beta_rollout.upper
show_grid: true
listen:
Date: csv_import_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
csv_import_beta_rollout.metric: 'uri_count'
csv_import_beta_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: csv_import_beta_rollout.submission_date
field_y: csv_import_beta_rollout.point
log_scale: false
ci_lower: csv_import_beta_rollout.lower
ci_upper: csv_import_beta_rollout.upper
show_grid: true
listen:
Date: csv_import_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_beta_rollout
type: looker_line
fields: [
csv_import_beta_rollout.submission_date,
csv_import_beta_rollout.branch,
csv_import_beta_rollout.point
]
pivots: [
csv_import_beta_rollout.branch
]
filters:
csv_import_beta_rollout.metric: 'ad_clicks'
csv_import_beta_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
csv_import_beta_rollout.metric: 'retained'
csv_import_beta_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: csv_import_beta_rollout.submission_date
field_y: csv_import_beta_rollout.point
log_scale: false
ci_lower: csv_import_beta_rollout.lower
ci_upper: csv_import_beta_rollout.upper
show_grid: true
listen:
Date: csv_import_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_beta_rollout
type: looker_line
fields: [
csv_import_beta_rollout.submission_date,
csv_import_beta_rollout.branch,
csv_import_beta_rollout.point
]
pivots: [
csv_import_beta_rollout.branch
]
filters:
csv_import_beta_rollout.metric: 'qualified_cumulative_days_of_use'
csv_import_beta_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: csv_import_beta_rollout.submission_date
field_y: csv_import_beta_rollout.point
log_scale: false
ci_lower: csv_import_beta_rollout.lower
ci_upper: csv_import_beta_rollout.upper
show_grid: true
listen:
Date: csv_import_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_beta_rollout
type: looker_line
fields: [
csv_import_beta_rollout.submission_date,
csv_import_beta_rollout.branch,
csv_import_beta_rollout.point
]
pivots: [
csv_import_beta_rollout.branch
]
filters:
csv_import_beta_rollout.metric: 'search_count'
csv_import_beta_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
csv_import_beta_rollout.branch
]
filters:
csv_import_beta_rollout.metric: 'ad_clicks'
csv_import_beta_rollout.metric: 'days_of_use'
csv_import_beta_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
csv_import_beta_rollout.branch
]
filters:
csv_import_beta_rollout.metric: 'days_of_use'
csv_import_beta_rollout.metric: 'search_count'
csv_import_beta_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
csv_import_beta_rollout.branch
]
filters:
csv_import_beta_rollout.metric: 'active_hours'
csv_import_beta_rollout.metric: 'qualified_cumulative_days_of_use'
csv_import_beta_rollout.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_release_rollout
type: looker_line
fields: [
csv_import_release_rollout.submission_date,
csv_import_release_rollout.branch,
csv_import_release_rollout.point
]
pivots: [
csv_import_release_rollout.branch
]
filters:
csv_import_release_rollout.metric: 'active_hours'
csv_import_release_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: csv_import_release_rollout.submission_date
field_y: csv_import_release_rollout.point
log_scale: false
ci_lower: csv_import_release_rollout.lower
ci_upper: csv_import_release_rollout.upper
show_grid: true
listen:
Date: csv_import_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
csv_import_release_rollout.metric: 'uri_count'
csv_import_release_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: csv_import_release_rollout.submission_date
field_y: csv_import_release_rollout.point
log_scale: false
ci_lower: csv_import_release_rollout.lower
ci_upper: csv_import_release_rollout.upper
show_grid: true
listen:
Date: csv_import_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_release_rollout
type: looker_line
fields: [
csv_import_release_rollout.submission_date,
csv_import_release_rollout.branch,
csv_import_release_rollout.point
]
pivots: [
csv_import_release_rollout.branch
]
filters:
csv_import_release_rollout.metric: 'ad_clicks'
csv_import_release_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
csv_import_release_rollout.metric: 'retained'
csv_import_release_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: csv_import_release_rollout.submission_date
field_y: csv_import_release_rollout.point
log_scale: false
ci_lower: csv_import_release_rollout.lower
ci_upper: csv_import_release_rollout.upper
show_grid: true
listen:
Date: csv_import_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_release_rollout
type: looker_line
fields: [
csv_import_release_rollout.submission_date,
csv_import_release_rollout.branch,
csv_import_release_rollout.point
]
pivots: [
csv_import_release_rollout.branch
]
filters:
csv_import_release_rollout.metric: 'qualified_cumulative_days_of_use'
csv_import_release_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: csv_import_release_rollout.submission_date
field_y: csv_import_release_rollout.point
log_scale: false
ci_lower: csv_import_release_rollout.lower
ci_upper: csv_import_release_rollout.upper
show_grid: true
listen:
Date: csv_import_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: csv_import_release_rollout
type: looker_line
fields: [
csv_import_release_rollout.submission_date,
csv_import_release_rollout.branch,
csv_import_release_rollout.point
]
pivots: [
csv_import_release_rollout.branch
]
filters:
csv_import_release_rollout.metric: 'search_count'
csv_import_release_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
csv_import_release_rollout.branch
]
filters:
csv_import_release_rollout.metric: 'ad_clicks'
csv_import_release_rollout.metric: 'days_of_use'
csv_import_release_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
csv_import_release_rollout.branch
]
filters:
csv_import_release_rollout.metric: 'days_of_use'
csv_import_release_rollout.metric: 'search_count'
csv_import_release_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
csv_import_release_rollout.branch
]
filters:
csv_import_release_rollout.metric: 'active_hours'
csv_import_release_rollout.metric: 'qualified_cumulative_days_of_use'
csv_import_release_rollout.statistic: mean
row: 30
col: 12

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

@ -10,39 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Kpi Forecast
name: Kpi Forecast_mean
note_state: expanded
note_display: above
note_text: Mean
explore: desktop_dau
type: looker_line
fields: [
desktop_dau.submission_date,
desktop_dau.branch,
desktop_dau.point
]
pivots: [
desktop_dau.branch
]
filters:
desktop_dau.metric: 'kpi_forecast'
desktop_dau.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: desktop_dau.submission_date
field_y: desktop_dau.point
log_scale: false
ci_lower: desktop_dau.lower
ci_upper: desktop_dau.upper
show_grid: true
listen:
Date: desktop_dau.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Daily Active Users V2
name: Daily Active Users V2_sum
note_state: expanded
@ -62,6 +29,39 @@
desktop_dau.metric: 'daily_active_users_v2'
desktop_dau.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: desktop_dau.submission_date
field_y: desktop_dau.point
log_scale: false
ci_lower: desktop_dau.lower
ci_upper: desktop_dau.upper
show_grid: true
listen:
Date: desktop_dau.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Kpi Forecast
name: Kpi Forecast_mean
note_state: expanded
note_display: above
note_text: Mean
explore: desktop_dau
type: looker_line
fields: [
desktop_dau.submission_date,
desktop_dau.branch,
desktop_dau.point
]
pivots: [
desktop_dau.branch
]
filters:
desktop_dau.metric: 'kpi_forecast'
desktop_dau.statistic: mean
row: 0
col: 12
width: 12
height: 8

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population.submission_date,
device_migration_q4_spotlights_remaining_population.branch,
device_migration_q4_spotlights_remaining_population.point
]
pivots: [
device_migration_q4_spotlights_remaining_population.branch
]
filters:
device_migration_q4_spotlights_remaining_population.metric: 'active_hours'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population.submission_date
field_y: device_migration_q4_spotlights_remaining_population.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population.lower
ci_upper: device_migration_q4_spotlights_remaining_population.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
device_migration_q4_spotlights_remaining_population.metric: 'uri_count'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population.submission_date
field_y: device_migration_q4_spotlights_remaining_population.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population.lower
ci_upper: device_migration_q4_spotlights_remaining_population.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population.submission_date,
device_migration_q4_spotlights_remaining_population.branch,
device_migration_q4_spotlights_remaining_population.point
]
pivots: [
device_migration_q4_spotlights_remaining_population.branch
]
filters:
device_migration_q4_spotlights_remaining_population.metric: 'ad_clicks'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
device_migration_q4_spotlights_remaining_population.metric: 'retained'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population.submission_date
field_y: device_migration_q4_spotlights_remaining_population.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population.lower
ci_upper: device_migration_q4_spotlights_remaining_population.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population.submission_date,
device_migration_q4_spotlights_remaining_population.branch,
device_migration_q4_spotlights_remaining_population.point
]
pivots: [
device_migration_q4_spotlights_remaining_population.branch
]
filters:
device_migration_q4_spotlights_remaining_population.metric: 'qualified_cumulative_days_of_use'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population.submission_date
field_y: device_migration_q4_spotlights_remaining_population.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population.lower
ci_upper: device_migration_q4_spotlights_remaining_population.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population.submission_date,
device_migration_q4_spotlights_remaining_population.branch,
device_migration_q4_spotlights_remaining_population.point
]
pivots: [
device_migration_q4_spotlights_remaining_population.branch
]
filters:
device_migration_q4_spotlights_remaining_population.metric: 'search_count'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
device_migration_q4_spotlights_remaining_population.branch
]
filters:
device_migration_q4_spotlights_remaining_population.metric: 'ad_clicks'
device_migration_q4_spotlights_remaining_population.metric: 'days_of_use'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
device_migration_q4_spotlights_remaining_population.branch
]
filters:
device_migration_q4_spotlights_remaining_population.metric: 'days_of_use'
device_migration_q4_spotlights_remaining_population.metric: 'search_count'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
device_migration_q4_spotlights_remaining_population.branch
]
filters:
device_migration_q4_spotlights_remaining_population.metric: 'active_hours'
device_migration_q4_spotlights_remaining_population.metric: 'qualified_cumulative_days_of_use'
device_migration_q4_spotlights_remaining_population.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population_esr
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population_esr.submission_date,
device_migration_q4_spotlights_remaining_population_esr.branch,
device_migration_q4_spotlights_remaining_population_esr.point
]
pivots: [
device_migration_q4_spotlights_remaining_population_esr.branch
]
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'active_hours'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population_esr.submission_date
field_y: device_migration_q4_spotlights_remaining_population_esr.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population_esr.lower
ci_upper: device_migration_q4_spotlights_remaining_population_esr.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population_esr.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
device_migration_q4_spotlights_remaining_population_esr.metric: 'uri_count'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population_esr.submission_date
field_y: device_migration_q4_spotlights_remaining_population_esr.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population_esr.lower
ci_upper: device_migration_q4_spotlights_remaining_population_esr.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population_esr.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population_esr
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population_esr.submission_date,
device_migration_q4_spotlights_remaining_population_esr.branch,
device_migration_q4_spotlights_remaining_population_esr.point
]
pivots: [
device_migration_q4_spotlights_remaining_population_esr.branch
]
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'ad_clicks'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'retained'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population_esr.submission_date
field_y: device_migration_q4_spotlights_remaining_population_esr.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population_esr.lower
ci_upper: device_migration_q4_spotlights_remaining_population_esr.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population_esr.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population_esr
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population_esr.submission_date,
device_migration_q4_spotlights_remaining_population_esr.branch,
device_migration_q4_spotlights_remaining_population_esr.point
]
pivots: [
device_migration_q4_spotlights_remaining_population_esr.branch
]
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'qualified_cumulative_days_of_use'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: device_migration_q4_spotlights_remaining_population_esr.submission_date
field_y: device_migration_q4_spotlights_remaining_population_esr.point
log_scale: false
ci_lower: device_migration_q4_spotlights_remaining_population_esr.lower
ci_upper: device_migration_q4_spotlights_remaining_population_esr.upper
show_grid: true
listen:
Date: device_migration_q4_spotlights_remaining_population_esr.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: device_migration_q4_spotlights_remaining_population_esr
type: looker_line
fields: [
device_migration_q4_spotlights_remaining_population_esr.submission_date,
device_migration_q4_spotlights_remaining_population_esr.branch,
device_migration_q4_spotlights_remaining_population_esr.point
]
pivots: [
device_migration_q4_spotlights_remaining_population_esr.branch
]
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'search_count'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
device_migration_q4_spotlights_remaining_population_esr.branch
]
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'ad_clicks'
device_migration_q4_spotlights_remaining_population_esr.metric: 'days_of_use'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
device_migration_q4_spotlights_remaining_population_esr.branch
]
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'days_of_use'
device_migration_q4_spotlights_remaining_population_esr.metric: 'search_count'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
device_migration_q4_spotlights_remaining_population_esr.branch
]
filters:
device_migration_q4_spotlights_remaining_population_esr.metric: 'active_hours'
device_migration_q4_spotlights_remaining_population_esr.metric: 'qualified_cumulative_days_of_use'
device_migration_q4_spotlights_remaining_population_esr.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: ech_roll_out
type: looker_line
fields: [
ech_roll_out.submission_date,
ech_roll_out.branch,
ech_roll_out.point
]
pivots: [
ech_roll_out.branch
]
filters:
ech_roll_out.metric: 'active_hours'
ech_roll_out.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: ech_roll_out.submission_date
field_y: ech_roll_out.point
log_scale: false
ci_lower: ech_roll_out.lower
ci_upper: ech_roll_out.upper
show_grid: true
listen:
Date: ech_roll_out.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
ech_roll_out.metric: 'uri_count'
ech_roll_out.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: ech_roll_out.submission_date
field_y: ech_roll_out.point
log_scale: false
ci_lower: ech_roll_out.lower
ci_upper: ech_roll_out.upper
show_grid: true
listen:
Date: ech_roll_out.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: ech_roll_out
type: looker_line
fields: [
ech_roll_out.submission_date,
ech_roll_out.branch,
ech_roll_out.point
]
pivots: [
ech_roll_out.branch
]
filters:
ech_roll_out.metric: 'ad_clicks'
ech_roll_out.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
ech_roll_out.metric: 'retained'
ech_roll_out.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: ech_roll_out.submission_date
field_y: ech_roll_out.point
log_scale: false
ci_lower: ech_roll_out.lower
ci_upper: ech_roll_out.upper
show_grid: true
listen:
Date: ech_roll_out.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: ech_roll_out
type: looker_line
fields: [
ech_roll_out.submission_date,
ech_roll_out.branch,
ech_roll_out.point
]
pivots: [
ech_roll_out.branch
]
filters:
ech_roll_out.metric: 'qualified_cumulative_days_of_use'
ech_roll_out.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: ech_roll_out.submission_date
field_y: ech_roll_out.point
log_scale: false
ci_lower: ech_roll_out.lower
ci_upper: ech_roll_out.upper
show_grid: true
listen:
Date: ech_roll_out.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: ech_roll_out
type: looker_line
fields: [
ech_roll_out.submission_date,
ech_roll_out.branch,
ech_roll_out.point
]
pivots: [
ech_roll_out.branch
]
filters:
ech_roll_out.metric: 'search_count'
ech_roll_out.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
ech_roll_out.branch
]
filters:
ech_roll_out.metric: 'ad_clicks'
ech_roll_out.metric: 'days_of_use'
ech_roll_out.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
ech_roll_out.branch
]
filters:
ech_roll_out.metric: 'days_of_use'
ech_roll_out.metric: 'search_count'
ech_roll_out.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
ech_roll_out.branch
]
filters:
ech_roll_out.metric: 'active_hours'
ech_roll_out.metric: 'qualified_cumulative_days_of_use'
ech_roll_out.statistic: mean
row: 30
col: 12

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

@ -10,8 +10,8 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
@ -26,7 +26,7 @@
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'tagged_sap_searches'
enable_activation_telemetry_android.metric: 'active_hours'
enable_activation_telemetry_android.statistic: mean
row: 0
col: 0
@ -75,6 +75,40 @@
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'ad_clicks'
enable_activation_telemetry_android.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -97,40 +131,6 @@
enable_activation_telemetry_android.metric: 'retained'
enable_activation_telemetry_android.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'search_count'
enable_activation_telemetry_android.statistic: mean
row: 10
col: 12
width: 12
height: 8
@ -143,40 +143,6 @@
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'ad_clicks'
enable_activation_telemetry_android.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -199,6 +165,40 @@
enable_activation_telemetry_android.metric: 'days_of_use'
enable_activation_telemetry_android.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'tagged_sap_searches'
enable_activation_telemetry_android.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -214,8 +214,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -230,7 +230,7 @@
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'active_hours'
enable_activation_telemetry_android.metric: 'search_count'
enable_activation_telemetry_android.statistic: mean
row: 30
col: 0

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'active_hours'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
extensions_migration_in_import_wizard_116_rollout.metric: 'uri_count'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'ad_clicks'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'retained'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'qualified_cumulative_days_of_use'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'search_count'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'ad_clicks'
extensions_migration_in_import_wizard_116_rollout.metric: 'days_of_use'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'days_of_use'
extensions_migration_in_import_wizard_116_rollout.metric: 'search_count'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'active_hours'
extensions_migration_in_import_wizard_116_rollout.metric: 'qualified_cumulative_days_of_use'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 30
col: 12

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

@ -10,111 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Ping Volume
name: Ping Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'ping_volume'
firefox_background_update.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Exception Rate
name: Exception Rate_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'exception_rate'
firefox_background_update.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Crash Volume
name: Crash Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'crash_volume'
firefox_background_update.statistic: sum
row: 10
col: 0
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Success Rate
name: Success Rate_mean
note_state: expanded
@ -133,42 +28,7 @@
filters:
firefox_background_update.metric: 'success_rate'
firefox_background_update.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Exception Volume
name: Exception Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'exception_volume'
firefox_background_update.statistic: sum
row: 20
row: 0
col: 0
width: 12
height: 8
@ -203,6 +63,146 @@
filters:
firefox_background_update.metric: 'client_volume'
firefox_background_update.statistic: sum
row: 0
col: 12
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Exception Volume
name: Exception Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'exception_volume'
firefox_background_update.statistic: sum
row: 10
col: 0
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Crash Volume
name: Crash Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'crash_volume'
firefox_background_update.statistic: sum
row: 10
col: 12
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Ping Volume
name: Ping Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'ping_volume'
firefox_background_update.statistic: sum
row: 20
col: 0
width: 12
height: 8
field_x: firefox_background_update.submission_date
field_y: firefox_background_update.point
log_scale: false
ci_lower: firefox_background_update.lower
ci_upper: firefox_background_update.upper
show_grid: true
listen:
Date: firefox_background_update.submission_date
Normalized Channel: firefox_background_update.normalized_channel
Windows Version: firefox_background_update.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Exception Rate
name: Exception Rate_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_background_update
type: looker_line
fields: [
firefox_background_update.submission_date,
firefox_background_update.branch,
firefox_background_update.point
]
pivots: [
firefox_background_update.branch
]
filters:
firefox_background_update.metric: 'exception_rate'
firefox_background_update.statistic: mean
row: 20
col: 12
width: 12
@ -271,15 +271,15 @@
- title: Windows Version
name: Windows Version
type: string_filter
default_value: 'Windows 7'
default_value: 'Windows 10'
allow_multiple_values: false
required: true
ui_config:
type: dropdown_menu
display: inline
options:
- 'Windows 7'
- 'Windows 10'
- 'Windows 7'
- 'Windows 8.1'
- 'Windows 8'
- 'Windows 11'

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

@ -10,76 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Lost Default Volume
name: Firefox Lost Default Volume_sum
note_state: expanded
@ -98,7 +28,7 @@
filters:
firefox_default_browser_agent.metric: 'firefox_lost_default_volume'
firefox_default_browser_agent.statistic: sum
row: 10
row: 0
col: 0
width: 12
height: 8
@ -133,7 +63,147 @@
filters:
firefox_default_browser_agent.metric: 'firefox_lost_default_volume'
firefox_default_browser_agent.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.statistic: sum
row: 10
col: 0
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: sum
row: 20
col: 0
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -168,76 +238,6 @@
filters:
firefox_default_browser_agent.metric: 'ping_volume'
firefox_default_browser_agent.statistic: sum
row: 20
col: 0
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.statistic: sum
row: 20
col: 12
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.statistic: mean
row: 30
col: 0
width: 12
@ -357,18 +357,18 @@
- title: Normalized Channel
name: Normalized Channel
type: string_filter
default_value: 'beta'
default_value: 'esr'
allow_multiple_values: false
required: true
ui_config:
type: dropdown_menu
display: inline
options:
- 'beta'
- 'esr'
- 'release'
- 'nightly'
- 'aurora'
- 'nightly'
- 'beta'
- 'default'
- 'nightly-pine'
- 'nightly-oak'

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

@ -26,7 +26,7 @@
firefox_install_demo.branch, firefox_install_demo.metric
]
filters:
firefox_install_demo.metric: '"install_volume_win7", "install_volume_win10", "install_volume_win8", "install_volume_win8_1"'
firefox_install_demo.metric: '"install_volume_win10", "install_volume_win7", "install_volume_win8_1", "install_volume_win8"'
firefox_install_demo.statistic: sum
row: 0
col: 0
@ -59,7 +59,7 @@
firefox_install_demo.branch, firefox_install_demo.metric
]
filters:
firefox_install_demo.metric: '"install_volume_win7", "install_volume_win10", "install_volume_win8", "install_volume_win8_1"'
firefox_install_demo.metric: '"install_volume_win10", "install_volume_win7", "install_volume_win8_1", "install_volume_win8"'
firefox_install_demo.statistic: mean
row: 0
col: 12

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

@ -10,39 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Large File Write
name: Large File Write_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_ios_health
type: looker_line
fields: [
firefox_ios_health.submission_date,
firefox_ios_health.branch,
firefox_ios_health.point
]
pivots: [
firefox_ios_health.branch
]
filters:
firefox_ios_health.metric: 'large_file_write'
firefox_ios_health.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_ios_health.submission_date
field_y: firefox_ios_health.point
log_scale: false
ci_lower: firefox_ios_health.lower
ci_upper: firefox_ios_health.upper
show_grid: true
listen:
Date: firefox_ios_health.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Dirty Startup
name: Dirty Startup_sum
note_state: expanded
@ -62,6 +29,39 @@
firefox_ios_health.metric: 'dirty_startup'
firefox_ios_health.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_ios_health.submission_date
field_y: firefox_ios_health.point
log_scale: false
ci_lower: firefox_ios_health.lower
ci_upper: firefox_ios_health.upper
show_grid: true
listen:
Date: firefox_ios_health.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Large File Write
name: Large File Write_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_ios_health
type: looker_line
fields: [
firefox_ios_health.submission_date,
firefox_ios_health.branch,
firefox_ios_health.point
]
pivots: [
firefox_ios_health.branch
]
filters:
firefox_ios_health.metric: 'large_file_write'
firefox_ios_health.statistic: sum
row: 0
col: 12
width: 12
height: 8

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

@ -10,8 +10,8 @@
preferred_viewer: dashboards-next
elements:
- title: Unexpected Data
name: Unexpected Data_sum
- title: Ping Volume By Ping Type
name: Ping Volume By Ping Type_sum
note_state: expanded
note_display: above
note_text: Sum
@ -26,7 +26,7 @@
firefox_messaging_system.branch, firefox_messaging_system.metric
]
filters:
firefox_messaging_system.metric: '"invalid_nested_data_volume", "unknown_keys_volume"'
firefox_messaging_system.metric: '"cfr_ping_volume", "infobar_ping_volume", "whats_new_panel_ping_volume", "moments_ping_volume", "other_ping_volume", "null_ping_volume", "spotlight_ping_volume"'
firefox_messaging_system.statistic: sum
row: 0
col: 0
@ -45,8 +45,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Ping Volume By Ping Type
name: Ping Volume By Ping Type_sum
- title: Unexpected Data
name: Unexpected Data_sum
note_state: expanded
note_display: above
note_text: Sum
@ -61,7 +61,7 @@
firefox_messaging_system.branch, firefox_messaging_system.metric
]
filters:
firefox_messaging_system.metric: '"spotlight_ping_volume", "infobar_ping_volume", "other_ping_volume", "moments_ping_volume", "null_ping_volume", "whats_new_panel_ping_volume", "cfr_ping_volume"'
firefox_messaging_system.metric: '"unknown_keys_volume", "invalid_nested_data_volume"'
firefox_messaging_system.statistic: sum
row: 0
col: 12
@ -276,16 +276,16 @@
- title: Normalized Channel
name: Normalized Channel
type: string_filter
default_value: 'aurora'
default_value: 'beta'
allow_multiple_values: false
required: true
ui_config:
type: dropdown_menu
display: inline
options:
- 'beta'
- 'aurora'
- 'nightly'
- 'beta'
- 'release'
- 'esr'
- 'Other'

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'active_hours'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'uri_count'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'ad_clicks'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'retained'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'search_count'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'ad_clicks'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'days_of_use'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'days_of_use'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'search_count'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'active_hours'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use'
fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.statistic: mean
row: 30
col: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'active_hours'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'uri_count'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'ad_clicks'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,74 +130,6 @@
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'retained'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
field_y: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
log_scale: false
ci_lower: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.lower
ci_upper: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.upper
show_grid: true
listen:
Date: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout
type: looker_line
fields: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.submission_date,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch,
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.point
]
pivots: [
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'search_count'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 10
col: 12
width: 12
@ -146,8 +146,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -162,7 +162,7 @@
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'ad_clicks'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'days_of_use'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 20
col: 0
@ -217,8 +217,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
- title: Search Count
name: Search Count_mean
note_state: expanded
note_display: above
note_text: Mean
@ -233,7 +233,7 @@
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'days_of_use'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'search_count'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 30
col: 0
@ -251,8 +251,8 @@
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
- title: Qualified Cumulative Days Of Use
name: Qualified Cumulative Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
@ -267,7 +267,7 @@
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.branch
]
filters:
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'active_hours'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use'
fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.statistic: mean
row: 30
col: 12

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

@ -45,43 +45,6 @@
Percentile: garbage_collection.parameter
Os: garbage_collection.os
active: "#3FE1B0"
defaults_version: 0
- title: Gc Ms
name: Gc Ms_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: garbage_collection
type: "ci-line-chart"
fields: [
garbage_collection.submission_date,
garbage_collection.branch,
garbage_collection.upper,
garbage_collection.lower,
garbage_collection.point
]
pivots: [
garbage_collection.branch
]
filters:
garbage_collection.metric: 'gc_ms'
garbage_collection.statistic: percentile
row: 0
col: 12
width: 12
height: 8
field_x: garbage_collection.submission_date
field_y: garbage_collection.point
log_scale: false
ci_lower: garbage_collection.lower
ci_upper: garbage_collection.upper
show_grid: true
listen:
Date: garbage_collection.submission_date
Percentile: garbage_collection.parameter
Os: garbage_collection.os
active: "#3FE1B0"
defaults_version: 0
- title: Gc Budget Overrun
@ -104,6 +67,43 @@
filters:
garbage_collection.metric: 'gc_budget_overrun'
garbage_collection.statistic: percentile
row: 0
col: 12
width: 12
height: 8
field_x: garbage_collection.submission_date
field_y: garbage_collection.point
log_scale: false
ci_lower: garbage_collection.lower
ci_upper: garbage_collection.upper
show_grid: true
listen:
Date: garbage_collection.submission_date
Percentile: garbage_collection.parameter
Os: garbage_collection.os
active: "#3FE1B0"
defaults_version: 0
- title: Gc Ms
name: Gc Ms_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: garbage_collection
type: "ci-line-chart"
fields: [
garbage_collection.submission_date,
garbage_collection.branch,
garbage_collection.upper,
garbage_collection.lower,
garbage_collection.point
]
pivots: [
garbage_collection.branch
]
filters:
garbage_collection.metric: 'gc_ms'
garbage_collection.statistic: percentile
row: 10
col: 0
width: 12
@ -211,16 +211,16 @@
- title: Os
name: Os
type: string_filter
default_value: 'Windows'
default_value: 'Mac'
allow_multiple_values: false
required: true
ui_config:
type: dropdown_menu
display: inline
options:
- 'Mac'
- 'Windows'
- 'Linux'
- 'Mac'
- 'Other'

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше