diff --git a/fenix/views/metric_definitions_active_users_aggregates_v1.view.lkml b/fenix/views/metric_definitions_active_users_aggregates_v1.view.lkml index c64255300..a2e1b9115 100644 --- a/fenix/views/metric_definitions_active_users_aggregates_v1.view.lkml +++ b/fenix/views/metric_definitions_active_users_aggregates_v1.view.lkml @@ -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, diff --git a/fenix/views/metric_definitions_baseline.view.lkml b/fenix/views/metric_definitions_baseline.view.lkml index 742c6b734..7e1a1be60 100644 --- a/fenix/views/metric_definitions_baseline.view.lkml +++ b/fenix/views/metric_definitions_baseline.view.lkml @@ -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 ;; diff --git a/fenix/views/metric_definitions_baseline_v2.view.lkml b/fenix/views/metric_definitions_baseline_v2.view.lkml index aefdfe603..4e83313ad 100644 --- a/fenix/views/metric_definitions_baseline_v2.view.lkml +++ b/fenix/views/metric_definitions_baseline_v2.view.lkml @@ -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 ;; diff --git a/fenix/views/metric_definitions_events.view.lkml b/fenix/views/metric_definitions_events.view.lkml index 6512c2bfe..09fbc549c 100644 --- a/fenix/views/metric_definitions_events.view.lkml +++ b/fenix/views/metric_definitions_events.view.lkml @@ -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 ;; diff --git a/fenix/views/metric_definitions_feature_usage_metrics_v1.view.lkml b/fenix/views/metric_definitions_feature_usage_metrics_v1.view.lkml index 4ec5be7e9..5c1f78d32 100644 --- a/fenix/views/metric_definitions_feature_usage_metrics_v1.view.lkml +++ b/fenix/views/metric_definitions_feature_usage_metrics_v1.view.lkml @@ -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, diff --git a/fenix/views/metric_definitions_metrics.view.lkml b/fenix/views/metric_definitions_metrics.view.lkml index 5d6a03a19..9fdbd9619 100644 --- a/fenix/views/metric_definitions_metrics.view.lkml +++ b/fenix/views/metric_definitions_metrics.view.lkml @@ -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 ;; diff --git a/fenix/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml b/fenix/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml index 03de0bb32..e9dc3973c 100644 --- a/fenix/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml +++ b/fenix/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml @@ -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 ;; diff --git a/fenix/views/metric_definitions_new_profile_activation.view.lkml b/fenix/views/metric_definitions_new_profile_activation.view.lkml index 6709c8e93..fca142ea9 100644 --- a/fenix/views/metric_definitions_new_profile_activation.view.lkml +++ b/fenix/views/metric_definitions_new_profile_activation.view.lkml @@ -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 ;; diff --git a/fenix/views/metric_definitions_special_onboarding_events.view.lkml b/fenix/views/metric_definitions_special_onboarding_events.view.lkml index a14c89ab3..8c114e951 100644 --- a/fenix/views/metric_definitions_special_onboarding_events.view.lkml +++ b/fenix/views/metric_definitions_special_onboarding_events.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_active_users_aggregates_v1.view.lkml b/firefox_desktop/views/metric_definitions_active_users_aggregates_v1.view.lkml index 15d9c95bf..316a584f4 100644 --- a/firefox_desktop/views/metric_definitions_active_users_aggregates_v1.view.lkml +++ b/firefox_desktop/views/metric_definitions_active_users_aggregates_v1.view.lkml @@ -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, diff --git a/firefox_desktop/views/metric_definitions_activity_stream_events.view.lkml b/firefox_desktop/views/metric_definitions_activity_stream_events.view.lkml index 03887db2c..6bb557bfd 100644 --- a/firefox_desktop/views/metric_definitions_activity_stream_events.view.lkml +++ b/firefox_desktop/views/metric_definitions_activity_stream_events.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_browser_launched_to_handle_events.view.lkml b/firefox_desktop/views/metric_definitions_browser_launched_to_handle_events.view.lkml index 423c329f2..573bfaa0a 100644 --- a/firefox_desktop/views/metric_definitions_browser_launched_to_handle_events.view.lkml +++ b/firefox_desktop/views/metric_definitions_browser_launched_to_handle_events.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_clients_daily.view.lkml b/firefox_desktop/views/metric_definitions_clients_daily.view.lkml index 5b13747e2..9186e3617 100644 --- a/firefox_desktop/views/metric_definitions_clients_daily.view.lkml +++ b/firefox_desktop/views/metric_definitions_clients_daily.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_clients_first_seen_28_days_later.view.lkml b/firefox_desktop/views/metric_definitions_clients_first_seen_28_days_later.view.lkml index 37514013c..2d0d947d9 100644 --- a/firefox_desktop/views/metric_definitions_clients_first_seen_28_days_later.view.lkml +++ b/firefox_desktop/views/metric_definitions_clients_first_seen_28_days_later.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_clients_first_seen_v2.view.lkml b/firefox_desktop/views/metric_definitions_clients_first_seen_v2.view.lkml index 65e46a77a..750aa88aa 100644 --- a/firefox_desktop/views/metric_definitions_clients_first_seen_v2.view.lkml +++ b/firefox_desktop/views/metric_definitions_clients_first_seen_v2.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_crash.view.lkml b/firefox_desktop/views/metric_definitions_crash.view.lkml index c43a24fdf..c8153e4b5 100644 --- a/firefox_desktop/views/metric_definitions_crash.view.lkml +++ b/firefox_desktop/views/metric_definitions_crash.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_desktop_cohort_daily_retention.view.lkml b/firefox_desktop/views/metric_definitions_desktop_cohort_daily_retention.view.lkml index c3474fda0..be6c84537 100644 --- a/firefox_desktop/views/metric_definitions_desktop_cohort_daily_retention.view.lkml +++ b/firefox_desktop/views/metric_definitions_desktop_cohort_daily_retention.view.lkml @@ -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, diff --git a/firefox_desktop/views/metric_definitions_events.view.lkml b/firefox_desktop/views/metric_definitions_events.view.lkml index 2a0582c1e..c748c47be 100644 --- a/firefox_desktop/views/metric_definitions_events.view.lkml +++ b/firefox_desktop/views/metric_definitions_events.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_events_memory.view.lkml b/firefox_desktop/views/metric_definitions_events_memory.view.lkml index 85ddaf65d..5ca3437a7 100644 --- a/firefox_desktop/views/metric_definitions_events_memory.view.lkml +++ b/firefox_desktop/views/metric_definitions_events_memory.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_main.view.lkml b/firefox_desktop/views/metric_definitions_main.view.lkml index 0f6a2b790..d457fae5a 100644 --- a/firefox_desktop/views/metric_definitions_main.view.lkml +++ b/firefox_desktop/views/metric_definitions_main.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_metrics.view.lkml b/firefox_desktop/views/metric_definitions_metrics.view.lkml index b1377dfc5..782c9e79b 100644 --- a/firefox_desktop/views/metric_definitions_metrics.view.lkml +++ b/firefox_desktop/views/metric_definitions_metrics.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_newtab_interactions.view.lkml b/firefox_desktop/views/metric_definitions_newtab_interactions.view.lkml index 6539a56a1..583dd4e6a 100644 --- a/firefox_desktop/views/metric_definitions_newtab_interactions.view.lkml +++ b/firefox_desktop/views/metric_definitions_newtab_interactions.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_newtab_visits.view.lkml b/firefox_desktop/views/metric_definitions_newtab_visits.view.lkml index 2821be723..3575a4877 100644 --- a/firefox_desktop/views/metric_definitions_newtab_visits.view.lkml +++ b/firefox_desktop/views/metric_definitions_newtab_visits.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_newtab_visits_topsite_tile_interactions.view.lkml b/firefox_desktop/views/metric_definitions_newtab_visits_topsite_tile_interactions.view.lkml index 801229c91..29c5e034e 100644 --- a/firefox_desktop/views/metric_definitions_newtab_visits_topsite_tile_interactions.view.lkml +++ b/firefox_desktop/views/metric_definitions_newtab_visits_topsite_tile_interactions.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_normandy_events.view.lkml b/firefox_desktop/views/metric_definitions_normandy_events.view.lkml index 9b93b906e..ae42b92ee 100644 --- a/firefox_desktop/views/metric_definitions_normandy_events.view.lkml +++ b/firefox_desktop/views/metric_definitions_normandy_events.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_search_clients_engines_sources_daily.view.lkml b/firefox_desktop/views/metric_definitions_search_clients_engines_sources_daily.view.lkml index add60a7a8..a24b01da7 100644 --- a/firefox_desktop/views/metric_definitions_search_clients_engines_sources_daily.view.lkml +++ b/firefox_desktop/views/metric_definitions_search_clients_engines_sources_daily.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metric_definitions_sponsored_tiles_clients_daily.view.lkml b/firefox_desktop/views/metric_definitions_sponsored_tiles_clients_daily.view.lkml index 737998d46..565e8b71b 100644 --- a/firefox_desktop/views/metric_definitions_sponsored_tiles_clients_daily.view.lkml +++ b/firefox_desktop/views/metric_definitions_sponsored_tiles_clients_daily.view.lkml @@ -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 ;; diff --git a/firefox_desktop/views/metrics.view.lkml b/firefox_desktop/views/metrics.view.lkml index 8dc383abe..7c5401a3f 100644 --- a/firefox_desktop/views/metrics.view.lkml +++ b/firefox_desktop/views/metrics.view.lkml @@ -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 diff --git a/firefox_desktop/views/metrics_table.view.lkml b/firefox_desktop/views/metrics_table.view.lkml index 6940c39c4..68538c79c 100644 --- a/firefox_desktop/views/metrics_table.view.lkml +++ b/firefox_desktop/views/metrics_table.view.lkml @@ -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 diff --git a/firefox_desktop/views/newtab_visits_table.view.lkml b/firefox_desktop/views/newtab_visits_table.view.lkml index 18179268f..352e73ae5 100644 --- a/firefox_desktop/views/newtab_visits_table.view.lkml +++ b/firefox_desktop/views/newtab_visits_table.view.lkml @@ -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 diff --git a/firefox_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml b/firefox_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml index 1b0c0df62..5ae3c2a37 100644 --- a/firefox_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml +++ b/firefox_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml @@ -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, diff --git a/firefox_ios/views/metric_definitions_appstore_funnel.view.lkml b/firefox_ios/views/metric_definitions_appstore_funnel.view.lkml index 2b95e4f1f..f26c46e1e 100644 --- a/firefox_ios/views/metric_definitions_appstore_funnel.view.lkml +++ b/firefox_ios/views/metric_definitions_appstore_funnel.view.lkml @@ -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, diff --git a/firefox_ios/views/metric_definitions_baseline.view.lkml b/firefox_ios/views/metric_definitions_baseline.view.lkml index 148f26eeb..25ac8c88e 100644 --- a/firefox_ios/views/metric_definitions_baseline.view.lkml +++ b/firefox_ios/views/metric_definitions_baseline.view.lkml @@ -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 ;; diff --git a/firefox_ios/views/metric_definitions_baseline_v2.view.lkml b/firefox_ios/views/metric_definitions_baseline_v2.view.lkml index 398d8f557..d11908fcf 100644 --- a/firefox_ios/views/metric_definitions_baseline_v2.view.lkml +++ b/firefox_ios/views/metric_definitions_baseline_v2.view.lkml @@ -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 ;; diff --git a/firefox_ios/views/metric_definitions_events.view.lkml b/firefox_ios/views/metric_definitions_events.view.lkml index fdf3fbcbd..536774dd1 100644 --- a/firefox_ios/views/metric_definitions_events.view.lkml +++ b/firefox_ios/views/metric_definitions_events.view.lkml @@ -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 ;; diff --git a/firefox_ios/views/metric_definitions_funnel_retention.view.lkml b/firefox_ios/views/metric_definitions_funnel_retention.view.lkml index 95ce58b3f..cf26e55d1 100644 --- a/firefox_ios/views/metric_definitions_funnel_retention.view.lkml +++ b/firefox_ios/views/metric_definitions_funnel_retention.view.lkml @@ -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, diff --git a/firefox_ios/views/metric_definitions_metrics.view.lkml b/firefox_ios/views/metric_definitions_metrics.view.lkml index a02386a5c..dc9eb4136 100644 --- a/firefox_ios/views/metric_definitions_metrics.view.lkml +++ b/firefox_ios/views/metric_definitions_metrics.view.lkml @@ -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 ;; diff --git a/firefox_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml b/firefox_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml index adefb9e19..084e3d364 100644 --- a/firefox_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml +++ b/firefox_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml @@ -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 ;; diff --git a/firefox_ios/views/metric_definitions_new_profile_activation.view.lkml b/firefox_ios/views/metric_definitions_new_profile_activation.view.lkml index e30a1799e..d97499756 100644 --- a/firefox_ios/views/metric_definitions_new_profile_activation.view.lkml +++ b/firefox_ios/views/metric_definitions_new_profile_activation.view.lkml @@ -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 ;; diff --git a/firefox_ios/views/metric_definitions_special_onboarding_events.view.lkml b/firefox_ios/views/metric_definitions_special_onboarding_events.view.lkml index b13e52d7c..fa8dcd415 100644 --- a/firefox_ios/views/metric_definitions_special_onboarding_events.view.lkml +++ b/firefox_ios/views/metric_definitions_special_onboarding_events.view.lkml @@ -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 ;; diff --git a/focus_android/views/metric_definitions_active_users_aggregates_v1.view.lkml b/focus_android/views/metric_definitions_active_users_aggregates_v1.view.lkml index b3306f822..1d8d4cfa5 100644 --- a/focus_android/views/metric_definitions_active_users_aggregates_v1.view.lkml +++ b/focus_android/views/metric_definitions_active_users_aggregates_v1.view.lkml @@ -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, diff --git a/focus_android/views/metric_definitions_baseline.view.lkml b/focus_android/views/metric_definitions_baseline.view.lkml index 2eee507f2..b661b62aa 100644 --- a/focus_android/views/metric_definitions_baseline.view.lkml +++ b/focus_android/views/metric_definitions_baseline.view.lkml @@ -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 ;; diff --git a/focus_android/views/metric_definitions_baseline_v2.view.lkml b/focus_android/views/metric_definitions_baseline_v2.view.lkml index 37e1bd5b0..e45b64109 100644 --- a/focus_android/views/metric_definitions_baseline_v2.view.lkml +++ b/focus_android/views/metric_definitions_baseline_v2.view.lkml @@ -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 ;; diff --git a/focus_android/views/metric_definitions_metrics.view.lkml b/focus_android/views/metric_definitions_metrics.view.lkml index d00356703..bcfe7925f 100644 --- a/focus_android/views/metric_definitions_metrics.view.lkml +++ b/focus_android/views/metric_definitions_metrics.view.lkml @@ -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 ;; diff --git a/focus_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml b/focus_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml index a6153cf7d..537b2eae2 100644 --- a/focus_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml +++ b/focus_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml @@ -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 ;; diff --git a/focus_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml b/focus_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml index 4a379a013..955efced7 100644 --- a/focus_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml +++ b/focus_ios/views/metric_definitions_active_users_aggregates_v1.view.lkml @@ -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, diff --git a/focus_ios/views/metric_definitions_baseline.view.lkml b/focus_ios/views/metric_definitions_baseline.view.lkml index 84004782b..08ee58eb0 100644 --- a/focus_ios/views/metric_definitions_baseline.view.lkml +++ b/focus_ios/views/metric_definitions_baseline.view.lkml @@ -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 ;; diff --git a/focus_ios/views/metric_definitions_baseline_v2.view.lkml b/focus_ios/views/metric_definitions_baseline_v2.view.lkml index 80ce5fd9b..352827ae9 100644 --- a/focus_ios/views/metric_definitions_baseline_v2.view.lkml +++ b/focus_ios/views/metric_definitions_baseline_v2.view.lkml @@ -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 ;; diff --git a/focus_ios/views/metric_definitions_metrics.view.lkml b/focus_ios/views/metric_definitions_metrics.view.lkml index 3c439b3f2..527f9467b 100644 --- a/focus_ios/views/metric_definitions_metrics.view.lkml +++ b/focus_ios/views/metric_definitions_metrics.view.lkml @@ -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 ;; diff --git a/focus_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml b/focus_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml index 9ab198ac2..ad0c0d6d8 100644 --- a/focus_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml +++ b/focus_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml @@ -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 ;; diff --git a/klar_android/views/metric_definitions_baseline.view.lkml b/klar_android/views/metric_definitions_baseline.view.lkml index 707fcc3b6..86636cfec 100644 --- a/klar_android/views/metric_definitions_baseline.view.lkml +++ b/klar_android/views/metric_definitions_baseline.view.lkml @@ -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 ;; diff --git a/klar_android/views/metric_definitions_metrics.view.lkml b/klar_android/views/metric_definitions_metrics.view.lkml index 2f45e2df0..e85b56f20 100644 --- a/klar_android/views/metric_definitions_metrics.view.lkml +++ b/klar_android/views/metric_definitions_metrics.view.lkml @@ -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 ;; diff --git a/klar_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml b/klar_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml index 3ed08781c..f95d39482 100644 --- a/klar_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml +++ b/klar_android/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml @@ -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 ;; diff --git a/klar_ios/views/metric_definitions_baseline.view.lkml b/klar_ios/views/metric_definitions_baseline.view.lkml index ace70ff13..3d9214576 100644 --- a/klar_ios/views/metric_definitions_baseline.view.lkml +++ b/klar_ios/views/metric_definitions_baseline.view.lkml @@ -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 ;; diff --git a/klar_ios/views/metric_definitions_metrics.view.lkml b/klar_ios/views/metric_definitions_metrics.view.lkml index cd4738025..36eaa4bba 100644 --- a/klar_ios/views/metric_definitions_metrics.view.lkml +++ b/klar_ios/views/metric_definitions_metrics.view.lkml @@ -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 ;; diff --git a/klar_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml b/klar_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml index 967108c98..d2d8bb010 100644 --- a/klar_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml +++ b/klar_ios/views/metric_definitions_mobile_search_clients_engines_sources_daily.view.lkml @@ -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 ;; diff --git a/marketing/views/acoustic_contact_change_events.view.lkml b/marketing/views/acoustic_contact_change_events.view.lkml index dae0b799f..e2ddb3d77 100644 --- a/marketing/views/acoustic_contact_change_events.view.lkml +++ b/marketing/views/acoustic_contact_change_events.view.lkml @@ -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` ;; } \ No newline at end of file diff --git a/marketing/views/acoustic_contact_current_snapshot.view.lkml b/marketing/views/acoustic_contact_current_snapshot.view.lkml index 1eca6ad66..3161e8f29 100644 --- a/marketing/views/acoustic_contact_current_snapshot.view.lkml +++ b/marketing/views/acoustic_contact_current_snapshot.view.lkml @@ -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` ;; } \ No newline at end of file diff --git a/marketing/views/acoustic_email_events.view.lkml b/marketing/views/acoustic_email_events.view.lkml index 4f8daa587..db354c610 100644 --- a/marketing/views/acoustic_email_events.view.lkml +++ b/marketing/views/acoustic_email_events.view.lkml @@ -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 user’s 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` ;; } \ No newline at end of file diff --git a/monitor_cirrus/views/metric_definitions_monitor_events_v1.view.lkml b/monitor_cirrus/views/metric_definitions_monitor_events_v1.view.lkml index 0c84a4004..a9d50ce0d 100644 --- a/monitor_cirrus/views/metric_definitions_monitor_events_v1.view.lkml +++ b/monitor_cirrus/views/metric_definitions_monitor_events_v1.view.lkml @@ -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 ;; diff --git a/monitoring/datagroups/bigquery_table_storage_v1_last_updated.datagroup.lkml b/monitoring/datagroups/bigquery_table_storage_v1_last_updated.datagroup.lkml index d9e25b382..181a12ce7 100644 --- a/monitoring/datagroups/bigquery_table_storage_v1_last_updated.datagroup.lkml +++ b/monitoring/datagroups/bigquery_table_storage_v1_last_updated.datagroup.lkml @@ -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' diff --git a/mozilla_vpn/views/daemonsession.view.lkml b/mozilla_vpn/views/daemonsession.view.lkml index 1c7569db7..3ce929128 100644 --- a/mozilla_vpn/views/daemonsession.view.lkml +++ b/mozilla_vpn/views/daemonsession.view.lkml @@ -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 ;; diff --git a/mozilla_vpn/views/daemonsession_table.view.lkml b/mozilla_vpn/views/daemonsession_table.view.lkml index 84e263e5b..3e4af494f 100644 --- a/mozilla_vpn/views/daemonsession_table.view.lkml +++ b/mozilla_vpn/views/daemonsession_table.view.lkml @@ -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 ;; diff --git a/mozilla_vpn/views/ga4_site_metrics_summary.view.lkml b/mozilla_vpn/views/ga4_site_metrics_summary.view.lkml new file mode 100644 index 000000000..ce624b3e8 --- /dev/null +++ b/mozilla_vpn/views/ga4_site_metrics_summary.view.lkml @@ -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` ;; +} \ No newline at end of file diff --git a/mozilla_vpn/views/vpnsession.view.lkml b/mozilla_vpn/views/vpnsession.view.lkml index cbf4b8a9d..e2afb10a1 100644 --- a/mozilla_vpn/views/vpnsession.view.lkml +++ b/mozilla_vpn/views/vpnsession.view.lkml @@ -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 ;; diff --git a/mozilla_vpn/views/vpnsession_table.view.lkml b/mozilla_vpn/views/vpnsession_table.view.lkml index 72a645368..afe5991cf 100644 --- a/mozilla_vpn/views/vpnsession_table.view.lkml +++ b/mozilla_vpn/views/vpnsession_table.view.lkml @@ -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 ;; diff --git a/multi_product/views/metric_definitions_mobile_active_users_aggregates_v1.view.lkml b/multi_product/views/metric_definitions_mobile_active_users_aggregates_v1.view.lkml index 25e1bd079..c6beff583 100644 --- a/multi_product/views/metric_definitions_mobile_active_users_aggregates_v1.view.lkml +++ b/multi_product/views/metric_definitions_mobile_active_users_aggregates_v1.view.lkml @@ -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, diff --git a/multi_product/views/metric_definitions_search_revenue_levers_daily.view.lkml b/multi_product/views/metric_definitions_search_revenue_levers_daily.view.lkml index 5cd0b83d4..df0a39d6a 100644 --- a/multi_product/views/metric_definitions_search_revenue_levers_daily.view.lkml +++ b/multi_product/views/metric_definitions_search_revenue_levers_daily.view.lkml @@ -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, diff --git a/namespaces.yaml b/namespaces.yaml index f8dae23e9..fee304f70 100644 --- a/namespaces.yaml +++ b/namespaces.yaml @@ -4981,15 +4981,15 @@ marketing: views: acoustic_contact_change_events: tables: - - table: moz-fx-data-marketing-prod.acoustic.contact_v1 + - table: mozdata.acoustic.contact type: table_view acoustic_contact_current_snapshot: tables: - - table: moz-fx-data-marketing-prod.acoustic.contact_current_snapshot_v1 + - table: mozdata.acoustic.contact_current_snapshot type: table_view acoustic_email_events: tables: - - table: moz-fx-data-marketing-prod.acoustic.raw_recipient_v1 + - table: mozdata.acoustic.raw_recipient type: table_view firefox_for_families_forecasted_expectations: tables: @@ -5799,6 +5799,11 @@ mozilla_vpn: - channel: release table: mozdata.mozilla_vpn.funnel_product_page_to_subscribed type: table_view + ga4_site_metrics_summary: + tables: + - channel: release + table: mozdata.mozilla_vpn.site_metrics_summary_v2 + type: table_view growth_accounting: tables: - table: mozdata.mozilla_vpn.baseline_clients_last_seen @@ -6393,28 +6398,28 @@ operational_monitoring: explore: add_an_image_to_pdf_with_alt_text_rollout group_by_dimension: null summaries: &id006 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.add_an_image_to_pdf_with_alt_text_rollout_statistics @@ -6507,28 +6512,28 @@ operational_monitoring: explore: address_autofill_desktop_pref_beta_rollout group_by_dimension: null summaries: &id015 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.address_autofill_desktop_pref_beta_rollout_statistics @@ -6545,28 +6550,28 @@ operational_monitoring: explore: address_autofill_desktop_pref_nightly_rollout group_by_dimension: null summaries: &id018 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.address_autofill_desktop_pref_nightly_rollout_statistics @@ -6583,28 +6588,28 @@ operational_monitoring: explore: address_autofill_desktop_pref_release_rollout group_by_dimension: null summaries: &id021 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.address_autofill_desktop_pref_release_rollout_statistics @@ -6748,16 +6753,16 @@ operational_monitoring: - metric: focus_android_daily_active_users_v2 metric_groups: [] statistic: sum - - metric: firefox_ios_daily_active_users_v2 - metric_groups: [] - statistic: sum - - metric: focus_ios_daily_active_users_v2 + - metric: fenix_daily_active_users_v2 metric_groups: [] statistic: sum - metric: firefox_desktop_daily_active_users_v2 metric_groups: [] statistic: sum - - metric: fenix_daily_active_users_v2 + - metric: focus_ios_daily_active_users_v2 + metric_groups: [] + statistic: sum + - metric: firefox_ios_daily_active_users_v2 metric_groups: [] statistic: sum table: moz-fx-data-shared-prod.operational_monitoring.all_browsers_dau_statistics @@ -6774,39 +6779,39 @@ operational_monitoring: explore: android_add_ons_extension_process group_by_dimension: null summaries: &id039 - - metric: performance_page_non_blank_paint - metric_groups: [] - statistic: percentile - - metric: tagged_sap_searches + - metric: active_hours metric_groups: [] statistic: mean - metric: uri_count metric_groups: [] statistic: mean + - metric: ad_clicks + metric_groups: [] + statistic: mean + - metric: performance_page_non_blank_paint + metric_groups: [] + statistic: percentile - metric: retained metric_groups: [] statistic: mean - - metric: storage_stats_data_dir_bytes + - metric: days_of_use metric_groups: [] - statistic: percentile + statistic: mean - metric: storage_stats_app_bytes metric_groups: [] statistic: percentile - - metric: search_count + - metric: tagged_sap_searches metric_groups: [] statistic: mean - - metric: ad_clicks + - metric: search_count metric_groups: [] statistic: mean - metric: storage_stats_cache_bytes metric_groups: [] statistic: percentile - - metric: days_of_use + - metric: storage_stats_data_dir_bytes metric_groups: [] - statistic: mean - - metric: active_hours - metric_groups: [] - statistic: mean + statistic: percentile table: moz-fx-data-shared-prod.operational_monitoring.android_add_ons_extension_process_statistics xaxis: submission_date title: Android Add Ons Extension Process @@ -6821,28 +6826,28 @@ operational_monitoring: explore: android_add_ons_extension_process_beta group_by_dimension: null summaries: &id042 - - metric: performance_page_non_blank_paint - metric_groups: [] - statistic: percentile - - metric: tagged_sap_searches + - metric: active_hours metric_groups: [] statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: performance_page_non_blank_paint + metric_groups: [] + statistic: percentile + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: tagged_sap_searches + metric_groups: [] + statistic: mean + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.android_add_ons_extension_process_beta_statistics @@ -6859,28 +6864,28 @@ operational_monitoring: explore: android_add_ons_extension_process_release_rollout group_by_dimension: null summaries: &id045 - - metric: performance_page_non_blank_paint - metric_groups: [] - statistic: percentile - - metric: tagged_sap_searches + - metric: active_hours metric_groups: [] statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: performance_page_non_blank_paint + metric_groups: [] + statistic: percentile + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: tagged_sap_searches + metric_groups: [] + statistic: mean + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.android_add_ons_extension_process_release_rollout_statistics @@ -6973,25 +6978,25 @@ operational_monitoring: explore: android_default_toolbar_placement_treatment_a_rollout group_by_dimension: null summaries: &id054 - - metric: tagged_sap_searches + - metric: active_hours metric_groups: [] statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: tagged_sap_searches + metric_groups: [] + statistic: mean + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.android_default_toolbar_placement_treatment_a_rollout_statistics @@ -7008,28 +7013,28 @@ operational_monitoring: explore: awesome_bar_result_menu_rollout_phase_1 group_by_dimension: null summaries: &id057 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.awesome_bar_result_menu_rollout_phase_1_statistics @@ -7218,28 +7223,28 @@ operational_monitoring: explore: backgroundupdate_enable_unelevated_installations_rollout_3 group_by_dimension: null summaries: &id075 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.backgroundupdate_enable_unelevated_installations_rollout_3_statistics @@ -7256,28 +7261,28 @@ operational_monitoring: explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly group_by_dimension: null summaries: &id078 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.backgroundupdate_enable_unelevated_installations_rollout_3_nightly_statistics @@ -7294,28 +7299,28 @@ operational_monitoring: explore: backgroundupdate_enable_unelevated_installations_rollout_3_release group_by_dimension: null summaries: &id081 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.backgroundupdate_enable_unelevated_installations_rollout_3_release_statistics @@ -7778,28 +7783,28 @@ operational_monitoring: explore: csv_import group_by_dimension: null summaries: &id123 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.csv_import_statistics @@ -7816,28 +7821,28 @@ operational_monitoring: explore: csv_import_beta_rollout group_by_dimension: null summaries: &id126 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.csv_import_beta_rollout_statistics @@ -7854,28 +7859,28 @@ operational_monitoring: explore: csv_import_release_rollout group_by_dimension: null summaries: &id129 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.csv_import_release_rollout_statistics @@ -8043,12 +8048,12 @@ operational_monitoring: explore: desktop_dau group_by_dimension: null summaries: &id144 - - metric: kpi_forecast - metric_groups: [] - statistic: mean - metric: daily_active_users_v2 metric_groups: [] statistic: sum + - metric: kpi_forecast + metric_groups: [] + statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.desktop_dau_statistics xaxis: submission_date title: Desktop Dau @@ -8139,28 +8144,28 @@ operational_monitoring: explore: device_migration_q4_spotlights_remaining_population group_by_dimension: null summaries: &id153 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.device_migration_q4_spotlights_remaining_population_statistics @@ -8177,28 +8182,28 @@ operational_monitoring: explore: device_migration_q4_spotlights_remaining_population_esr group_by_dimension: null summaries: &id156 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.device_migration_q4_spotlights_remaining_population_esr_statistics @@ -8285,28 +8290,28 @@ operational_monitoring: explore: ech_roll_out group_by_dimension: null summaries: &id165 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.ech_roll_out_statistics @@ -8323,25 +8328,25 @@ operational_monitoring: explore: enable_activation_telemetry_android group_by_dimension: null summaries: &id168 - - metric: tagged_sap_searches + - metric: active_hours metric_groups: [] statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: tagged_sap_searches + metric_groups: [] + statistic: mean + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.enable_activation_telemetry_android_statistics @@ -8511,28 +8516,28 @@ operational_monitoring: explore: extensions_migration_in_import_wizard_116_rollout group_by_dimension: null summaries: &id183 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.extensions_migration_in_import_wizard_116_rollout_statistics @@ -8707,34 +8712,34 @@ operational_monitoring: - release - esr windows_version: - default: Windows 7 + default: Windows 10 options: - - Windows 7 - Windows 10 + - Windows 7 - Windows 8.1 - Windows 8 - Windows 11 explore: firefox_background_update group_by_dimension: null summaries: &id198 + - metric: success_rate + metric_groups: [] + statistic: mean + - metric: client_volume + metric_groups: [] + statistic: sum + - metric: exception_volume + metric_groups: [] + statistic: sum + - metric: crash_volume + metric_groups: [] + statistic: sum - metric: ping_volume metric_groups: [] statistic: sum - metric: exception_rate metric_groups: [] statistic: mean - - metric: crash_volume - metric_groups: [] - statistic: sum - - metric: success_rate - metric_groups: [] - statistic: mean - - metric: exception_volume - metric_groups: [] - statistic: sum - - metric: client_volume - metric_groups: [] - statistic: sum table: moz-fx-data-shared-prod.operational_monitoring.firefox_background_update_statistics xaxis: submission_date title: Firefox Background Update @@ -8746,13 +8751,13 @@ operational_monitoring: compact_visualization: false dimensions: &id200 normalized_channel: - default: beta + default: esr options: - - beta - esr - release - - nightly - aurora + - nightly + - beta - default - nightly-pine - nightly-oak @@ -8769,27 +8774,27 @@ operational_monitoring: explore: firefox_default_browser_agent group_by_dimension: null summaries: &id201 - - metric: firefox_is_default_volume + - metric: firefox_lost_default_volume metric_groups: [] statistic: sum - - metric: firefox_is_default_volume + - metric: firefox_lost_default_volume metric_groups: [] statistic: mean - - metric: firefox_lost_default_volume + - metric: firefox_default_changed_volume metric_groups: [] statistic: sum - - metric: firefox_lost_default_volume + - metric: firefox_default_changed_volume + metric_groups: [] + statistic: mean + - metric: firefox_is_default_volume + metric_groups: [] + statistic: sum + - metric: firefox_is_default_volume metric_groups: [] statistic: mean - metric: ping_volume metric_groups: [] statistic: sum - - metric: firefox_default_changed_volume - metric_groups: [] - statistic: sum - - metric: firefox_default_changed_volume - metric_groups: [] - statistic: mean - metric: firefox_won_default_volume metric_groups: [] statistic: sum @@ -8809,11 +8814,11 @@ operational_monitoring: explore: firefox_install_demo group_by_dimension: null summaries: &id204 - - metric: install_volume_win7 + - metric: install_volume_win10 metric_groups: - installs_by_os statistic: sum - - metric: install_volume_win7 + - metric: install_volume_win10 metric_groups: - installs_by_os statistic: mean @@ -8823,19 +8828,11 @@ operational_monitoring: - metric: install_volume_total metric_groups: [] statistic: mean - - metric: install_volume_win10 + - metric: install_volume_win7 metric_groups: - installs_by_os statistic: sum - - metric: install_volume_win10 - metric_groups: - - installs_by_os - statistic: mean - - metric: install_volume_win8 - metric_groups: - - installs_by_os - statistic: sum - - metric: install_volume_win8 + - metric: install_volume_win7 metric_groups: - installs_by_os statistic: mean @@ -8847,6 +8844,14 @@ operational_monitoring: metric_groups: - installs_by_os statistic: mean + - metric: install_volume_win8 + metric_groups: + - installs_by_os + statistic: sum + - metric: install_volume_win8 + metric_groups: + - installs_by_os + statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.firefox_install_demo_statistics xaxis: submission_date - explore: firefox_install_demo_alerts @@ -8862,10 +8867,10 @@ operational_monitoring: explore: firefox_ios_health group_by_dimension: null summaries: &id207 - - metric: large_file_write + - metric: dirty_startup metric_groups: [] statistic: sum - - metric: dirty_startup + - metric: large_file_write metric_groups: [] statistic: sum table: moz-fx-data-shared-prod.operational_monitoring.firefox_ios_health_statistics @@ -8879,11 +8884,11 @@ operational_monitoring: compact_visualization: false dimensions: &id209 normalized_channel: - default: aurora + default: beta options: + - beta - aurora - nightly - - beta - release - esr - Other @@ -8897,11 +8902,7 @@ operational_monitoring: explore: firefox_messaging_system group_by_dimension: null summaries: &id210 - - metric: invalid_nested_data_volume - metric_groups: - - unexpected_data - statistic: sum - - metric: spotlight_ping_volume + - metric: cfr_ping_volume metric_groups: - ping_volume_by_ping_type statistic: sum @@ -8909,36 +8910,40 @@ operational_monitoring: metric_groups: - ping_volume_by_ping_type statistic: sum - - metric: other_ping_volume - metric_groups: - - ping_volume_by_ping_type - statistic: sum - - metric: moments_ping_volume - metric_groups: - - ping_volume_by_ping_type - statistic: sum - - metric: null_ping_volume - metric_groups: - - ping_volume_by_ping_type - statistic: sum - metric: whats_new_panel_ping_volume metric_groups: - ping_volume_by_ping_type statistic: sum - - metric: client_volume - metric_groups: [] - statistic: sum - - metric: cfr_ping_volume - metric_groups: - - ping_volume_by_ping_type - statistic: sum - metric: unknown_keys_volume metric_groups: - unexpected_data statistic: sum + - metric: moments_ping_volume + metric_groups: + - ping_volume_by_ping_type + statistic: sum + - metric: client_volume + metric_groups: [] + statistic: sum + - metric: invalid_nested_data_volume + metric_groups: + - unexpected_data + statistic: sum + - metric: other_ping_volume + metric_groups: + - ping_volume_by_ping_type + statistic: sum + - metric: null_ping_volume + metric_groups: + - ping_volume_by_ping_type + statistic: sum - metric: ping_volume metric_groups: [] statistic: sum + - metric: spotlight_ping_volume + metric_groups: + - ping_volume_by_ping_type + statistic: sum - metric: undesired_events_ping_volume metric_groups: [] statistic: sum @@ -9045,52 +9050,10 @@ operational_monitoring: explore: firefox_user_choice group_by_dimension: null summaries: &id219 - - metric: ErrExeTimeout_event_volume + - metric: Success_client_volume metric_groups: [] statistic: sum - - metric: ErrExeTimeout_event_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrBuild_client_volume - metric_groups: [] - statistic: sum - - metric: ErrBuild_client_volume - metric_groups: [] - statistic: total_ratio - - metric: not_Success_client_volume - metric_groups: [] - statistic: sum - - metric: not_Success_client_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrExeRejected_client_volume - metric_groups: [] - statistic: sum - - metric: ErrExeRejected_client_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrExeHash_event_volume - metric_groups: [] - statistic: sum - - metric: ErrExeHash_event_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrExeRejected_event_volume - metric_groups: [] - statistic: sum - - metric: ErrExeRejected_event_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrProgID_event_volume - metric_groups: [] - statistic: sum - - metric: ErrProgID_event_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrExeTimeout_client_volume - metric_groups: [] - statistic: sum - - metric: ErrExeTimeout_client_volume + - metric: Success_client_volume metric_groups: [] statistic: total_ratio - metric: ErrHash_client_volume @@ -9099,16 +9062,10 @@ operational_monitoring: - metric: ErrHash_client_volume metric_groups: [] statistic: total_ratio - - metric: ErrProgID_client_volume + - metric: ErrOther_event_volume metric_groups: [] statistic: sum - - metric: ErrProgID_client_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrExeProgID_client_volume - metric_groups: [] - statistic: sum - - metric: ErrExeProgID_client_volume + - metric: ErrOther_event_volume metric_groups: [] statistic: total_ratio - metric: ErrExeOther_event_volume @@ -9117,55 +9074,61 @@ operational_monitoring: - metric: ErrExeOther_event_volume metric_groups: [] statistic: total_ratio - - metric: ErrExeHash_client_volume - metric_groups: [] - statistic: sum - - metric: ErrExeHash_client_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrLaunchExe_client_volume - metric_groups: [] - statistic: sum - - metric: ErrLaunchExe_client_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrExeOther_client_volume - metric_groups: [] - statistic: sum - - metric: ErrExeOther_client_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrBuild_event_volume - metric_groups: [] - statistic: sum - - metric: ErrBuild_event_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrOther_client_volume - metric_groups: [] - statistic: sum - - metric: ErrOther_client_volume - metric_groups: [] - statistic: total_ratio - - metric: ErrLaunchExe_event_volume - metric_groups: [] - statistic: sum - - metric: ErrLaunchExe_event_volume - metric_groups: [] - statistic: total_ratio - metric: ErrExeProgID_event_volume metric_groups: [] statistic: sum - metric: ErrExeProgID_event_volume metric_groups: [] statistic: total_ratio + - metric: ErrHash_event_volume + metric_groups: [] + statistic: sum + - metric: ErrHash_event_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrExeRejected_client_volume + metric_groups: [] + statistic: sum + - metric: ErrExeRejected_client_volume + metric_groups: [] + statistic: total_ratio + - metric: not_Success_client_volume + metric_groups: [] + statistic: sum + - metric: not_Success_client_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrExeRejected_event_volume + metric_groups: [] + statistic: sum + - metric: ErrExeRejected_event_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrExeProgID_client_volume + metric_groups: [] + statistic: sum + - metric: ErrExeProgID_client_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrProgID_event_volume + metric_groups: [] + statistic: sum + - metric: ErrProgID_event_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrExeHash_event_volume + metric_groups: [] + statistic: sum + - metric: ErrExeHash_event_volume + metric_groups: [] + statistic: total_ratio - metric: total_client_volume metric_groups: [] statistic: sum - - metric: ErrOther_event_volume + - metric: ErrExeTimeout_event_volume metric_groups: [] statistic: sum - - metric: ErrOther_event_volume + - metric: ErrExeTimeout_event_volume metric_groups: [] statistic: total_ratio - metric: not_Success_event_volume @@ -9174,10 +9137,16 @@ operational_monitoring: - metric: not_Success_event_volume metric_groups: [] statistic: total_ratio - - metric: ErrHash_event_volume + - metric: ErrLaunchExe_event_volume metric_groups: [] statistic: sum - - metric: ErrHash_event_volume + - metric: ErrLaunchExe_event_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrBuild_event_volume + metric_groups: [] + statistic: sum + - metric: ErrBuild_event_volume metric_groups: [] statistic: total_ratio - metric: Success_event_volume @@ -9186,13 +9155,49 @@ operational_monitoring: - metric: Success_event_volume metric_groups: [] statistic: total_ratio + - metric: ErrProgID_client_volume + metric_groups: [] + statistic: sum + - metric: ErrProgID_client_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrOther_client_volume + metric_groups: [] + statistic: sum + - metric: ErrOther_client_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrExeTimeout_client_volume + metric_groups: [] + statistic: sum + - metric: ErrExeTimeout_client_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrExeHash_client_volume + metric_groups: [] + statistic: sum + - metric: ErrExeHash_client_volume + metric_groups: [] + statistic: total_ratio - metric: total_event_volume metric_groups: [] statistic: sum - - metric: Success_client_volume + - metric: ErrExeOther_client_volume metric_groups: [] statistic: sum - - metric: Success_client_volume + - metric: ErrExeOther_client_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrBuild_client_volume + metric_groups: [] + statistic: sum + - metric: ErrBuild_client_volume + metric_groups: [] + statistic: total_ratio + - metric: ErrLaunchExe_client_volume + metric_groups: [] + statistic: sum + - metric: ErrLaunchExe_client_volume metric_groups: [] statistic: total_ratio table: moz-fx-data-shared-prod.operational_monitoring.firefox_user_choice_statistics @@ -9437,28 +9442,28 @@ operational_monitoring: explore: fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout group_by_dimension: null summaries: &id240 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout_statistics @@ -9475,28 +9480,28 @@ operational_monitoring: explore: fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout group_by_dimension: null summaries: &id243 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout_statistics @@ -9583,11 +9588,11 @@ operational_monitoring: compact_visualization: false dimensions: &id251 os: - default: Windows + default: Mac options: + - Mac - Windows - Linux - - Mac - Other explore: garbage_collection group_by_dimension: null @@ -9595,10 +9600,10 @@ operational_monitoring: - metric: gc_effectiveness metric_groups: [] statistic: percentile - - metric: gc_ms + - metric: gc_budget_overrun metric_groups: [] statistic: percentile - - metric: gc_budget_overrun + - metric: gc_ms metric_groups: [] statistic: percentile table: moz-fx-data-shared-prod.operational_monitoring.garbage_collection_statistics @@ -9655,19 +9660,19 @@ operational_monitoring: explore: ios_cc_autofill_rollout group_by_dimension: null summaries: &id258 - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count + - metric: active_hours metric_groups: [] statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.ios_cc_autofill_rollout_statistics @@ -9745,19 +9750,19 @@ operational_monitoring: explore: ios_dma_onboarding group_by_dimension: null summaries: &id267 - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count + - metric: active_hours metric_groups: [] statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.ios_dma_onboarding_statistics @@ -9774,19 +9779,19 @@ operational_monitoring: explore: ios_search_bar_placement_v2_treatment_a_rollout group_by_dimension: null summaries: &id270 - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count + - metric: active_hours metric_groups: [] statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.ios_search_bar_placement_v2_treatment_a_rollout_statistics @@ -9803,19 +9808,19 @@ operational_monitoring: explore: ios_sync_manager_integration_rust_sync_manager_rollout group_by_dimension: null summaries: &id273 - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count + - metric: active_hours metric_groups: [] statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.ios_sync_manager_integration_rust_sync_manager_rollout_statistics @@ -9864,19 +9869,19 @@ operational_monitoring: explore: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy group_by_dimension: null summaries: &id279 - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count + - metric: active_hours metric_groups: [] statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy_statistics @@ -9894,28 +9899,28 @@ operational_monitoring: explore: launch_firefox_on_os_restart_treatment_a_rollout group_by_dimension: null summaries: &id282 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.launch_firefox_on_os_restart_treatment_a_rollout_statistics @@ -10198,28 +10203,28 @@ operational_monitoring: explore: mixed_content_level_2_roll_out_release_115 group_by_dimension: null summaries: &id306 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.mixed_content_level_2_roll_out_release_115_statistics @@ -10358,48 +10363,48 @@ operational_monitoring: compact_visualization: false dimensions: &id320 app: - default: Android - daemon_session + default: Android - vpn_session options: - - Android - daemon_session - - Darwin - vpn_session - - iOS - vpn_session - - iOS - daemon_session - - Windows - vpn_session - Android - vpn_session + - Windows - vpn_session + - iOS - daemon_session + - Darwin - vpn_session + - Android - daemon_session + - iOS - vpn_session - Linux - vpn_session explore: mozilla_vpn group_by_dimension: app summaries: &id321 - - metric: cnt_session_starts + - metric: cnt_sessions_start_and_end metric_groups: [] statistic: sum - metric: session_count metric_groups: [] statistic: sum - - metric: avg_session_duration - metric_groups: [] - statistic: mean - - metric: avg_session_duration - metric_groups: [] - statistic: percentile - - metric: active_subscribers - metric_groups: [] - statistic: sum - - metric: cnt_sessions_start_and_end - metric_groups: [] - statistic: sum - metric: cnt_session_ends metric_groups: [] statistic: sum + - metric: active_subscribers + metric_groups: [] + statistic: sum + - metric: cnt_negative_session_lengths + metric_groups: [] + statistic: sum + - metric: cnt_session_starts + metric_groups: [] + statistic: sum - metric: avg_sum_session_duration metric_groups: [] statistic: mean - metric: avg_sum_session_duration metric_groups: [] statistic: percentile - - metric: cnt_negative_session_lengths + - metric: avg_session_duration metric_groups: [] - statistic: sum + statistic: mean + - metric: avg_session_duration + metric_groups: [] + statistic: percentile table: moz-fx-data-shared-prod.operational_monitoring.mozilla_vpn_statistics xaxis: submission_date title: Mozilla Vpn @@ -10414,28 +10419,28 @@ operational_monitoring: explore: mozillaaccounts_toolbar_button_default_visibility_existing_user group_by_dimension: null summaries: &id324 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.mozillaaccounts_toolbar_button_default_visibility_existing_user_statistics @@ -10580,28 +10585,28 @@ operational_monitoring: explore: mr2022_backgroundtaskmessage_notification_release_1pct group_by_dimension: null summaries: &id339 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.mr2022_backgroundtaskmessage_notification_release_1pct_statistics @@ -10623,21 +10628,21 @@ operational_monitoring: explore: network_performance_desktop_build_by_build group_by_dimension: null summaries: &id342 + - metric: dns_lookup_time + metric_groups: [] + statistic: percentile - metric: time_to_response_start_ms metric_groups: [] statistic: percentile + - metric: http_page_open_to_first_sent + metric_groups: [] + statistic: percentile - metric: http_sub_tls_handshake metric_groups: [] statistic: percentile - - metric: dns_lookup_time - metric_groups: [] - statistic: percentile - metric: http_page_tls_handshake metric_groups: [] statistic: percentile - - metric: http_page_open_to_first_sent - metric_groups: [] - statistic: percentile table: moz-fx-data-shared-prod.operational_monitoring.network_performance_desktop_build_by_build_statistics xaxis: build_id title: Build Over Build Network Performance For Desktop @@ -11224,70 +11229,70 @@ operational_monitoring: explore: performance_desktop_build_by_build_beta group_by_dimension: null summaries: &id390 + - metric: perf_dom_contentperf_dom_content_loaded_time_from_responsestart_ms_loaded_time + metric_groups: [] + statistic: percentile - metric: js_pageload_execution_ms metric_groups: [] statistic: percentile - - metric: input_event_response_coalesced - metric_groups: [] - statistic: percentile - - metric: perf_page_load_time_ms - metric_groups: [] - statistic: percentile - - metric: js_pageload_protect_ms - metric_groups: [] - statistic: percentile - - metric: timestamps_first_paint_two - metric_groups: [] - statistic: percentile - - metric: mouseup_followed_by_click_present_latency - metric_groups: [] - statistic: percentile - - metric: js_pageload_xdr_encoding_ms - metric_groups: [] - statistic: percentile - - metric: timestamps_about_home_topsites_first_paint - metric_groups: [] - statistic: percentile - - metric: perf_page_load_time_from_responsestart - metric_groups: [] - statistic: percentile - - metric: keypress_present_latency_ms - metric_groups: [] - statistic: percentile - - metric: perf_request_animation_callback_pageload - metric_groups: [] - statistic: percentile - - metric: js_pageload_baseline_compile_ms - metric_groups: [] - statistic: percentile - - metric: cycle_collector_visited_ref_counted - metric_groups: [] - statistic: percentile - - metric: js_pageload_parse_ms - metric_groups: [] - statistic: percentile - - metric: perf_first_contentful_paint_ms - metric_groups: [] - statistic: percentile - - metric: perf_dom_content_loaded_time - metric_groups: [] - statistic: percentile - - metric: fx_page_load_ms_2 - metric_groups: [] - statistic: percentile - metric: perf_request_animation_callback_non_pageload metric_groups: [] statistic: percentile + - metric: input_event_response_coalesced + metric_groups: [] + statistic: percentile + - metric: timestamps_about_home_topsites_first_paint + metric_groups: [] + statistic: percentile - metric: scroll_present_latency metric_groups: [] statistic: percentile - - metric: js_pageload_delazification_ms + - metric: fx_page_load_ms_2 + metric_groups: [] + statistic: percentile + - metric: perf_page_load_time_ms + metric_groups: [] + statistic: percentile + - metric: js_pageload_parse_ms + metric_groups: [] + statistic: percentile + - metric: js_pageload_xdr_encoding_ms + metric_groups: [] + statistic: percentile + - metric: keypress_present_latency_ms metric_groups: [] statistic: percentile - metric: cycle_collector_visited_gced metric_groups: [] statistic: percentile - - metric: perf_dom_contentperf_dom_content_loaded_time_from_responsestart_ms_loaded_time + - metric: timestamps_first_paint_two + metric_groups: [] + statistic: percentile + - metric: js_pageload_delazification_ms + metric_groups: [] + statistic: percentile + - metric: perf_first_contentful_paint_ms + metric_groups: [] + statistic: percentile + - metric: cycle_collector_visited_ref_counted + metric_groups: [] + statistic: percentile + - metric: perf_dom_content_loaded_time + metric_groups: [] + statistic: percentile + - metric: mouseup_followed_by_click_present_latency + metric_groups: [] + statistic: percentile + - metric: js_pageload_baseline_compile_ms + metric_groups: [] + statistic: percentile + - metric: js_pageload_protect_ms + metric_groups: [] + statistic: percentile + - metric: perf_page_load_time_from_responsestart + metric_groups: [] + statistic: percentile + - metric: perf_request_animation_callback_pageload metric_groups: [] statistic: percentile - metric: time_to_first_interaction_ms @@ -11306,40 +11311,40 @@ operational_monitoring: explore: performance_fenix_build_by_build_beta group_by_dimension: null summaries: &id393 - - metric: perf_startup_cold_view_app_to_first_frame + - metric: performance_pageload_dcl_responsestart metric_groups: [] statistic: percentile - - metric: performance_pageload_fcp - metric_groups: [] - statistic: percentile - - metric: performance_pageload_load_time - metric_groups: [] - statistic: percentile - - metric: storage_stats_data_dir_bytes - metric_groups: [] - statistic: percentile - - metric: performance_pageload_dcl - metric_groups: [] - statistic: percentile - - metric: performance_pageload_req_anim_frame_callback + - metric: performance_pageload_load_time_responsestart metric_groups: [] statistic: percentile - metric: perf_startup_cold_main_app_to_first_frame metric_groups: [] statistic: percentile - - metric: performance_pageload_dcl_responsestart + - metric: performance_pageload_req_anim_frame_callback metric_groups: [] statistic: percentile - metric: storage_stats_app_bytes metric_groups: [] statistic: percentile - - metric: storage_stats_cache_bytes - metric_groups: [] - statistic: percentile - metric: performance_pageload_fcp_responsestart metric_groups: [] statistic: percentile - - metric: performance_pageload_load_time_responsestart + - metric: performance_pageload_load_time + metric_groups: [] + statistic: percentile + - metric: storage_stats_cache_bytes + metric_groups: [] + statistic: percentile + - metric: performance_pageload_dcl + metric_groups: [] + statistic: percentile + - metric: performance_pageload_fcp + metric_groups: [] + statistic: percentile + - metric: perf_startup_cold_view_app_to_first_frame + metric_groups: [] + statistic: percentile + - metric: storage_stats_data_dir_bytes metric_groups: [] statistic: percentile table: moz-fx-data-shared-prod.operational_monitoring.performance_fenix_build_by_build_beta_statistics @@ -11355,39 +11360,59 @@ operational_monitoring: explore: performance_review_kenya group_by_dimension: null summaries: &id396 - - metric: storage_stats_data_dir_bytes_US + - metric: networking_http_1_upload_throughput_US metric_groups: - - storage_stats_data_dir_bytes - statistic: percentile - - metric: networking_http_2_upload_throughput_US - metric_groups: - - networking_http_2_upload_throughput - statistic: percentile - - metric: networking_http_2_download_throughput_US - metric_groups: - - networking_http_2_download_throughput - statistic: percentile - - metric: storage_stats_data_dir_bytes_KE - metric_groups: - - storage_stats_data_dir_bytes - statistic: percentile - - metric: networking_http_3_download_throughput_US - metric_groups: - - networking_http_3_download_throughput + - networking_http_1_upload_throughput statistic: percentile - metric: networking_http_3_upload_throughput_KE metric_groups: - networking_http_3_upload_throughput statistic: percentile - - metric: storage_stats_app_bytes_US + - metric: networking_http_3_download_throughput_US + metric_groups: + - networking_http_3_download_throughput + statistic: percentile + - metric: networking_http_1_download_throughput_US + metric_groups: + - networking_http_1_download_throughput + statistic: percentile + - metric: perf_startup_cold_view_app_to_first_frame_KE + metric_groups: + - perf_startup_cold_view_app_to_first_frame + statistic: percentile + - metric: performance_pageload_load_time_KE + metric_groups: + - performance_pageload_load_time + statistic: percentile + - metric: networking_http_3_upload_throughput_US + metric_groups: + - networking_http_3_upload_throughput + statistic: percentile + - metric: storage_stats_app_bytes_KE metric_groups: - storage_stats_app_bytes statistic: percentile - - metric: perf_startup_cold_main_app_to_first_frame_KE + - metric: storage_stats_data_dir_bytes_KE + metric_groups: + - storage_stats_data_dir_bytes + statistic: percentile + - metric: networking_http_1_download_throughput_KE + metric_groups: + - networking_http_1_download_throughput + statistic: percentile + - metric: perf_startup_cold_main_app_to_first_frame_US metric_groups: - perf_startup_cold_main_app_to_first_frame statistic: percentile - - metric: networking_http_1_upload_throughput_US + - metric: performance_pageload_load_time_US + metric_groups: + - performance_pageload_load_time + statistic: percentile + - metric: networking_dns_lookup_time_KE + metric_groups: + - networking_dns_lookup_time + statistic: percentile + - metric: networking_http_1_upload_throughput_KE metric_groups: - networking_http_1_upload_throughput statistic: percentile @@ -11395,17 +11420,33 @@ operational_monitoring: metric_groups: - performance_time_response_start statistic: percentile - - metric: networking_http_2_upload_throughput_KE + - metric: networking_dns_lookup_time_US + metric_groups: + - networking_dns_lookup_time + statistic: percentile + - metric: networking_http_2_download_throughput_US + metric_groups: + - networking_http_2_download_throughput + statistic: percentile + - metric: perf_startup_cold_main_app_to_first_frame_KE + metric_groups: + - perf_startup_cold_main_app_to_first_frame + statistic: percentile + - metric: networking_http_2_upload_throughput_US metric_groups: - networking_http_2_upload_throughput statistic: percentile - - metric: performance_pageload_load_time_US + - metric: storage_stats_app_bytes_US metric_groups: - - performance_pageload_load_time + - storage_stats_app_bytes statistic: percentile - - metric: perf_startup_cold_view_app_to_first_frame_US + - metric: networking_http_3_download_throughput_KE metric_groups: - - perf_startup_cold_view_app_to_first_frame + - networking_http_3_download_throughput + statistic: percentile + - metric: storage_stats_data_dir_bytes_US + metric_groups: + - storage_stats_data_dir_bytes statistic: percentile - metric: networking_http_2_download_throughput_KE metric_groups: @@ -11415,50 +11456,14 @@ operational_monitoring: metric_groups: - performance_time_response_start statistic: percentile - - metric: networking_http_1_upload_throughput_KE + - metric: networking_http_2_upload_throughput_KE metric_groups: - - networking_http_1_upload_throughput + - networking_http_2_upload_throughput statistic: percentile - - metric: networking_http_1_download_throughput_KE - metric_groups: - - networking_http_1_download_throughput - statistic: percentile - - metric: performance_pageload_load_time_KE - metric_groups: - - performance_pageload_load_time - statistic: percentile - - metric: networking_dns_lookup_time_KE - metric_groups: - - networking_dns_lookup_time - statistic: percentile - - metric: storage_stats_app_bytes_KE - metric_groups: - - storage_stats_app_bytes - statistic: percentile - - metric: networking_dns_lookup_time_US - metric_groups: - - networking_dns_lookup_time - statistic: percentile - - metric: networking_http_3_upload_throughput_US - metric_groups: - - networking_http_3_upload_throughput - statistic: percentile - - metric: networking_http_1_download_throughput_US - metric_groups: - - networking_http_1_download_throughput - statistic: percentile - - metric: networking_http_3_download_throughput_KE - metric_groups: - - networking_http_3_download_throughput - statistic: percentile - - metric: perf_startup_cold_view_app_to_first_frame_KE + - metric: perf_startup_cold_view_app_to_first_frame_US metric_groups: - perf_startup_cold_view_app_to_first_frame statistic: percentile - - metric: perf_startup_cold_main_app_to_first_frame_US - metric_groups: - - perf_startup_cold_main_app_to_first_frame - statistic: percentile table: moz-fx-data-shared-prod.operational_monitoring.performance_review_kenya_statistics xaxis: build_id title: 'Okr 2 6 Performance Review Dashboard Kenya ' @@ -11480,42 +11485,42 @@ operational_monitoring: - metric: networking_http_2_upload_throughput metric_groups: [] statistic: percentile + - metric: networking_http_1_upload_throughput + metric_groups: [] + statistic: percentile + - metric: networking_http_3_upload_throughput + metric_groups: [] + statistic: percentile + - metric: perf_startup_cold_main_app_to_first_frame + metric_groups: [] + statistic: percentile - metric: networking_http_1_download_throughput metric_groups: [] statistic: percentile - - metric: networking_http_2_download_throughput - metric_groups: [] - statistic: percentile - - metric: storage_stats_data_dir_bytes + - metric: storage_stats_app_bytes metric_groups: [] statistic: percentile - metric: networking_http_3_download_throughput metric_groups: [] statistic: percentile + - metric: networking_dns_lookup_time + metric_groups: [] + statistic: percentile + - metric: networking_http_2_download_throughput + metric_groups: [] + statistic: percentile - metric: performance_time_response_start metric_groups: [] statistic: percentile - metric: performance_pageload_load_time metric_groups: [] statistic: percentile - - metric: perf_startup_cold_main_app_to_first_frame - metric_groups: [] - statistic: percentile - - metric: networking_http_3_upload_throughput - metric_groups: [] - statistic: percentile - - metric: storage_stats_app_bytes - metric_groups: [] - statistic: percentile - - metric: networking_http_1_upload_throughput - metric_groups: [] - statistic: percentile - - metric: networking_dns_lookup_time - metric_groups: [] - statistic: percentile - metric: perf_startup_cold_view_app_to_first_frame metric_groups: [] statistic: percentile + - metric: storage_stats_data_dir_bytes + metric_groups: [] + statistic: percentile table: moz-fx-data-shared-prod.operational_monitoring.performance_review_kenya_2_statistics xaxis: build_id title: 'Okr 2 6 Performance Review Dashboard Kenya ' @@ -11530,28 +11535,28 @@ operational_monitoring: explore: persist_search_term_rollout_phase_1 group_by_dimension: null summaries: &id402 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.persist_search_term_rollout_phase_1_statistics @@ -11606,28 +11611,28 @@ operational_monitoring: explore: phc_rollout group_by_dimension: null summaries: &id408 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.phc_rollout_statistics @@ -11983,21 +11988,37 @@ operational_monitoring: compact_visualization: false dimensions: &id437 channel: - default: release + default: nightly options: + - nightly - release - beta - - nightly os: - default: Windows_NT + default: Darwin options: - - Windows_NT - Darwin - Linux + - Windows_NT explore: print_background_task_times group_by_dimension: null summaries: &id438 - - metric: printing_dialog_opened_via_preview + - metric: printing_dialog_opened_without_preview + metric_groups: + - print_initiation_counts + statistic: sum + - metric: printing_dialog_without_preview_cancelled + metric_groups: + - print_cancel_ratios + statistic: total_ratio + - metric: printing_preview_cancelled_tm + metric_groups: + - print_cancel_ratios + statistic: total_ratio + - metric: printing_preview_opened + metric_groups: + - print_initiation_counts + statistic: sum + - metric: printing_silent_print metric_groups: - print_initiation_counts statistic: sum @@ -12007,7 +12028,15 @@ operational_monitoring: - metric: print_count metric_groups: [] statistic: percentile - - metric: printing_preview_cancelled_tm + - metric: printing_dialog_opened_via_preview_tm + metric_groups: + - print_initiation_counts + statistic: sum + - metric: printing_dialog_opened_via_preview + metric_groups: + - print_initiation_counts + statistic: sum + - metric: printing_dialog_via_preview_cancelled metric_groups: - print_cancel_ratios statistic: total_ratio @@ -12015,38 +12044,14 @@ operational_monitoring: metric_groups: - print_cancel_ratios statistic: total_ratio - - metric: printing_dialog_opened_without_preview - metric_groups: - - print_initiation_counts - statistic: sum - - metric: printing_silent_print - metric_groups: - - print_initiation_counts - statistic: sum - - metric: printing_preview_opened - metric_groups: - - print_initiation_counts - statistic: sum - - metric: printing_dialog_opened_via_preview_tm - metric_groups: - - print_initiation_counts - statistic: sum - - metric: printing_dialog_without_preview_cancelled - metric_groups: - - print_cancel_ratios - statistic: total_ratio - - metric: printing_preview_cancelled - metric_groups: - - print_cancel_ratios - statistic: total_ratio - - metric: printing_dialog_via_preview_cancelled - metric_groups: - - print_cancel_ratios - statistic: total_ratio - metric: printing_preview_opened_tm metric_groups: - print_initiation_counts statistic: sum + - metric: printing_preview_cancelled + metric_groups: + - print_cancel_ratios + statistic: total_ratio table: moz-fx-data-shared-prod.operational_monitoring.print_background_task_times_statistics xaxis: submission_date title: 'Print Background Task Times 1Pct Sample ' @@ -12072,6 +12077,30 @@ operational_monitoring: explore: print_background_task_times_by_build group_by_dimension: null summaries: &id441 + - metric: cannot_open_file + metric_groups: + - print_error_breakdown + statistic: sum + - metric: name_not_found + metric_groups: + - print_error_breakdown + statistic: sum + - metric: enddoc + metric_groups: + - print_error_breakdown + statistic: sum + - metric: startdoc + metric_groups: + - print_error_breakdown + statistic: sum + - metric: gfx_printer_doc_is_busy + metric_groups: + - print_error_breakdown + statistic: sum + - metric: total_printing_errors_new_ui + metric_groups: + - print_error_by_ui + statistic: sum - metric: print_failure metric_groups: - print_error_breakdown @@ -12080,46 +12109,15 @@ operational_monitoring: metric_groups: - print_error_breakdown statistic: sum - - metric: start_page - metric_groups: - - print_error_breakdown - statistic: sum - - metric: abort - metric_groups: - - print_error_breakdown - statistic: sum - - metric: name_not_found - metric_groups: - - print_error_breakdown - statistic: sum - metric: no_printer metric_groups: - print_error_breakdown statistic: sum - - metric: unexpected - metric_groups: - - print_error_breakdown - statistic: sum - metric: not_available metric_groups: - print_error_breakdown statistic: sum - - metric: total_printing_errors_new_ui - metric_groups: - - print_error_by_ui - statistic: sum - - metric: gfx_printer_doc_is_busy - metric_groups: - - print_error_breakdown - statistic: sum - - metric: startdoc - metric_groups: - - print_error_breakdown - statistic: sum - - metric: total_printing_errors - metric_groups: [] - statistic: sum - - metric: cannot_open_file + - metric: oom metric_groups: - print_error_breakdown statistic: sum @@ -12127,11 +12125,18 @@ operational_monitoring: metric_groups: - print_error_by_ui statistic: sum - - metric: enddoc + - metric: total_printing_errors + metric_groups: [] + statistic: sum + - metric: abort metric_groups: - print_error_breakdown statistic: sum - - metric: oom + - metric: unexpected + metric_groups: + - print_error_breakdown + statistic: sum + - metric: start_page metric_groups: - print_error_breakdown statistic: sum @@ -12187,28 +12192,28 @@ operational_monitoring: explore: product_insight_telemetry_via_server_knobs_rollout_release group_by_dimension: null summaries: &id447 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.product_insight_telemetry_via_server_knobs_rollout_release_statistics @@ -12225,28 +12230,28 @@ operational_monitoring: explore: product_insight_telemetry_via_server_knobs_v123_and_earlier group_by_dimension: null summaries: &id450 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.product_insight_telemetry_via_server_knobs_v123_and_earlier_statistics @@ -12263,28 +12268,28 @@ operational_monitoring: explore: pxi_toolbar_default_visibility_rollout group_by_dimension: null summaries: &id453 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.pxi_toolbar_default_visibility_rollout_statistics @@ -12301,28 +12306,28 @@ operational_monitoring: explore: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users group_by_dimension: null summaries: &id456 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users_statistics @@ -12339,28 +12344,28 @@ operational_monitoring: explore: relay_integration_into_firefox_beta_for_all_fxa_users group_by_dimension: null summaries: &id459 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.relay_integration_into_firefox_beta_for_all_fxa_users_statistics @@ -12377,28 +12382,28 @@ operational_monitoring: explore: relay_integration_into_firefox_nightly_for_all_fxa_users group_by_dimension: null summaries: &id462 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.relay_integration_into_firefox_nightly_for_all_fxa_users_statistics @@ -12415,28 +12420,28 @@ operational_monitoring: explore: relay_integration_into_firefox_release_for_all_fxa_users group_by_dimension: null summaries: &id465 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.relay_integration_into_firefox_release_for_all_fxa_users_statistics @@ -12488,28 +12493,28 @@ operational_monitoring: explore: release_experiment_for_additional_metrics_for_product_insights_rollout group_by_dimension: null summaries: &id471 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.release_experiment_for_additional_metrics_for_product_insights_rollout_statistics @@ -12593,25 +12598,25 @@ operational_monitoring: explore: review_checker_continuity_rollout group_by_dimension: null summaries: &id480 - - metric: tagged_sap_searches + - metric: active_hours metric_groups: [] statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: tagged_sap_searches + metric_groups: [] + statistic: mean + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.review_checker_continuity_rollout_statistics @@ -12628,19 +12633,19 @@ operational_monitoring: explore: review_checker_continuity_rollout_ios group_by_dimension: null summaries: &id483 - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count + - metric: active_hours metric_groups: [] statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.review_checker_continuity_rollout_ios_statistics @@ -12657,28 +12662,28 @@ operational_monitoring: explore: review_checker_continuity_rollout_post_119 group_by_dimension: null summaries: &id486 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.review_checker_continuity_rollout_post_119_statistics @@ -12695,28 +12700,28 @@ operational_monitoring: explore: review_checker_staged_rollout_no_survey group_by_dimension: null summaries: &id489 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.review_checker_staged_rollout_no_survey_statistics @@ -12733,28 +12738,28 @@ operational_monitoring: explore: review_checker_staged_rollout_no_survey_beta group_by_dimension: null summaries: &id492 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.review_checker_staged_rollout_no_survey_beta_statistics @@ -12771,28 +12776,28 @@ operational_monitoring: explore: rollout_100_experiment_for_additional_metrics_for_product_insights_new group_by_dimension: null summaries: &id495 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.rollout_100_experiment_for_additional_metrics_for_product_insights_new_statistics @@ -12913,28 +12918,28 @@ operational_monitoring: explore: rollout_of_share_of_voice_for_sponsored_topsites group_by_dimension: null summaries: &id507 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.rollout_of_share_of_voice_for_sponsored_topsites_statistics @@ -13060,28 +13065,28 @@ operational_monitoring: explore: serp_ad_telemetry_rollout_previous_to_118 group_by_dimension: null summaries: &id519 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.serp_ad_telemetry_rollout_previous_to_118_statistics @@ -13279,28 +13284,28 @@ operational_monitoring: explore: spocs_endpoint_rollout_beta group_by_dimension: null summaries: &id537 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.spocs_endpoint_rollout_beta_statistics @@ -13317,28 +13322,28 @@ operational_monitoring: explore: spocs_endpoint_rollout_nightly group_by_dimension: null summaries: &id540 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.spocs_endpoint_rollout_nightly_statistics @@ -13355,28 +13360,28 @@ operational_monitoring: explore: spocs_endpoint_rollout_release group_by_dimension: null summaries: &id543 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.spocs_endpoint_rollout_release_statistics @@ -13664,39 +13669,39 @@ operational_monitoring: explore: telemetry_alerts_prototype group_by_dimension: null summaries: &id570 - - metric: gc_ms - metric_groups: [] - statistic: percentile - - metric: js_pageload_execution_ms - metric_groups: [] - statistic: percentile - - metric: active_ticks - metric_groups: [] - statistic: percentile - - metric: main_crashes - metric_groups: [] - statistic: sum - - metric: gc_ms_content - metric_groups: [] - statistic: percentile - - metric: memory_total - metric_groups: [] - statistic: percentile - - metric: oom_crashes - metric_groups: [] - statistic: sum - - metric: checkerboard_severity - metric_groups: [] - statistic: percentile - - metric: perf_first_contentful_paint_ms - metric_groups: [] - statistic: percentile - metric: subsession_length metric_groups: [] statistic: percentile - metric: gc_budget_overrun metric_groups: [] statistic: percentile + - metric: main_crashes + metric_groups: [] + statistic: sum + - metric: active_ticks + metric_groups: [] + statistic: percentile + - metric: js_pageload_execution_ms + metric_groups: [] + statistic: percentile + - metric: perf_first_contentful_paint_ms + metric_groups: [] + statistic: percentile + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: gc_ms_content + metric_groups: [] + statistic: percentile + - metric: gc_ms + metric_groups: [] + statistic: percentile + - metric: checkerboard_severity + metric_groups: [] + statistic: percentile + - metric: oom_crashes + metric_groups: [] + statistic: sum table: moz-fx-data-shared-prod.operational_monitoring.telemetry_alerts_prototype_statistics xaxis: build_id - explore: telemetry_alerts_prototype_alerts @@ -13853,28 +13858,28 @@ operational_monitoring: explore: upgrade_spotlight_rollout group_by_dimension: null summaries: &id585 + - metric: active_hours + metric_groups: [] + statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: qualified_cumulative_days_of_use - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean - - metric: memory_total + - metric: retained metric_groups: [] - statistic: percentile + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: memory_total + metric_groups: [] + statistic: percentile + - metric: search_count + metric_groups: [] + statistic: mean + - metric: qualified_cumulative_days_of_use metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.upgrade_spotlight_rollout_statistics @@ -14148,25 +14153,25 @@ operational_monitoring: explore: viewpoint_android_march_2024_launch group_by_dimension: null summaries: &id609 - - metric: tagged_sap_searches + - metric: active_hours metric_groups: [] statistic: mean - metric: uri_count metric_groups: [] statistic: mean - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count - metric_groups: [] - statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: tagged_sap_searches + metric_groups: [] + statistic: mean + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.viewpoint_android_march_2024_launch_statistics @@ -14471,19 +14476,19 @@ operational_monitoring: explore: viewpoint_ios_march_2024_launch group_by_dimension: null summaries: &id639 - - metric: retained - metric_groups: [] - statistic: mean - - metric: search_count + - metric: active_hours metric_groups: [] statistic: mean - metric: ad_clicks metric_groups: [] statistic: mean + - metric: retained + metric_groups: [] + statistic: mean - metric: days_of_use metric_groups: [] statistic: mean - - metric: active_hours + - metric: search_count metric_groups: [] statistic: mean table: moz-fx-data-shared-prod.operational_monitoring.viewpoint_ios_march_2024_launch_statistics diff --git a/operational_monitoring/dashboards/add_an_image_to_pdf_with_alt_text_rollout.dashboard.lookml b/operational_monitoring/dashboards/add_an_image_to_pdf_with_alt_text_rollout.dashboard.lookml index 7ddf1869e..1b884f5ab 100644 --- a/operational_monitoring/dashboards/add_an_image_to_pdf_with_alt_text_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/add_an_image_to_pdf_with_alt_text_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/address_autofill_desktop_pref_beta_rollout.dashboard.lookml b/operational_monitoring/dashboards/address_autofill_desktop_pref_beta_rollout.dashboard.lookml index 667d65c09..827042842 100644 --- a/operational_monitoring/dashboards/address_autofill_desktop_pref_beta_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/address_autofill_desktop_pref_beta_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/address_autofill_desktop_pref_nightly_rollout.dashboard.lookml b/operational_monitoring/dashboards/address_autofill_desktop_pref_nightly_rollout.dashboard.lookml index db203f720..79ed88840 100644 --- a/operational_monitoring/dashboards/address_autofill_desktop_pref_nightly_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/address_autofill_desktop_pref_nightly_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/address_autofill_desktop_pref_release_rollout.dashboard.lookml b/operational_monitoring/dashboards/address_autofill_desktop_pref_release_rollout.dashboard.lookml index ed1fb25a8..b5fa4f2d2 100644 --- a/operational_monitoring/dashboards/address_autofill_desktop_pref_release_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/address_autofill_desktop_pref_release_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/all_browsers_dau.dashboard.lookml b/operational_monitoring/dashboards/all_browsers_dau.dashboard.lookml index 8399fafaf..17010c8ea 100644 --- a/operational_monitoring/dashboards/all_browsers_dau.dashboard.lookml +++ b/operational_monitoring/dashboards/all_browsers_dau.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/android_add_ons_extension_process.dashboard.lookml b/operational_monitoring/dashboards/android_add_ons_extension_process.dashboard.lookml index 1b9fdb183..4b0ec5edc 100644 --- a/operational_monitoring/dashboards/android_add_ons_extension_process.dashboard.lookml +++ b/operational_monitoring/dashboards/android_add_ons_extension_process.dashboard.lookml @@ -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" diff --git a/operational_monitoring/dashboards/android_add_ons_extension_process_beta.dashboard.lookml b/operational_monitoring/dashboards/android_add_ons_extension_process_beta.dashboard.lookml index 14f8c4ab1..1cdae8922 100644 --- a/operational_monitoring/dashboards/android_add_ons_extension_process_beta.dashboard.lookml +++ b/operational_monitoring/dashboards/android_add_ons_extension_process_beta.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/android_add_ons_extension_process_release_rollout.dashboard.lookml b/operational_monitoring/dashboards/android_add_ons_extension_process_release_rollout.dashboard.lookml index ea4e2a236..1c67a609e 100644 --- a/operational_monitoring/dashboards/android_add_ons_extension_process_release_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/android_add_ons_extension_process_release_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/android_default_toolbar_placement_treatment_a_rollout.dashboard.lookml b/operational_monitoring/dashboards/android_default_toolbar_placement_treatment_a_rollout.dashboard.lookml index 63302f219..7e549a20e 100644 --- a/operational_monitoring/dashboards/android_default_toolbar_placement_treatment_a_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/android_default_toolbar_placement_treatment_a_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/awesome_bar_result_menu_rollout_phase_1.dashboard.lookml b/operational_monitoring/dashboards/awesome_bar_result_menu_rollout_phase_1.dashboard.lookml index 175411ecb..6943f929b 100644 --- a/operational_monitoring/dashboards/awesome_bar_result_menu_rollout_phase_1.dashboard.lookml +++ b/operational_monitoring/dashboards/awesome_bar_result_menu_rollout_phase_1.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3.dashboard.lookml b/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3.dashboard.lookml index 5dc0d2467..28d891ec2 100644 --- a/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3.dashboard.lookml +++ b/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_nightly.dashboard.lookml b/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_nightly.dashboard.lookml index 6c24cbe87..498d9300e 100644 --- a/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_nightly.dashboard.lookml +++ b/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_nightly.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_release.dashboard.lookml b/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_release.dashboard.lookml index 931509121..6430c2973 100644 --- a/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_release.dashboard.lookml +++ b/operational_monitoring/dashboards/backgroundupdate_enable_unelevated_installations_rollout_3_release.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/csv_import.dashboard.lookml b/operational_monitoring/dashboards/csv_import.dashboard.lookml index e8494c711..aa398e4c5 100644 --- a/operational_monitoring/dashboards/csv_import.dashboard.lookml +++ b/operational_monitoring/dashboards/csv_import.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/csv_import_beta_rollout.dashboard.lookml b/operational_monitoring/dashboards/csv_import_beta_rollout.dashboard.lookml index dfb724862..cdbe8b4c3 100644 --- a/operational_monitoring/dashboards/csv_import_beta_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/csv_import_beta_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/csv_import_release_rollout.dashboard.lookml b/operational_monitoring/dashboards/csv_import_release_rollout.dashboard.lookml index 179095ceb..f829aeb81 100644 --- a/operational_monitoring/dashboards/csv_import_release_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/csv_import_release_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/desktop_dau.dashboard.lookml b/operational_monitoring/dashboards/desktop_dau.dashboard.lookml index 846001b2a..d77e65808 100644 --- a/operational_monitoring/dashboards/desktop_dau.dashboard.lookml +++ b/operational_monitoring/dashboards/desktop_dau.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population.dashboard.lookml b/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population.dashboard.lookml index e035967cf..1e7740cb7 100644 --- a/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population.dashboard.lookml +++ b/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population_esr.dashboard.lookml b/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population_esr.dashboard.lookml index fbdcc9af1..d5539a27b 100644 --- a/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population_esr.dashboard.lookml +++ b/operational_monitoring/dashboards/device_migration_q4_spotlights_remaining_population_esr.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/ech_roll_out.dashboard.lookml b/operational_monitoring/dashboards/ech_roll_out.dashboard.lookml index c12ebb229..be69f2791 100644 --- a/operational_monitoring/dashboards/ech_roll_out.dashboard.lookml +++ b/operational_monitoring/dashboards/ech_roll_out.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/enable_activation_telemetry_android.dashboard.lookml b/operational_monitoring/dashboards/enable_activation_telemetry_android.dashboard.lookml index 4f793a25f..309d1aa6f 100644 --- a/operational_monitoring/dashboards/enable_activation_telemetry_android.dashboard.lookml +++ b/operational_monitoring/dashboards/enable_activation_telemetry_android.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/extensions_migration_in_import_wizard_116_rollout.dashboard.lookml b/operational_monitoring/dashboards/extensions_migration_in_import_wizard_116_rollout.dashboard.lookml index b69645756..4c749b7c8 100644 --- a/operational_monitoring/dashboards/extensions_migration_in_import_wizard_116_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/extensions_migration_in_import_wizard_116_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/firefox_background_update.dashboard.lookml b/operational_monitoring/dashboards/firefox_background_update.dashboard.lookml index 611b70a5c..cc405862b 100644 --- a/operational_monitoring/dashboards/firefox_background_update.dashboard.lookml +++ b/operational_monitoring/dashboards/firefox_background_update.dashboard.lookml @@ -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' diff --git a/operational_monitoring/dashboards/firefox_default_browser_agent.dashboard.lookml b/operational_monitoring/dashboards/firefox_default_browser_agent.dashboard.lookml index 728cd8670..a2f3af441 100644 --- a/operational_monitoring/dashboards/firefox_default_browser_agent.dashboard.lookml +++ b/operational_monitoring/dashboards/firefox_default_browser_agent.dashboard.lookml @@ -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' diff --git a/operational_monitoring/dashboards/firefox_install_demo.dashboard.lookml b/operational_monitoring/dashboards/firefox_install_demo.dashboard.lookml index df3d9b475..6afa03600 100644 --- a/operational_monitoring/dashboards/firefox_install_demo.dashboard.lookml +++ b/operational_monitoring/dashboards/firefox_install_demo.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/firefox_ios_health.dashboard.lookml b/operational_monitoring/dashboards/firefox_ios_health.dashboard.lookml index b560132e2..520a2236d 100644 --- a/operational_monitoring/dashboards/firefox_ios_health.dashboard.lookml +++ b/operational_monitoring/dashboards/firefox_ios_health.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/firefox_messaging_system.dashboard.lookml b/operational_monitoring/dashboards/firefox_messaging_system.dashboard.lookml index 7d9b5c257..e6a8a287f 100644 --- a/operational_monitoring/dashboards/firefox_messaging_system.dashboard.lookml +++ b/operational_monitoring/dashboards/firefox_messaging_system.dashboard.lookml @@ -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' diff --git a/operational_monitoring/dashboards/firefox_user_choice.dashboard.lookml b/operational_monitoring/dashboards/firefox_user_choice.dashboard.lookml index 2db5efe33..3b525aa65 100644 --- a/operational_monitoring/dashboards/firefox_user_choice.dashboard.lookml +++ b/operational_monitoring/dashboards/firefox_user_choice.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Errexetimeout Event Volume - name: Errexetimeout Event Volume_sum + - title: Success Client Volume + name: Success Client Volume_sum note_state: expanded note_display: above note_text: Sum @@ -26,7 +26,7 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrExeTimeout_event_volume' + firefox_user_choice.metric: 'Success_client_volume' firefox_user_choice.statistic: sum row: 0 col: 0 @@ -46,8 +46,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Errexetimeout Event Volume - name: Errexetimeout Event Volume_total_ratio + - title: Success Client Volume + name: Success Client Volume_total_ratio note_state: expanded note_display: above note_text: Total_Ratio @@ -62,7 +62,7 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrExeTimeout_event_volume' + firefox_user_choice.metric: 'Success_client_volume' firefox_user_choice.statistic: total_ratio row: 0 col: 12 @@ -80,510 +80,6 @@ Normalized Channel: firefox_user_choice.normalized_channel Windows Version: firefox_user_choice.windows_version - active: "#3FE1B0" - defaults_version: 0 - - title: Errbuild Client Volume - name: Errbuild Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrBuild_client_volume' - firefox_user_choice.statistic: sum - row: 10 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errbuild Client Volume - name: Errbuild Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrBuild_client_volume' - firefox_user_choice.statistic: total_ratio - row: 10 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Not Success Client Volume - name: Not Success Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'not_Success_client_volume' - firefox_user_choice.statistic: sum - row: 20 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Not Success Client Volume - name: Not Success Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'not_Success_client_volume' - firefox_user_choice.statistic: total_ratio - row: 20 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexerejected Client Volume - name: Errexerejected Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeRejected_client_volume' - firefox_user_choice.statistic: sum - row: 30 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexerejected Client Volume - name: Errexerejected Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeRejected_client_volume' - firefox_user_choice.statistic: total_ratio - row: 30 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexehash Event Volume - name: Errexehash Event Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeHash_event_volume' - firefox_user_choice.statistic: sum - row: 40 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexehash Event Volume - name: Errexehash Event Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeHash_event_volume' - firefox_user_choice.statistic: total_ratio - row: 40 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexerejected Event Volume - name: Errexerejected Event Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeRejected_event_volume' - firefox_user_choice.statistic: sum - row: 50 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexerejected Event Volume - name: Errexerejected Event Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeRejected_event_volume' - firefox_user_choice.statistic: total_ratio - row: 50 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errprogid Event Volume - name: Errprogid Event Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrProgID_event_volume' - firefox_user_choice.statistic: sum - row: 60 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errprogid Event Volume - name: Errprogid Event Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrProgID_event_volume' - firefox_user_choice.statistic: total_ratio - row: 60 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexetimeout Client Volume - name: Errexetimeout Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeTimeout_client_volume' - firefox_user_choice.statistic: sum - row: 70 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexetimeout Client Volume - name: Errexetimeout Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeTimeout_client_volume' - firefox_user_choice.statistic: total_ratio - row: 70 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - active: "#3FE1B0" defaults_version: 0 - title: Errhash Client Volume @@ -604,7 +100,7 @@ filters: firefox_user_choice.metric: 'ErrHash_client_volume' firefox_user_choice.statistic: sum - row: 80 + row: 10 col: 0 width: 12 height: 8 @@ -640,7 +136,7 @@ filters: firefox_user_choice.metric: 'ErrHash_client_volume' firefox_user_choice.statistic: total_ratio - row: 80 + row: 10 col: 12 width: 12 height: 8 @@ -658,8 +154,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Errprogid Client Volume - name: Errprogid Client Volume_sum + - title: Errother Event Volume + name: Errother Event Volume_sum note_state: expanded note_display: above note_text: Sum @@ -674,9 +170,9 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrProgID_client_volume' + firefox_user_choice.metric: 'ErrOther_event_volume' firefox_user_choice.statistic: sum - row: 90 + row: 20 col: 0 width: 12 height: 8 @@ -694,8 +190,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Errprogid Client Volume - name: Errprogid Client Volume_total_ratio + - title: Errother Event Volume + name: Errother Event Volume_total_ratio note_state: expanded note_display: above note_text: Total_Ratio @@ -710,81 +206,9 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrProgID_client_volume' + firefox_user_choice.metric: 'ErrOther_event_volume' firefox_user_choice.statistic: total_ratio - row: 90 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexeprogid Client Volume - name: Errexeprogid Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeProgID_client_volume' - firefox_user_choice.statistic: sum - row: 100 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexeprogid Client Volume - name: Errexeprogid Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeProgID_client_volume' - firefox_user_choice.statistic: total_ratio - row: 100 + row: 20 col: 12 width: 12 height: 8 @@ -820,7 +244,7 @@ filters: firefox_user_choice.metric: 'ErrExeOther_event_volume' firefox_user_choice.statistic: sum - row: 110 + row: 30 col: 0 width: 12 height: 8 @@ -856,439 +280,7 @@ filters: firefox_user_choice.metric: 'ErrExeOther_event_volume' firefox_user_choice.statistic: total_ratio - row: 110 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexehash Client Volume - name: Errexehash Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeHash_client_volume' - firefox_user_choice.statistic: sum - row: 120 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexehash Client Volume - name: Errexehash Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeHash_client_volume' - firefox_user_choice.statistic: total_ratio - row: 120 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errlaunchexe Client Volume - name: Errlaunchexe Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrLaunchExe_client_volume' - firefox_user_choice.statistic: sum - row: 130 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errlaunchexe Client Volume - name: Errlaunchexe Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrLaunchExe_client_volume' - firefox_user_choice.statistic: total_ratio - row: 130 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexeother Client Volume - name: Errexeother Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeOther_client_volume' - firefox_user_choice.statistic: sum - row: 140 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errexeother Client Volume - name: Errexeother Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrExeOther_client_volume' - firefox_user_choice.statistic: total_ratio - row: 140 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errbuild Event Volume - name: Errbuild Event Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrBuild_event_volume' - firefox_user_choice.statistic: sum - row: 150 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errbuild Event Volume - name: Errbuild Event Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrBuild_event_volume' - firefox_user_choice.statistic: total_ratio - row: 150 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errother Client Volume - name: Errother Client Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrOther_client_volume' - firefox_user_choice.statistic: sum - row: 160 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errother Client Volume - name: Errother Client Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrOther_client_volume' - firefox_user_choice.statistic: total_ratio - row: 160 - col: 12 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errlaunchexe Event Volume - name: Errlaunchexe Event Volume_sum - note_state: expanded - note_display: above - note_text: Sum - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrLaunchExe_event_volume' - firefox_user_choice.statistic: sum - row: 170 - col: 0 - width: 12 - height: 8 - field_x: firefox_user_choice.submission_date - field_y: firefox_user_choice.point - log_scale: false - ci_lower: firefox_user_choice.lower - ci_upper: firefox_user_choice.upper - show_grid: true - listen: - Date: firefox_user_choice.submission_date - Is Msix: firefox_user_choice.is_msix - Normalized Channel: firefox_user_choice.normalized_channel - Windows Version: firefox_user_choice.windows_version - - active: "#3FE1B0" - defaults_version: 0 - - title: Errlaunchexe Event Volume - name: Errlaunchexe Event Volume_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: firefox_user_choice - type: looker_line - fields: [ - firefox_user_choice.submission_date, - firefox_user_choice.branch, - firefox_user_choice.point - ] - pivots: [ - firefox_user_choice.branch - ] - filters: - firefox_user_choice.metric: 'ErrLaunchExe_event_volume' - firefox_user_choice.statistic: total_ratio - row: 170 + row: 30 col: 12 width: 12 height: 8 @@ -1324,7 +316,7 @@ filters: firefox_user_choice.metric: 'ErrExeProgID_event_volume' firefox_user_choice.statistic: sum - row: 180 + row: 40 col: 0 width: 12 height: 8 @@ -1360,7 +352,511 @@ filters: firefox_user_choice.metric: 'ErrExeProgID_event_volume' firefox_user_choice.statistic: total_ratio - row: 180 + row: 40 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errhash Event Volume + name: Errhash Event Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrHash_event_volume' + firefox_user_choice.statistic: sum + row: 50 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errhash Event Volume + name: Errhash Event Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrHash_event_volume' + firefox_user_choice.statistic: total_ratio + row: 50 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexerejected Client Volume + name: Errexerejected Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeRejected_client_volume' + firefox_user_choice.statistic: sum + row: 60 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexerejected Client Volume + name: Errexerejected Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeRejected_client_volume' + firefox_user_choice.statistic: total_ratio + row: 60 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Not Success Client Volume + name: Not Success Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'not_Success_client_volume' + firefox_user_choice.statistic: sum + row: 70 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Not Success Client Volume + name: Not Success Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'not_Success_client_volume' + firefox_user_choice.statistic: total_ratio + row: 70 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexerejected Event Volume + name: Errexerejected Event Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeRejected_event_volume' + firefox_user_choice.statistic: sum + row: 80 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexerejected Event Volume + name: Errexerejected Event Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeRejected_event_volume' + firefox_user_choice.statistic: total_ratio + row: 80 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexeprogid Client Volume + name: Errexeprogid Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeProgID_client_volume' + firefox_user_choice.statistic: sum + row: 90 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexeprogid Client Volume + name: Errexeprogid Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeProgID_client_volume' + firefox_user_choice.statistic: total_ratio + row: 90 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errprogid Event Volume + name: Errprogid Event Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrProgID_event_volume' + firefox_user_choice.statistic: sum + row: 100 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errprogid Event Volume + name: Errprogid Event Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrProgID_event_volume' + firefox_user_choice.statistic: total_ratio + row: 100 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexehash Event Volume + name: Errexehash Event Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeHash_event_volume' + firefox_user_choice.statistic: sum + row: 110 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexehash Event Volume + name: Errexehash Event Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeHash_event_volume' + firefox_user_choice.statistic: total_ratio + row: 110 col: 12 width: 12 height: 8 @@ -1396,7 +892,7 @@ filters: firefox_user_choice.metric: 'total_client_volume' firefox_user_choice.statistic: sum - row: 190 + row: 120 col: 0 width: 12 height: 8 @@ -1414,8 +910,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Errother Event Volume - name: Errother Event Volume_sum + - title: Errexetimeout Event Volume + name: Errexetimeout Event Volume_sum note_state: expanded note_display: above note_text: Sum @@ -1430,9 +926,9 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrOther_event_volume' + firefox_user_choice.metric: 'ErrExeTimeout_event_volume' firefox_user_choice.statistic: sum - row: 190 + row: 120 col: 12 width: 12 height: 8 @@ -1450,8 +946,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Errother Event Volume - name: Errother Event Volume_total_ratio + - title: Errexetimeout Event Volume + name: Errexetimeout Event Volume_total_ratio note_state: expanded note_display: above note_text: Total_Ratio @@ -1466,9 +962,9 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrOther_event_volume' + firefox_user_choice.metric: 'ErrExeTimeout_event_volume' firefox_user_choice.statistic: total_ratio - row: 200 + row: 130 col: 0 width: 12 height: 8 @@ -1504,7 +1000,7 @@ filters: firefox_user_choice.metric: 'not_Success_event_volume' firefox_user_choice.statistic: sum - row: 200 + row: 130 col: 12 width: 12 height: 8 @@ -1540,7 +1036,7 @@ filters: firefox_user_choice.metric: 'not_Success_event_volume' firefox_user_choice.statistic: total_ratio - row: 210 + row: 140 col: 0 width: 12 height: 8 @@ -1558,8 +1054,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Errhash Event Volume - name: Errhash Event Volume_sum + - title: Errlaunchexe Event Volume + name: Errlaunchexe Event Volume_sum note_state: expanded note_display: above note_text: Sum @@ -1574,9 +1070,9 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrHash_event_volume' + firefox_user_choice.metric: 'ErrLaunchExe_event_volume' firefox_user_choice.statistic: sum - row: 210 + row: 140 col: 12 width: 12 height: 8 @@ -1594,8 +1090,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Errhash Event Volume - name: Errhash Event Volume_total_ratio + - title: Errlaunchexe Event Volume + name: Errlaunchexe Event Volume_total_ratio note_state: expanded note_display: above note_text: Total_Ratio @@ -1610,9 +1106,81 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'ErrHash_event_volume' + firefox_user_choice.metric: 'ErrLaunchExe_event_volume' firefox_user_choice.statistic: total_ratio - row: 220 + row: 150 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errbuild Event Volume + name: Errbuild Event Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrBuild_event_volume' + firefox_user_choice.statistic: sum + row: 150 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errbuild Event Volume + name: Errbuild Event Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrBuild_event_volume' + firefox_user_choice.statistic: total_ratio + row: 160 col: 0 width: 12 height: 8 @@ -1648,7 +1216,7 @@ filters: firefox_user_choice.metric: 'Success_event_volume' firefox_user_choice.statistic: sum - row: 220 + row: 160 col: 12 width: 12 height: 8 @@ -1684,7 +1252,295 @@ filters: firefox_user_choice.metric: 'Success_event_volume' firefox_user_choice.statistic: total_ratio - row: 230 + row: 170 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errprogid Client Volume + name: Errprogid Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrProgID_client_volume' + firefox_user_choice.statistic: sum + row: 170 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errprogid Client Volume + name: Errprogid Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrProgID_client_volume' + firefox_user_choice.statistic: total_ratio + row: 180 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errother Client Volume + name: Errother Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrOther_client_volume' + firefox_user_choice.statistic: sum + row: 180 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errother Client Volume + name: Errother Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrOther_client_volume' + firefox_user_choice.statistic: total_ratio + row: 190 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexetimeout Client Volume + name: Errexetimeout Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeTimeout_client_volume' + firefox_user_choice.statistic: sum + row: 190 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexetimeout Client Volume + name: Errexetimeout Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeTimeout_client_volume' + firefox_user_choice.statistic: total_ratio + row: 200 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexehash Client Volume + name: Errexehash Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeHash_client_volume' + firefox_user_choice.statistic: sum + row: 200 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexehash Client Volume + name: Errexehash Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeHash_client_volume' + firefox_user_choice.statistic: total_ratio + row: 210 col: 0 width: 12 height: 8 @@ -1720,6 +1576,150 @@ filters: firefox_user_choice.metric: 'total_event_volume' firefox_user_choice.statistic: sum + row: 210 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexeother Client Volume + name: Errexeother Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeOther_client_volume' + firefox_user_choice.statistic: sum + row: 220 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errexeother Client Volume + name: Errexeother Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrExeOther_client_volume' + firefox_user_choice.statistic: total_ratio + row: 220 + col: 12 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errbuild Client Volume + name: Errbuild Client Volume_sum + note_state: expanded + note_display: above + note_text: Sum + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrBuild_client_volume' + firefox_user_choice.statistic: sum + row: 230 + col: 0 + width: 12 + height: 8 + field_x: firefox_user_choice.submission_date + field_y: firefox_user_choice.point + log_scale: false + ci_lower: firefox_user_choice.lower + ci_upper: firefox_user_choice.upper + show_grid: true + listen: + Date: firefox_user_choice.submission_date + Is Msix: firefox_user_choice.is_msix + Normalized Channel: firefox_user_choice.normalized_channel + Windows Version: firefox_user_choice.windows_version + + active: "#3FE1B0" + defaults_version: 0 + - title: Errbuild Client Volume + name: Errbuild Client Volume_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: firefox_user_choice + type: looker_line + fields: [ + firefox_user_choice.submission_date, + firefox_user_choice.branch, + firefox_user_choice.point + ] + pivots: [ + firefox_user_choice.branch + ] + filters: + firefox_user_choice.metric: 'ErrBuild_client_volume' + firefox_user_choice.statistic: total_ratio row: 230 col: 12 width: 12 @@ -1738,8 +1738,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Success Client Volume - name: Success Client Volume_sum + - title: Errlaunchexe Client Volume + name: Errlaunchexe Client Volume_sum note_state: expanded note_display: above note_text: Sum @@ -1754,7 +1754,7 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'Success_client_volume' + firefox_user_choice.metric: 'ErrLaunchExe_client_volume' firefox_user_choice.statistic: sum row: 240 col: 0 @@ -1774,8 +1774,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Success Client Volume - name: Success Client Volume_total_ratio + - title: Errlaunchexe Client Volume + name: Errlaunchexe Client Volume_total_ratio note_state: expanded note_display: above note_text: Total_Ratio @@ -1790,7 +1790,7 @@ firefox_user_choice.branch ] filters: - firefox_user_choice.metric: 'Success_client_volume' + firefox_user_choice.metric: 'ErrLaunchExe_client_volume' firefox_user_choice.statistic: total_ratio row: 240 col: 12 diff --git a/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.dashboard.lookml b/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.dashboard.lookml index 302989d2a..e264cea17 100644 --- a/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_de_fr_it_treatment_a_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.dashboard.lookml b/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.dashboard.lookml index 460cc58d5..e7c510a46 100644 --- a/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/fox_doodle_set_to_default_early_day_user_en_treatment_a_rollout.dashboard.lookml @@ -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 diff --git a/operational_monitoring/dashboards/garbage_collection.dashboard.lookml b/operational_monitoring/dashboards/garbage_collection.dashboard.lookml index e2328dac7..ccdfe330b 100644 --- a/operational_monitoring/dashboards/garbage_collection.dashboard.lookml +++ b/operational_monitoring/dashboards/garbage_collection.dashboard.lookml @@ -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' diff --git a/operational_monitoring/dashboards/ios_cc_autofill_rollout.dashboard.lookml b/operational_monitoring/dashboards/ios_cc_autofill_rollout.dashboard.lookml index bf6be3e09..d5af0dde7 100644 --- a/operational_monitoring/dashboards/ios_cc_autofill_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/ios_cc_autofill_rollout.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Retained - name: Retained_mean + - title: Active Hours + name: Active Hours_mean note_state: expanded note_display: above note_text: Mean @@ -26,7 +26,7 @@ ios_cc_autofill_rollout.branch ] filters: - ios_cc_autofill_rollout.metric: 'retained' + ios_cc_autofill_rollout.metric: 'active_hours' ios_cc_autofill_rollout.statistic: mean row: 0 col: 0 @@ -41,40 +41,6 @@ listen: Date: ios_cc_autofill_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: ios_cc_autofill_rollout - type: looker_line - fields: [ - ios_cc_autofill_rollout.submission_date, - ios_cc_autofill_rollout.branch, - ios_cc_autofill_rollout.point - ] - pivots: [ - ios_cc_autofill_rollout.branch - ] - filters: - ios_cc_autofill_rollout.metric: 'search_count' - ios_cc_autofill_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: ios_cc_autofill_rollout.submission_date - field_y: ios_cc_autofill_rollout.point - log_scale: false - ci_lower: ios_cc_autofill_rollout.lower - ci_upper: ios_cc_autofill_rollout.upper - show_grid: true - listen: - Date: ios_cc_autofill_rollout.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -96,6 +62,40 @@ filters: ios_cc_autofill_rollout.metric: 'ad_clicks' ios_cc_autofill_rollout.statistic: mean + row: 0 + col: 12 + width: 12 + height: 8 + field_x: ios_cc_autofill_rollout.submission_date + field_y: ios_cc_autofill_rollout.point + log_scale: false + ci_lower: ios_cc_autofill_rollout.lower + ci_upper: ios_cc_autofill_rollout.upper + show_grid: true + listen: + Date: ios_cc_autofill_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: ios_cc_autofill_rollout + type: looker_line + fields: [ + ios_cc_autofill_rollout.submission_date, + ios_cc_autofill_rollout.branch, + ios_cc_autofill_rollout.point + ] + pivots: [ + ios_cc_autofill_rollout.branch + ] + filters: + ios_cc_autofill_rollout.metric: 'retained' + ios_cc_autofill_rollout.statistic: mean row: 10 col: 0 width: 12 @@ -146,8 +146,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 @@ -162,7 +162,7 @@ ios_cc_autofill_rollout.branch ] filters: - ios_cc_autofill_rollout.metric: 'active_hours' + ios_cc_autofill_rollout.metric: 'search_count' ios_cc_autofill_rollout.statistic: mean row: 20 col: 0 diff --git a/operational_monitoring/dashboards/ios_dma_onboarding.dashboard.lookml b/operational_monitoring/dashboards/ios_dma_onboarding.dashboard.lookml index 6e79797b9..2974ae6c8 100644 --- a/operational_monitoring/dashboards/ios_dma_onboarding.dashboard.lookml +++ b/operational_monitoring/dashboards/ios_dma_onboarding.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Retained - name: Retained_mean + - title: Active Hours + name: Active Hours_mean note_state: expanded note_display: above note_text: Mean @@ -26,7 +26,7 @@ ios_dma_onboarding.branch ] filters: - ios_dma_onboarding.metric: 'retained' + ios_dma_onboarding.metric: 'active_hours' ios_dma_onboarding.statistic: mean row: 0 col: 0 @@ -41,40 +41,6 @@ listen: Date: ios_dma_onboarding.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: ios_dma_onboarding - type: looker_line - fields: [ - ios_dma_onboarding.submission_date, - ios_dma_onboarding.branch, - ios_dma_onboarding.point - ] - pivots: [ - ios_dma_onboarding.branch - ] - filters: - ios_dma_onboarding.metric: 'search_count' - ios_dma_onboarding.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: ios_dma_onboarding.submission_date - field_y: ios_dma_onboarding.point - log_scale: false - ci_lower: ios_dma_onboarding.lower - ci_upper: ios_dma_onboarding.upper - show_grid: true - listen: - Date: ios_dma_onboarding.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -96,6 +62,40 @@ filters: ios_dma_onboarding.metric: 'ad_clicks' ios_dma_onboarding.statistic: mean + row: 0 + col: 12 + width: 12 + height: 8 + field_x: ios_dma_onboarding.submission_date + field_y: ios_dma_onboarding.point + log_scale: false + ci_lower: ios_dma_onboarding.lower + ci_upper: ios_dma_onboarding.upper + show_grid: true + listen: + Date: ios_dma_onboarding.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 + - title: Retained + name: Retained_mean + note_state: expanded + note_display: above + note_text: Mean + explore: ios_dma_onboarding + type: looker_line + fields: [ + ios_dma_onboarding.submission_date, + ios_dma_onboarding.branch, + ios_dma_onboarding.point + ] + pivots: [ + ios_dma_onboarding.branch + ] + filters: + ios_dma_onboarding.metric: 'retained' + ios_dma_onboarding.statistic: mean row: 10 col: 0 width: 12 @@ -146,8 +146,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 @@ -162,7 +162,7 @@ ios_dma_onboarding.branch ] filters: - ios_dma_onboarding.metric: 'active_hours' + ios_dma_onboarding.metric: 'search_count' ios_dma_onboarding.statistic: mean row: 20 col: 0 diff --git a/operational_monitoring/dashboards/ios_search_bar_placement_v2_treatment_a_rollout.dashboard.lookml b/operational_monitoring/dashboards/ios_search_bar_placement_v2_treatment_a_rollout.dashboard.lookml index dacaf6f0a..69b666e5d 100644 --- a/operational_monitoring/dashboards/ios_search_bar_placement_v2_treatment_a_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/ios_search_bar_placement_v2_treatment_a_rollout.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Retained - name: Retained_mean + - title: Active Hours + name: Active Hours_mean note_state: expanded note_display: above note_text: Mean @@ -26,7 +26,7 @@ ios_search_bar_placement_v2_treatment_a_rollout.branch ] filters: - ios_search_bar_placement_v2_treatment_a_rollout.metric: 'retained' + ios_search_bar_placement_v2_treatment_a_rollout.metric: 'active_hours' ios_search_bar_placement_v2_treatment_a_rollout.statistic: mean row: 0 col: 0 @@ -41,40 +41,6 @@ listen: Date: ios_search_bar_placement_v2_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: ios_search_bar_placement_v2_treatment_a_rollout - type: looker_line - fields: [ - ios_search_bar_placement_v2_treatment_a_rollout.submission_date, - ios_search_bar_placement_v2_treatment_a_rollout.branch, - ios_search_bar_placement_v2_treatment_a_rollout.point - ] - pivots: [ - ios_search_bar_placement_v2_treatment_a_rollout.branch - ] - filters: - ios_search_bar_placement_v2_treatment_a_rollout.metric: 'search_count' - ios_search_bar_placement_v2_treatment_a_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: ios_search_bar_placement_v2_treatment_a_rollout.submission_date - field_y: ios_search_bar_placement_v2_treatment_a_rollout.point - log_scale: false - ci_lower: ios_search_bar_placement_v2_treatment_a_rollout.lower - ci_upper: ios_search_bar_placement_v2_treatment_a_rollout.upper - show_grid: true - listen: - Date: ios_search_bar_placement_v2_treatment_a_rollout.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -96,6 +62,40 @@ filters: ios_search_bar_placement_v2_treatment_a_rollout.metric: 'ad_clicks' ios_search_bar_placement_v2_treatment_a_rollout.statistic: mean + row: 0 + col: 12 + width: 12 + height: 8 + field_x: ios_search_bar_placement_v2_treatment_a_rollout.submission_date + field_y: ios_search_bar_placement_v2_treatment_a_rollout.point + log_scale: false + ci_lower: ios_search_bar_placement_v2_treatment_a_rollout.lower + ci_upper: ios_search_bar_placement_v2_treatment_a_rollout.upper + show_grid: true + listen: + Date: ios_search_bar_placement_v2_treatment_a_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: ios_search_bar_placement_v2_treatment_a_rollout + type: looker_line + fields: [ + ios_search_bar_placement_v2_treatment_a_rollout.submission_date, + ios_search_bar_placement_v2_treatment_a_rollout.branch, + ios_search_bar_placement_v2_treatment_a_rollout.point + ] + pivots: [ + ios_search_bar_placement_v2_treatment_a_rollout.branch + ] + filters: + ios_search_bar_placement_v2_treatment_a_rollout.metric: 'retained' + ios_search_bar_placement_v2_treatment_a_rollout.statistic: mean row: 10 col: 0 width: 12 @@ -146,8 +146,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 @@ -162,7 +162,7 @@ ios_search_bar_placement_v2_treatment_a_rollout.branch ] filters: - ios_search_bar_placement_v2_treatment_a_rollout.metric: 'active_hours' + ios_search_bar_placement_v2_treatment_a_rollout.metric: 'search_count' ios_search_bar_placement_v2_treatment_a_rollout.statistic: mean row: 20 col: 0 diff --git a/operational_monitoring/dashboards/ios_sync_manager_integration_rust_sync_manager_rollout.dashboard.lookml b/operational_monitoring/dashboards/ios_sync_manager_integration_rust_sync_manager_rollout.dashboard.lookml index aeed8b343..b0fc78c26 100644 --- a/operational_monitoring/dashboards/ios_sync_manager_integration_rust_sync_manager_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/ios_sync_manager_integration_rust_sync_manager_rollout.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Retained - name: Retained_mean + - title: Active Hours + name: Active Hours_mean note_state: expanded note_display: above note_text: Mean @@ -26,7 +26,7 @@ ios_sync_manager_integration_rust_sync_manager_rollout.branch ] filters: - ios_sync_manager_integration_rust_sync_manager_rollout.metric: 'retained' + ios_sync_manager_integration_rust_sync_manager_rollout.metric: 'active_hours' ios_sync_manager_integration_rust_sync_manager_rollout.statistic: mean row: 0 col: 0 @@ -41,40 +41,6 @@ listen: Date: ios_sync_manager_integration_rust_sync_manager_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: ios_sync_manager_integration_rust_sync_manager_rollout - type: looker_line - fields: [ - ios_sync_manager_integration_rust_sync_manager_rollout.submission_date, - ios_sync_manager_integration_rust_sync_manager_rollout.branch, - ios_sync_manager_integration_rust_sync_manager_rollout.point - ] - pivots: [ - ios_sync_manager_integration_rust_sync_manager_rollout.branch - ] - filters: - ios_sync_manager_integration_rust_sync_manager_rollout.metric: 'search_count' - ios_sync_manager_integration_rust_sync_manager_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: ios_sync_manager_integration_rust_sync_manager_rollout.submission_date - field_y: ios_sync_manager_integration_rust_sync_manager_rollout.point - log_scale: false - ci_lower: ios_sync_manager_integration_rust_sync_manager_rollout.lower - ci_upper: ios_sync_manager_integration_rust_sync_manager_rollout.upper - show_grid: true - listen: - Date: ios_sync_manager_integration_rust_sync_manager_rollout.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -96,6 +62,40 @@ filters: ios_sync_manager_integration_rust_sync_manager_rollout.metric: 'ad_clicks' ios_sync_manager_integration_rust_sync_manager_rollout.statistic: mean + row: 0 + col: 12 + width: 12 + height: 8 + field_x: ios_sync_manager_integration_rust_sync_manager_rollout.submission_date + field_y: ios_sync_manager_integration_rust_sync_manager_rollout.point + log_scale: false + ci_lower: ios_sync_manager_integration_rust_sync_manager_rollout.lower + ci_upper: ios_sync_manager_integration_rust_sync_manager_rollout.upper + show_grid: true + listen: + Date: ios_sync_manager_integration_rust_sync_manager_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: ios_sync_manager_integration_rust_sync_manager_rollout + type: looker_line + fields: [ + ios_sync_manager_integration_rust_sync_manager_rollout.submission_date, + ios_sync_manager_integration_rust_sync_manager_rollout.branch, + ios_sync_manager_integration_rust_sync_manager_rollout.point + ] + pivots: [ + ios_sync_manager_integration_rust_sync_manager_rollout.branch + ] + filters: + ios_sync_manager_integration_rust_sync_manager_rollout.metric: 'retained' + ios_sync_manager_integration_rust_sync_manager_rollout.statistic: mean row: 10 col: 0 width: 12 @@ -146,8 +146,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 @@ -162,7 +162,7 @@ ios_sync_manager_integration_rust_sync_manager_rollout.branch ] filters: - ios_sync_manager_integration_rust_sync_manager_rollout.metric: 'active_hours' + ios_sync_manager_integration_rust_sync_manager_rollout.metric: 'search_count' ios_sync_manager_integration_rust_sync_manager_rollout.statistic: mean row: 20 col: 0 diff --git a/operational_monitoring/dashboards/ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.dashboard.lookml b/operational_monitoring/dashboards/ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.dashboard.lookml index 7365132e6..7e3b27684 100644 --- a/operational_monitoring/dashboards/ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.dashboard.lookml +++ b/operational_monitoring/dashboards/ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Retained - name: Retained_mean + - title: Active Hours + name: Active Hours_mean note_state: expanded note_display: above note_text: Mean @@ -26,7 +26,7 @@ ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.branch ] filters: - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.metric: 'retained' + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.metric: 'active_hours' ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.statistic: mean row: 0 col: 0 @@ -41,40 +41,6 @@ listen: Date: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.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: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy - type: looker_line - fields: [ - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.submission_date, - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.branch, - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.point - ] - pivots: [ - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.branch - ] - filters: - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.metric: 'search_count' - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.submission_date - field_y: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.point - log_scale: false - ci_lower: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.lower - ci_upper: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.upper - show_grid: true - listen: - Date: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -96,6 +62,40 @@ filters: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.metric: 'ad_clicks' ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.statistic: mean + row: 0 + col: 12 + width: 12 + height: 8 + field_x: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.submission_date + field_y: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.point + log_scale: false + ci_lower: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.lower + ci_upper: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.upper + show_grid: true + listen: + Date: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 + - title: Retained + name: Retained_mean + note_state: expanded + note_display: above + note_text: Mean + explore: ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy + type: looker_line + fields: [ + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.submission_date, + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.branch, + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.point + ] + pivots: [ + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.branch + ] + filters: + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.metric: 'retained' + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.statistic: mean row: 10 col: 0 width: 12 @@ -146,8 +146,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 @@ -162,7 +162,7 @@ ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.branch ] filters: - ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.metric: 'active_hours' + ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.metric: 'search_count' ios_we_should_prefer_switching_to_open_tabs_vs_opening_a_duplicate_tab_copy.statistic: mean row: 20 col: 0 diff --git a/operational_monitoring/dashboards/launch_firefox_on_os_restart_treatment_a_rollout.dashboard.lookml b/operational_monitoring/dashboards/launch_firefox_on_os_restart_treatment_a_rollout.dashboard.lookml index 22742e8cb..8a2938836 100644 --- a/operational_monitoring/dashboards/launch_firefox_on_os_restart_treatment_a_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/launch_firefox_on_os_restart_treatment_a_rollout.dashboard.lookml @@ -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: launch_firefox_on_os_restart_treatment_a_rollout + type: looker_line + fields: [ + launch_firefox_on_os_restart_treatment_a_rollout.submission_date, + launch_firefox_on_os_restart_treatment_a_rollout.branch, + launch_firefox_on_os_restart_treatment_a_rollout.point + ] + pivots: [ + launch_firefox_on_os_restart_treatment_a_rollout.branch + ] + filters: + launch_firefox_on_os_restart_treatment_a_rollout.metric: 'active_hours' + launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date + field_y: launch_firefox_on_os_restart_treatment_a_rollout.point + log_scale: false + ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower + ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper + show_grid: true + listen: + Date: launch_firefox_on_os_restart_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 @@ launch_firefox_on_os_restart_treatment_a_rollout.metric: 'uri_count' launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date + field_y: launch_firefox_on_os_restart_treatment_a_rollout.point + log_scale: false + ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower + ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper + show_grid: true + listen: + Date: launch_firefox_on_os_restart_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: launch_firefox_on_os_restart_treatment_a_rollout + type: looker_line + fields: [ + launch_firefox_on_os_restart_treatment_a_rollout.submission_date, + launch_firefox_on_os_restart_treatment_a_rollout.branch, + launch_firefox_on_os_restart_treatment_a_rollout.point + ] + pivots: [ + launch_firefox_on_os_restart_treatment_a_rollout.branch + ] + filters: + launch_firefox_on_os_restart_treatment_a_rollout.metric: 'ad_clicks' + launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: launch_firefox_on_os_restart_treatment_a_rollout.metric: 'retained' launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date - field_y: launch_firefox_on_os_restart_treatment_a_rollout.point - log_scale: false - ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower - ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper - show_grid: true - listen: - Date: launch_firefox_on_os_restart_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: launch_firefox_on_os_restart_treatment_a_rollout - type: looker_line - fields: [ - launch_firefox_on_os_restart_treatment_a_rollout.submission_date, - launch_firefox_on_os_restart_treatment_a_rollout.branch, - launch_firefox_on_os_restart_treatment_a_rollout.point - ] - pivots: [ - launch_firefox_on_os_restart_treatment_a_rollout.branch - ] - filters: - launch_firefox_on_os_restart_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use' - launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date - field_y: launch_firefox_on_os_restart_treatment_a_rollout.point - log_scale: false - ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower - ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper - show_grid: true - listen: - Date: launch_firefox_on_os_restart_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: launch_firefox_on_os_restart_treatment_a_rollout - type: looker_line - fields: [ - launch_firefox_on_os_restart_treatment_a_rollout.submission_date, - launch_firefox_on_os_restart_treatment_a_rollout.branch, - launch_firefox_on_os_restart_treatment_a_rollout.point - ] - pivots: [ - launch_firefox_on_os_restart_treatment_a_rollout.branch - ] - filters: - launch_firefox_on_os_restart_treatment_a_rollout.metric: 'search_count' - launch_firefox_on_os_restart_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 @@ launch_firefox_on_os_restart_treatment_a_rollout.branch ] filters: - launch_firefox_on_os_restart_treatment_a_rollout.metric: 'ad_clicks' + launch_firefox_on_os_restart_treatment_a_rollout.metric: 'days_of_use' launch_firefox_on_os_restart_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 @@ launch_firefox_on_os_restart_treatment_a_rollout.branch ] filters: - launch_firefox_on_os_restart_treatment_a_rollout.metric: 'days_of_use' + launch_firefox_on_os_restart_treatment_a_rollout.metric: 'search_count' launch_firefox_on_os_restart_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 @@ launch_firefox_on_os_restart_treatment_a_rollout.branch ] filters: - launch_firefox_on_os_restart_treatment_a_rollout.metric: 'active_hours' + launch_firefox_on_os_restart_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use' launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/mixed_content_level_2_roll_out_release_115.dashboard.lookml b/operational_monitoring/dashboards/mixed_content_level_2_roll_out_release_115.dashboard.lookml index 1e9446291..e7c39dfd0 100644 --- a/operational_monitoring/dashboards/mixed_content_level_2_roll_out_release_115.dashboard.lookml +++ b/operational_monitoring/dashboards/mixed_content_level_2_roll_out_release_115.dashboard.lookml @@ -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: mixed_content_level_2_roll_out_release_115 + type: looker_line + fields: [ + mixed_content_level_2_roll_out_release_115.submission_date, + mixed_content_level_2_roll_out_release_115.branch, + mixed_content_level_2_roll_out_release_115.point + ] + pivots: [ + mixed_content_level_2_roll_out_release_115.branch + ] + filters: + mixed_content_level_2_roll_out_release_115.metric: 'active_hours' + mixed_content_level_2_roll_out_release_115.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: mixed_content_level_2_roll_out_release_115.submission_date + field_y: mixed_content_level_2_roll_out_release_115.point + log_scale: false + ci_lower: mixed_content_level_2_roll_out_release_115.lower + ci_upper: mixed_content_level_2_roll_out_release_115.upper + show_grid: true + listen: + Date: mixed_content_level_2_roll_out_release_115.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ mixed_content_level_2_roll_out_release_115.metric: 'uri_count' mixed_content_level_2_roll_out_release_115.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: mixed_content_level_2_roll_out_release_115.submission_date + field_y: mixed_content_level_2_roll_out_release_115.point + log_scale: false + ci_lower: mixed_content_level_2_roll_out_release_115.lower + ci_upper: mixed_content_level_2_roll_out_release_115.upper + show_grid: true + listen: + Date: mixed_content_level_2_roll_out_release_115.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: mixed_content_level_2_roll_out_release_115 + type: looker_line + fields: [ + mixed_content_level_2_roll_out_release_115.submission_date, + mixed_content_level_2_roll_out_release_115.branch, + mixed_content_level_2_roll_out_release_115.point + ] + pivots: [ + mixed_content_level_2_roll_out_release_115.branch + ] + filters: + mixed_content_level_2_roll_out_release_115.metric: 'ad_clicks' + mixed_content_level_2_roll_out_release_115.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: mixed_content_level_2_roll_out_release_115.metric: 'retained' mixed_content_level_2_roll_out_release_115.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: mixed_content_level_2_roll_out_release_115.submission_date - field_y: mixed_content_level_2_roll_out_release_115.point - log_scale: false - ci_lower: mixed_content_level_2_roll_out_release_115.lower - ci_upper: mixed_content_level_2_roll_out_release_115.upper - show_grid: true - listen: - Date: mixed_content_level_2_roll_out_release_115.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: mixed_content_level_2_roll_out_release_115 - type: looker_line - fields: [ - mixed_content_level_2_roll_out_release_115.submission_date, - mixed_content_level_2_roll_out_release_115.branch, - mixed_content_level_2_roll_out_release_115.point - ] - pivots: [ - mixed_content_level_2_roll_out_release_115.branch - ] - filters: - mixed_content_level_2_roll_out_release_115.metric: 'qualified_cumulative_days_of_use' - mixed_content_level_2_roll_out_release_115.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: mixed_content_level_2_roll_out_release_115.submission_date - field_y: mixed_content_level_2_roll_out_release_115.point - log_scale: false - ci_lower: mixed_content_level_2_roll_out_release_115.lower - ci_upper: mixed_content_level_2_roll_out_release_115.upper - show_grid: true - listen: - Date: mixed_content_level_2_roll_out_release_115.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: mixed_content_level_2_roll_out_release_115 - type: looker_line - fields: [ - mixed_content_level_2_roll_out_release_115.submission_date, - mixed_content_level_2_roll_out_release_115.branch, - mixed_content_level_2_roll_out_release_115.point - ] - pivots: [ - mixed_content_level_2_roll_out_release_115.branch - ] - filters: - mixed_content_level_2_roll_out_release_115.metric: 'search_count' - mixed_content_level_2_roll_out_release_115.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 @@ mixed_content_level_2_roll_out_release_115.branch ] filters: - mixed_content_level_2_roll_out_release_115.metric: 'ad_clicks' + mixed_content_level_2_roll_out_release_115.metric: 'days_of_use' mixed_content_level_2_roll_out_release_115.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 @@ mixed_content_level_2_roll_out_release_115.branch ] filters: - mixed_content_level_2_roll_out_release_115.metric: 'days_of_use' + mixed_content_level_2_roll_out_release_115.metric: 'search_count' mixed_content_level_2_roll_out_release_115.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 @@ mixed_content_level_2_roll_out_release_115.branch ] filters: - mixed_content_level_2_roll_out_release_115.metric: 'active_hours' + mixed_content_level_2_roll_out_release_115.metric: 'qualified_cumulative_days_of_use' mixed_content_level_2_roll_out_release_115.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/mozilla_vpn.dashboard.lookml b/operational_monitoring/dashboards/mozilla_vpn.dashboard.lookml index 635022ab8..fea7b8808 100644 --- a/operational_monitoring/dashboards/mozilla_vpn.dashboard.lookml +++ b/operational_monitoring/dashboards/mozilla_vpn.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Cnt Session Starts - By app - name: Cnt Session Starts - By app_sum + - title: Cnt Sessions Start And End - By app + name: Cnt Sessions Start And End - By app_sum note_state: expanded note_display: above note_text: Sum @@ -26,7 +26,7 @@ mozilla_vpn.branch, mozilla_vpn.app ] filters: - mozilla_vpn.metric: 'cnt_session_starts' + mozilla_vpn.metric: 'cnt_sessions_start_and_end' mozilla_vpn.statistic: sum row: 0 col: 0 @@ -76,6 +76,213 @@ Date: mozilla_vpn.submission_date App: mozilla_vpn.app + active: "#3FE1B0" + defaults_version: 0 + - title: Cnt Session Ends - By app + name: Cnt Session Ends - By app_sum + note_state: expanded + note_display: above + note_text: Sum + explore: mozilla_vpn + type: looker_line + fields: [ + mozilla_vpn.submission_date, + mozilla_vpn.branch, + mozilla_vpn.point + ] + pivots: [ + mozilla_vpn.branch, mozilla_vpn.app + ] + filters: + mozilla_vpn.metric: 'cnt_session_ends' + mozilla_vpn.statistic: sum + row: 10 + col: 0 + width: 12 + height: 8 + field_x: mozilla_vpn.submission_date + field_y: mozilla_vpn.point + log_scale: false + ci_lower: mozilla_vpn.lower + ci_upper: mozilla_vpn.upper + show_grid: true + listen: + Date: mozilla_vpn.submission_date + App: mozilla_vpn.app + + active: "#3FE1B0" + defaults_version: 0 + - title: Active Subscribers - By app + name: Active Subscribers - By app_sum + note_state: expanded + note_display: above + note_text: Sum + explore: mozilla_vpn + type: looker_line + fields: [ + mozilla_vpn.submission_date, + mozilla_vpn.branch, + mozilla_vpn.point + ] + pivots: [ + mozilla_vpn.branch, mozilla_vpn.app + ] + filters: + mozilla_vpn.metric: 'active_subscribers' + mozilla_vpn.statistic: sum + row: 10 + col: 12 + width: 12 + height: 8 + field_x: mozilla_vpn.submission_date + field_y: mozilla_vpn.point + log_scale: false + ci_lower: mozilla_vpn.lower + ci_upper: mozilla_vpn.upper + show_grid: true + listen: + Date: mozilla_vpn.submission_date + App: mozilla_vpn.app + + active: "#3FE1B0" + defaults_version: 0 + - title: Cnt Negative Session Lengths - By app + name: Cnt Negative Session Lengths - By app_sum + note_state: expanded + note_display: above + note_text: Sum + explore: mozilla_vpn + type: looker_line + fields: [ + mozilla_vpn.submission_date, + mozilla_vpn.branch, + mozilla_vpn.point + ] + pivots: [ + mozilla_vpn.branch, mozilla_vpn.app + ] + filters: + mozilla_vpn.metric: 'cnt_negative_session_lengths' + mozilla_vpn.statistic: sum + row: 20 + col: 0 + width: 12 + height: 8 + field_x: mozilla_vpn.submission_date + field_y: mozilla_vpn.point + log_scale: false + ci_lower: mozilla_vpn.lower + ci_upper: mozilla_vpn.upper + show_grid: true + listen: + Date: mozilla_vpn.submission_date + App: mozilla_vpn.app + + active: "#3FE1B0" + defaults_version: 0 + - title: Cnt Session Starts - By app + name: Cnt Session Starts - By app_sum + note_state: expanded + note_display: above + note_text: Sum + explore: mozilla_vpn + type: looker_line + fields: [ + mozilla_vpn.submission_date, + mozilla_vpn.branch, + mozilla_vpn.point + ] + pivots: [ + mozilla_vpn.branch, mozilla_vpn.app + ] + filters: + mozilla_vpn.metric: 'cnt_session_starts' + mozilla_vpn.statistic: sum + row: 20 + col: 12 + width: 12 + height: 8 + field_x: mozilla_vpn.submission_date + field_y: mozilla_vpn.point + log_scale: false + ci_lower: mozilla_vpn.lower + ci_upper: mozilla_vpn.upper + show_grid: true + listen: + Date: mozilla_vpn.submission_date + App: mozilla_vpn.app + + active: "#3FE1B0" + defaults_version: 0 + - title: Avg Sum Session Duration - By app + name: Avg Sum Session Duration - By app_mean + note_state: expanded + note_display: above + note_text: Mean + explore: mozilla_vpn + type: looker_line + fields: [ + mozilla_vpn.submission_date, + mozilla_vpn.branch, + mozilla_vpn.point + ] + pivots: [ + mozilla_vpn.branch, mozilla_vpn.app + ] + filters: + mozilla_vpn.metric: 'avg_sum_session_duration' + mozilla_vpn.statistic: mean + row: 30 + col: 0 + width: 12 + height: 8 + field_x: mozilla_vpn.submission_date + field_y: mozilla_vpn.point + log_scale: false + ci_lower: mozilla_vpn.lower + ci_upper: mozilla_vpn.upper + show_grid: true + listen: + Date: mozilla_vpn.submission_date + App: mozilla_vpn.app + + active: "#3FE1B0" + defaults_version: 0 + - title: Avg Sum Session Duration - By app + name: Avg Sum Session Duration - By app_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: mozilla_vpn + type: "ci-line-chart" + fields: [ + mozilla_vpn.submission_date, + mozilla_vpn.branch, + mozilla_vpn.upper, + mozilla_vpn.lower, + mozilla_vpn.point + ] + pivots: [ + mozilla_vpn.branch, mozilla_vpn.app + ] + filters: + mozilla_vpn.metric: 'avg_sum_session_duration' + mozilla_vpn.statistic: percentile + row: 30 + col: 12 + width: 12 + height: 8 + field_x: mozilla_vpn.submission_date + field_y: mozilla_vpn.point + log_scale: false + ci_lower: mozilla_vpn.lower + ci_upper: mozilla_vpn.upper + show_grid: true + listen: + Date: mozilla_vpn.submission_date + Percentile: mozilla_vpn.parameter + App: mozilla_vpn.app + active: "#3FE1B0" defaults_version: 0 - title: Avg Session Duration - By app @@ -96,7 +303,7 @@ filters: mozilla_vpn.metric: 'avg_session_duration' mozilla_vpn.statistic: mean - row: 10 + row: 40 col: 0 width: 12 height: 8 @@ -132,214 +339,6 @@ filters: mozilla_vpn.metric: 'avg_session_duration' mozilla_vpn.statistic: percentile - row: 10 - col: 12 - width: 12 - height: 8 - field_x: mozilla_vpn.submission_date - field_y: mozilla_vpn.point - log_scale: false - ci_lower: mozilla_vpn.lower - ci_upper: mozilla_vpn.upper - show_grid: true - listen: - Date: mozilla_vpn.submission_date - Percentile: mozilla_vpn.parameter - App: mozilla_vpn.app - - active: "#3FE1B0" - defaults_version: 0 - - title: Active Subscribers - By app - name: Active Subscribers - By app_sum - note_state: expanded - note_display: above - note_text: Sum - explore: mozilla_vpn - type: looker_line - fields: [ - mozilla_vpn.submission_date, - mozilla_vpn.branch, - mozilla_vpn.point - ] - pivots: [ - mozilla_vpn.branch, mozilla_vpn.app - ] - filters: - mozilla_vpn.metric: 'active_subscribers' - mozilla_vpn.statistic: sum - row: 20 - col: 0 - width: 12 - height: 8 - field_x: mozilla_vpn.submission_date - field_y: mozilla_vpn.point - log_scale: false - ci_lower: mozilla_vpn.lower - ci_upper: mozilla_vpn.upper - show_grid: true - listen: - Date: mozilla_vpn.submission_date - App: mozilla_vpn.app - - active: "#3FE1B0" - defaults_version: 0 - - title: Cnt Sessions Start And End - By app - name: Cnt Sessions Start And End - By app_sum - note_state: expanded - note_display: above - note_text: Sum - explore: mozilla_vpn - type: looker_line - fields: [ - mozilla_vpn.submission_date, - mozilla_vpn.branch, - mozilla_vpn.point - ] - pivots: [ - mozilla_vpn.branch, mozilla_vpn.app - ] - filters: - mozilla_vpn.metric: 'cnt_sessions_start_and_end' - mozilla_vpn.statistic: sum - row: 20 - col: 12 - width: 12 - height: 8 - field_x: mozilla_vpn.submission_date - field_y: mozilla_vpn.point - log_scale: false - ci_lower: mozilla_vpn.lower - ci_upper: mozilla_vpn.upper - show_grid: true - listen: - Date: mozilla_vpn.submission_date - App: mozilla_vpn.app - - active: "#3FE1B0" - defaults_version: 0 - - title: Cnt Session Ends - By app - name: Cnt Session Ends - By app_sum - note_state: expanded - note_display: above - note_text: Sum - explore: mozilla_vpn - type: looker_line - fields: [ - mozilla_vpn.submission_date, - mozilla_vpn.branch, - mozilla_vpn.point - ] - pivots: [ - mozilla_vpn.branch, mozilla_vpn.app - ] - filters: - mozilla_vpn.metric: 'cnt_session_ends' - mozilla_vpn.statistic: sum - row: 30 - col: 0 - width: 12 - height: 8 - field_x: mozilla_vpn.submission_date - field_y: mozilla_vpn.point - log_scale: false - ci_lower: mozilla_vpn.lower - ci_upper: mozilla_vpn.upper - show_grid: true - listen: - Date: mozilla_vpn.submission_date - App: mozilla_vpn.app - - active: "#3FE1B0" - defaults_version: 0 - - title: Avg Sum Session Duration - By app - name: Avg Sum Session Duration - By app_mean - note_state: expanded - note_display: above - note_text: Mean - explore: mozilla_vpn - type: looker_line - fields: [ - mozilla_vpn.submission_date, - mozilla_vpn.branch, - mozilla_vpn.point - ] - pivots: [ - mozilla_vpn.branch, mozilla_vpn.app - ] - filters: - mozilla_vpn.metric: 'avg_sum_session_duration' - mozilla_vpn.statistic: mean - row: 30 - col: 12 - width: 12 - height: 8 - field_x: mozilla_vpn.submission_date - field_y: mozilla_vpn.point - log_scale: false - ci_lower: mozilla_vpn.lower - ci_upper: mozilla_vpn.upper - show_grid: true - listen: - Date: mozilla_vpn.submission_date - App: mozilla_vpn.app - - active: "#3FE1B0" - defaults_version: 0 - - title: Avg Sum Session Duration - By app - name: Avg Sum Session Duration - By app_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: mozilla_vpn - type: "ci-line-chart" - fields: [ - mozilla_vpn.submission_date, - mozilla_vpn.branch, - mozilla_vpn.upper, - mozilla_vpn.lower, - mozilla_vpn.point - ] - pivots: [ - mozilla_vpn.branch, mozilla_vpn.app - ] - filters: - mozilla_vpn.metric: 'avg_sum_session_duration' - mozilla_vpn.statistic: percentile - row: 40 - col: 0 - width: 12 - height: 8 - field_x: mozilla_vpn.submission_date - field_y: mozilla_vpn.point - log_scale: false - ci_lower: mozilla_vpn.lower - ci_upper: mozilla_vpn.upper - show_grid: true - listen: - Date: mozilla_vpn.submission_date - Percentile: mozilla_vpn.parameter - App: mozilla_vpn.app - - active: "#3FE1B0" - defaults_version: 0 - - title: Cnt Negative Session Lengths - By app - name: Cnt Negative Session Lengths - By app_sum - note_state: expanded - note_display: above - note_text: Sum - explore: mozilla_vpn - type: looker_line - fields: [ - mozilla_vpn.submission_date, - mozilla_vpn.branch, - mozilla_vpn.point - ] - pivots: [ - mozilla_vpn.branch, mozilla_vpn.app - ] - filters: - mozilla_vpn.metric: 'cnt_negative_session_lengths' - mozilla_vpn.statistic: sum row: 40 col: 12 width: 12 @@ -352,6 +351,7 @@ show_grid: true listen: Date: mozilla_vpn.submission_date + Percentile: mozilla_vpn.parameter App: mozilla_vpn.app active: "#3FE1B0" diff --git a/operational_monitoring/dashboards/mozillaaccounts_toolbar_button_default_visibility_existing_user.dashboard.lookml b/operational_monitoring/dashboards/mozillaaccounts_toolbar_button_default_visibility_existing_user.dashboard.lookml index 9ecf9467b..5d68beebf 100644 --- a/operational_monitoring/dashboards/mozillaaccounts_toolbar_button_default_visibility_existing_user.dashboard.lookml +++ b/operational_monitoring/dashboards/mozillaaccounts_toolbar_button_default_visibility_existing_user.dashboard.lookml @@ -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: mozillaaccounts_toolbar_button_default_visibility_existing_user + type: looker_line + fields: [ + mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date, + mozillaaccounts_toolbar_button_default_visibility_existing_user.branch, + mozillaaccounts_toolbar_button_default_visibility_existing_user.point + ] + pivots: [ + mozillaaccounts_toolbar_button_default_visibility_existing_user.branch + ] + filters: + mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'active_hours' + mozillaaccounts_toolbar_button_default_visibility_existing_user.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date + field_y: mozillaaccounts_toolbar_button_default_visibility_existing_user.point + log_scale: false + ci_lower: mozillaaccounts_toolbar_button_default_visibility_existing_user.lower + ci_upper: mozillaaccounts_toolbar_button_default_visibility_existing_user.upper + show_grid: true + listen: + Date: mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'uri_count' mozillaaccounts_toolbar_button_default_visibility_existing_user.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date + field_y: mozillaaccounts_toolbar_button_default_visibility_existing_user.point + log_scale: false + ci_lower: mozillaaccounts_toolbar_button_default_visibility_existing_user.lower + ci_upper: mozillaaccounts_toolbar_button_default_visibility_existing_user.upper + show_grid: true + listen: + Date: mozillaaccounts_toolbar_button_default_visibility_existing_user.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: mozillaaccounts_toolbar_button_default_visibility_existing_user + type: looker_line + fields: [ + mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date, + mozillaaccounts_toolbar_button_default_visibility_existing_user.branch, + mozillaaccounts_toolbar_button_default_visibility_existing_user.point + ] + pivots: [ + mozillaaccounts_toolbar_button_default_visibility_existing_user.branch + ] + filters: + mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'ad_clicks' + mozillaaccounts_toolbar_button_default_visibility_existing_user.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'retained' mozillaaccounts_toolbar_button_default_visibility_existing_user.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date - field_y: mozillaaccounts_toolbar_button_default_visibility_existing_user.point - log_scale: false - ci_lower: mozillaaccounts_toolbar_button_default_visibility_existing_user.lower - ci_upper: mozillaaccounts_toolbar_button_default_visibility_existing_user.upper - show_grid: true - listen: - Date: mozillaaccounts_toolbar_button_default_visibility_existing_user.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: mozillaaccounts_toolbar_button_default_visibility_existing_user - type: looker_line - fields: [ - mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date, - mozillaaccounts_toolbar_button_default_visibility_existing_user.branch, - mozillaaccounts_toolbar_button_default_visibility_existing_user.point - ] - pivots: [ - mozillaaccounts_toolbar_button_default_visibility_existing_user.branch - ] - filters: - mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'qualified_cumulative_days_of_use' - mozillaaccounts_toolbar_button_default_visibility_existing_user.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date - field_y: mozillaaccounts_toolbar_button_default_visibility_existing_user.point - log_scale: false - ci_lower: mozillaaccounts_toolbar_button_default_visibility_existing_user.lower - ci_upper: mozillaaccounts_toolbar_button_default_visibility_existing_user.upper - show_grid: true - listen: - Date: mozillaaccounts_toolbar_button_default_visibility_existing_user.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: mozillaaccounts_toolbar_button_default_visibility_existing_user - type: looker_line - fields: [ - mozillaaccounts_toolbar_button_default_visibility_existing_user.submission_date, - mozillaaccounts_toolbar_button_default_visibility_existing_user.branch, - mozillaaccounts_toolbar_button_default_visibility_existing_user.point - ] - pivots: [ - mozillaaccounts_toolbar_button_default_visibility_existing_user.branch - ] - filters: - mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'search_count' - mozillaaccounts_toolbar_button_default_visibility_existing_user.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 @@ mozillaaccounts_toolbar_button_default_visibility_existing_user.branch ] filters: - mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'ad_clicks' + mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'days_of_use' mozillaaccounts_toolbar_button_default_visibility_existing_user.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 @@ mozillaaccounts_toolbar_button_default_visibility_existing_user.branch ] filters: - mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'days_of_use' + mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'search_count' mozillaaccounts_toolbar_button_default_visibility_existing_user.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 @@ mozillaaccounts_toolbar_button_default_visibility_existing_user.branch ] filters: - mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'active_hours' + mozillaaccounts_toolbar_button_default_visibility_existing_user.metric: 'qualified_cumulative_days_of_use' mozillaaccounts_toolbar_button_default_visibility_existing_user.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/mr2022_backgroundtaskmessage_notification_release_1pct.dashboard.lookml b/operational_monitoring/dashboards/mr2022_backgroundtaskmessage_notification_release_1pct.dashboard.lookml index 613e63053..8fbec00ad 100644 --- a/operational_monitoring/dashboards/mr2022_backgroundtaskmessage_notification_release_1pct.dashboard.lookml +++ b/operational_monitoring/dashboards/mr2022_backgroundtaskmessage_notification_release_1pct.dashboard.lookml @@ -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: mr2022_backgroundtaskmessage_notification_release_1pct + type: looker_line + fields: [ + mr2022_backgroundtaskmessage_notification_release_1pct.submission_date, + mr2022_backgroundtaskmessage_notification_release_1pct.branch, + mr2022_backgroundtaskmessage_notification_release_1pct.point + ] + pivots: [ + mr2022_backgroundtaskmessage_notification_release_1pct.branch + ] + filters: + mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'active_hours' + mr2022_backgroundtaskmessage_notification_release_1pct.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: mr2022_backgroundtaskmessage_notification_release_1pct.submission_date + field_y: mr2022_backgroundtaskmessage_notification_release_1pct.point + log_scale: false + ci_lower: mr2022_backgroundtaskmessage_notification_release_1pct.lower + ci_upper: mr2022_backgroundtaskmessage_notification_release_1pct.upper + show_grid: true + listen: + Date: mr2022_backgroundtaskmessage_notification_release_1pct.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'uri_count' mr2022_backgroundtaskmessage_notification_release_1pct.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: mr2022_backgroundtaskmessage_notification_release_1pct.submission_date + field_y: mr2022_backgroundtaskmessage_notification_release_1pct.point + log_scale: false + ci_lower: mr2022_backgroundtaskmessage_notification_release_1pct.lower + ci_upper: mr2022_backgroundtaskmessage_notification_release_1pct.upper + show_grid: true + listen: + Date: mr2022_backgroundtaskmessage_notification_release_1pct.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: mr2022_backgroundtaskmessage_notification_release_1pct + type: looker_line + fields: [ + mr2022_backgroundtaskmessage_notification_release_1pct.submission_date, + mr2022_backgroundtaskmessage_notification_release_1pct.branch, + mr2022_backgroundtaskmessage_notification_release_1pct.point + ] + pivots: [ + mr2022_backgroundtaskmessage_notification_release_1pct.branch + ] + filters: + mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'ad_clicks' + mr2022_backgroundtaskmessage_notification_release_1pct.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'retained' mr2022_backgroundtaskmessage_notification_release_1pct.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: mr2022_backgroundtaskmessage_notification_release_1pct.submission_date - field_y: mr2022_backgroundtaskmessage_notification_release_1pct.point - log_scale: false - ci_lower: mr2022_backgroundtaskmessage_notification_release_1pct.lower - ci_upper: mr2022_backgroundtaskmessage_notification_release_1pct.upper - show_grid: true - listen: - Date: mr2022_backgroundtaskmessage_notification_release_1pct.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: mr2022_backgroundtaskmessage_notification_release_1pct - type: looker_line - fields: [ - mr2022_backgroundtaskmessage_notification_release_1pct.submission_date, - mr2022_backgroundtaskmessage_notification_release_1pct.branch, - mr2022_backgroundtaskmessage_notification_release_1pct.point - ] - pivots: [ - mr2022_backgroundtaskmessage_notification_release_1pct.branch - ] - filters: - mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'qualified_cumulative_days_of_use' - mr2022_backgroundtaskmessage_notification_release_1pct.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: mr2022_backgroundtaskmessage_notification_release_1pct.submission_date - field_y: mr2022_backgroundtaskmessage_notification_release_1pct.point - log_scale: false - ci_lower: mr2022_backgroundtaskmessage_notification_release_1pct.lower - ci_upper: mr2022_backgroundtaskmessage_notification_release_1pct.upper - show_grid: true - listen: - Date: mr2022_backgroundtaskmessage_notification_release_1pct.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: mr2022_backgroundtaskmessage_notification_release_1pct - type: looker_line - fields: [ - mr2022_backgroundtaskmessage_notification_release_1pct.submission_date, - mr2022_backgroundtaskmessage_notification_release_1pct.branch, - mr2022_backgroundtaskmessage_notification_release_1pct.point - ] - pivots: [ - mr2022_backgroundtaskmessage_notification_release_1pct.branch - ] - filters: - mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'search_count' - mr2022_backgroundtaskmessage_notification_release_1pct.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 @@ mr2022_backgroundtaskmessage_notification_release_1pct.branch ] filters: - mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'ad_clicks' + mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'days_of_use' mr2022_backgroundtaskmessage_notification_release_1pct.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 @@ mr2022_backgroundtaskmessage_notification_release_1pct.branch ] filters: - mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'days_of_use' + mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'search_count' mr2022_backgroundtaskmessage_notification_release_1pct.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 @@ mr2022_backgroundtaskmessage_notification_release_1pct.branch ] filters: - mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'active_hours' + mr2022_backgroundtaskmessage_notification_release_1pct.metric: 'qualified_cumulative_days_of_use' mr2022_backgroundtaskmessage_notification_release_1pct.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/network_performance_desktop_build_by_build.dashboard.lookml b/operational_monitoring/dashboards/network_performance_desktop_build_by_build.dashboard.lookml index fa1fe7a24..815254668 100644 --- a/operational_monitoring/dashboards/network_performance_desktop_build_by_build.dashboard.lookml +++ b/operational_monitoring/dashboards/network_performance_desktop_build_by_build.dashboard.lookml @@ -10,6 +10,43 @@ preferred_viewer: dashboards-next elements: + - title: Dns Lookup Time + name: Dns Lookup Time_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: network_performance_desktop_build_by_build + type: "ci-line-chart" + fields: [ + network_performance_desktop_build_by_build.build_id, + network_performance_desktop_build_by_build.branch, + network_performance_desktop_build_by_build.upper, + network_performance_desktop_build_by_build.lower, + network_performance_desktop_build_by_build.point + ] + pivots: [ + network_performance_desktop_build_by_build.branch + ] + filters: + network_performance_desktop_build_by_build.metric: 'dns_lookup_time' + network_performance_desktop_build_by_build.statistic: percentile + row: 0 + col: 0 + width: 12 + height: 8 + field_x: network_performance_desktop_build_by_build.build_id + field_y: network_performance_desktop_build_by_build.point + log_scale: false + ci_lower: network_performance_desktop_build_by_build.lower + ci_upper: network_performance_desktop_build_by_build.upper + show_grid: true + listen: + Date: network_performance_desktop_build_by_build.build_id + Percentile: network_performance_desktop_build_by_build.parameter + Os: network_performance_desktop_build_by_build.os + + active: "#3FE1B0" + defaults_version: 0 - title: Time To Response Start Ms name: Time To Response Start Ms_percentile note_state: expanded @@ -31,6 +68,43 @@ network_performance_desktop_build_by_build.metric: 'time_to_response_start_ms' network_performance_desktop_build_by_build.statistic: percentile row: 0 + col: 12 + width: 12 + height: 8 + field_x: network_performance_desktop_build_by_build.build_id + field_y: network_performance_desktop_build_by_build.point + log_scale: false + ci_lower: network_performance_desktop_build_by_build.lower + ci_upper: network_performance_desktop_build_by_build.upper + show_grid: true + listen: + Date: network_performance_desktop_build_by_build.build_id + Percentile: network_performance_desktop_build_by_build.parameter + Os: network_performance_desktop_build_by_build.os + + active: "#3FE1B0" + defaults_version: 0 + - title: Http Page Open To First Sent + name: Http Page Open To First Sent_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: network_performance_desktop_build_by_build + type: "ci-line-chart" + fields: [ + network_performance_desktop_build_by_build.build_id, + network_performance_desktop_build_by_build.branch, + network_performance_desktop_build_by_build.upper, + network_performance_desktop_build_by_build.lower, + network_performance_desktop_build_by_build.point + ] + pivots: [ + network_performance_desktop_build_by_build.branch + ] + filters: + network_performance_desktop_build_by_build.metric: 'http_page_open_to_first_sent' + network_performance_desktop_build_by_build.statistic: percentile + row: 10 col: 0 width: 12 height: 8 @@ -67,45 +141,8 @@ filters: network_performance_desktop_build_by_build.metric: 'http_sub_tls_handshake' network_performance_desktop_build_by_build.statistic: percentile - row: 0 - col: 12 - width: 12 - height: 8 - field_x: network_performance_desktop_build_by_build.build_id - field_y: network_performance_desktop_build_by_build.point - log_scale: false - ci_lower: network_performance_desktop_build_by_build.lower - ci_upper: network_performance_desktop_build_by_build.upper - show_grid: true - listen: - Date: network_performance_desktop_build_by_build.build_id - Percentile: network_performance_desktop_build_by_build.parameter - Os: network_performance_desktop_build_by_build.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Dns Lookup Time - name: Dns Lookup Time_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: network_performance_desktop_build_by_build - type: "ci-line-chart" - fields: [ - network_performance_desktop_build_by_build.build_id, - network_performance_desktop_build_by_build.branch, - network_performance_desktop_build_by_build.upper, - network_performance_desktop_build_by_build.lower, - network_performance_desktop_build_by_build.point - ] - pivots: [ - network_performance_desktop_build_by_build.branch - ] - filters: - network_performance_desktop_build_by_build.metric: 'dns_lookup_time' - network_performance_desktop_build_by_build.statistic: percentile row: 10 - col: 0 + col: 12 width: 12 height: 8 field_x: network_performance_desktop_build_by_build.build_id @@ -141,43 +178,6 @@ filters: network_performance_desktop_build_by_build.metric: 'http_page_tls_handshake' network_performance_desktop_build_by_build.statistic: percentile - row: 10 - col: 12 - width: 12 - height: 8 - field_x: network_performance_desktop_build_by_build.build_id - field_y: network_performance_desktop_build_by_build.point - log_scale: false - ci_lower: network_performance_desktop_build_by_build.lower - ci_upper: network_performance_desktop_build_by_build.upper - show_grid: true - listen: - Date: network_performance_desktop_build_by_build.build_id - Percentile: network_performance_desktop_build_by_build.parameter - Os: network_performance_desktop_build_by_build.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Http Page Open To First Sent - name: Http Page Open To First Sent_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: network_performance_desktop_build_by_build - type: "ci-line-chart" - fields: [ - network_performance_desktop_build_by_build.build_id, - network_performance_desktop_build_by_build.branch, - network_performance_desktop_build_by_build.upper, - network_performance_desktop_build_by_build.lower, - network_performance_desktop_build_by_build.point - ] - pivots: [ - network_performance_desktop_build_by_build.branch - ] - filters: - network_performance_desktop_build_by_build.metric: 'http_page_open_to_first_sent' - network_performance_desktop_build_by_build.statistic: percentile row: 20 col: 0 width: 12 diff --git a/operational_monitoring/dashboards/performance_desktop_build_by_build_beta.dashboard.lookml b/operational_monitoring/dashboards/performance_desktop_build_by_build_beta.dashboard.lookml index ad07051bf..2700607a5 100644 --- a/operational_monitoring/dashboards/performance_desktop_build_by_build_beta.dashboard.lookml +++ b/operational_monitoring/dashboards/performance_desktop_build_by_build_beta.dashboard.lookml @@ -10,6 +10,43 @@ preferred_viewer: dashboards-next elements: + - title: Perf Dom Contentperf Dom Content Loaded Time From Responsestart Ms Loaded Time + name: Perf Dom Contentperf Dom Content Loaded Time From Responsestart Ms Loaded Time_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'perf_dom_contentperf_dom_content_loaded_time_from_responsestart_ms_loaded_time' + performance_desktop_build_by_build_beta.statistic: percentile + row: 0 + col: 0 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + + active: "#3FE1B0" + defaults_version: 0 - title: Js Pageload Execution Ms name: Js Pageload Execution Ms_percentile note_state: expanded @@ -31,6 +68,43 @@ performance_desktop_build_by_build_beta.metric: 'js_pageload_execution_ms' performance_desktop_build_by_build_beta.statistic: percentile row: 0 + col: 12 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + + active: "#3FE1B0" + defaults_version: 0 + - title: Perf Request Animation Callback Non Pageload + name: Perf Request Animation Callback Non Pageload_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'perf_request_animation_callback_non_pageload' + performance_desktop_build_by_build_beta.statistic: percentile + row: 10 col: 0 width: 12 height: 8 @@ -67,7 +141,7 @@ filters: performance_desktop_build_by_build_beta.metric: 'input_event_response_coalesced' performance_desktop_build_by_build_beta.statistic: percentile - row: 0 + row: 10 col: 12 width: 12 height: 8 @@ -82,6 +156,117 @@ Percentile: performance_desktop_build_by_build_beta.parameter Os: performance_desktop_build_by_build_beta.os + active: "#3FE1B0" + defaults_version: 0 + - title: Timestamps About Home Topsites First Paint + name: Timestamps About Home Topsites First Paint_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'timestamps_about_home_topsites_first_paint' + performance_desktop_build_by_build_beta.statistic: percentile + row: 20 + col: 0 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + + active: "#3FE1B0" + defaults_version: 0 + - title: Scroll Present Latency + name: Scroll Present Latency_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'scroll_present_latency' + performance_desktop_build_by_build_beta.statistic: percentile + row: 20 + col: 12 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + + active: "#3FE1B0" + defaults_version: 0 + - title: Fx Page Load Ms 2 + name: Fx Page Load Ms 2_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'fx_page_load_ms_2' + performance_desktop_build_by_build_beta.statistic: percentile + row: 30 + col: 0 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + active: "#3FE1B0" defaults_version: 0 - title: Perf Page Load Time Ms @@ -104,8 +289,8 @@ filters: performance_desktop_build_by_build_beta.metric: 'perf_page_load_time_ms' performance_desktop_build_by_build_beta.statistic: percentile - row: 10 - col: 0 + row: 30 + col: 12 width: 12 height: 8 field_x: performance_desktop_build_by_build_beta.build_id @@ -121,8 +306,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Js Pageload Protect Ms - name: Js Pageload Protect Ms_percentile + - title: Js Pageload Parse Ms + name: Js Pageload Parse Ms_percentile note_state: expanded note_display: above note_text: Percentile @@ -139,9 +324,120 @@ performance_desktop_build_by_build_beta.branch ] filters: - performance_desktop_build_by_build_beta.metric: 'js_pageload_protect_ms' + performance_desktop_build_by_build_beta.metric: 'js_pageload_parse_ms' performance_desktop_build_by_build_beta.statistic: percentile - row: 10 + row: 40 + col: 0 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + + active: "#3FE1B0" + defaults_version: 0 + - title: Js Pageload Xdr Encoding Ms + name: Js Pageload Xdr Encoding Ms_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'js_pageload_xdr_encoding_ms' + performance_desktop_build_by_build_beta.statistic: percentile + row: 40 + col: 12 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + + active: "#3FE1B0" + defaults_version: 0 + - title: Keypress Present Latency Ms + name: Keypress Present Latency Ms_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'keypress_present_latency_ms' + performance_desktop_build_by_build_beta.statistic: percentile + row: 50 + col: 0 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + + active: "#3FE1B0" + defaults_version: 0 + - title: Cycle Collector Visited Gced + name: Cycle Collector Visited Gced_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'cycle_collector_visited_gced' + performance_desktop_build_by_build_beta.statistic: percentile + row: 50 col: 12 width: 12 height: 8 @@ -178,302 +474,6 @@ filters: performance_desktop_build_by_build_beta.metric: 'timestamps_first_paint_two' performance_desktop_build_by_build_beta.statistic: percentile - row: 20 - col: 0 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Mouseup Followed By Click Present Latency - name: Mouseup Followed By Click Present Latency_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'mouseup_followed_by_click_present_latency' - performance_desktop_build_by_build_beta.statistic: percentile - row: 20 - col: 12 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Js Pageload Xdr Encoding Ms - name: Js Pageload Xdr Encoding Ms_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'js_pageload_xdr_encoding_ms' - performance_desktop_build_by_build_beta.statistic: percentile - row: 30 - col: 0 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Timestamps About Home Topsites First Paint - name: Timestamps About Home Topsites First Paint_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'timestamps_about_home_topsites_first_paint' - performance_desktop_build_by_build_beta.statistic: percentile - row: 30 - col: 12 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Perf Page Load Time From Responsestart - name: Perf Page Load Time From Responsestart_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'perf_page_load_time_from_responsestart' - performance_desktop_build_by_build_beta.statistic: percentile - row: 40 - col: 0 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Keypress Present Latency Ms - name: Keypress Present Latency Ms_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'keypress_present_latency_ms' - performance_desktop_build_by_build_beta.statistic: percentile - row: 40 - col: 12 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Perf Request Animation Callback Pageload - name: Perf Request Animation Callback Pageload_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'perf_request_animation_callback_pageload' - performance_desktop_build_by_build_beta.statistic: percentile - row: 50 - col: 0 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Js Pageload Baseline Compile Ms - name: Js Pageload Baseline Compile Ms_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'js_pageload_baseline_compile_ms' - performance_desktop_build_by_build_beta.statistic: percentile - row: 50 - col: 12 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Cycle Collector Visited Ref Counted - name: Cycle Collector Visited Ref Counted_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'cycle_collector_visited_ref_counted' - performance_desktop_build_by_build_beta.statistic: percentile row: 60 col: 0 width: 12 @@ -491,8 +491,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Js Pageload Parse Ms - name: Js Pageload Parse Ms_percentile + - title: Js Pageload Delazification Ms + name: Js Pageload Delazification Ms_percentile note_state: expanded note_display: above note_text: Percentile @@ -509,7 +509,7 @@ performance_desktop_build_by_build_beta.branch ] filters: - performance_desktop_build_by_build_beta.metric: 'js_pageload_parse_ms' + performance_desktop_build_by_build_beta.metric: 'js_pageload_delazification_ms' performance_desktop_build_by_build_beta.statistic: percentile row: 60 col: 12 @@ -563,6 +563,43 @@ Percentile: performance_desktop_build_by_build_beta.parameter Os: performance_desktop_build_by_build_beta.os + active: "#3FE1B0" + defaults_version: 0 + - title: Cycle Collector Visited Ref Counted + name: Cycle Collector Visited Ref Counted_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_desktop_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_desktop_build_by_build_beta.build_id, + performance_desktop_build_by_build_beta.branch, + performance_desktop_build_by_build_beta.upper, + performance_desktop_build_by_build_beta.lower, + performance_desktop_build_by_build_beta.point + ] + pivots: [ + performance_desktop_build_by_build_beta.branch + ] + filters: + performance_desktop_build_by_build_beta.metric: 'cycle_collector_visited_ref_counted' + performance_desktop_build_by_build_beta.statistic: percentile + row: 70 + col: 12 + width: 12 + height: 8 + field_x: performance_desktop_build_by_build_beta.build_id + field_y: performance_desktop_build_by_build_beta.point + log_scale: false + ci_lower: performance_desktop_build_by_build_beta.lower + ci_upper: performance_desktop_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_desktop_build_by_build_beta.build_id + Percentile: performance_desktop_build_by_build_beta.parameter + Os: performance_desktop_build_by_build_beta.os + active: "#3FE1B0" defaults_version: 0 - title: Perf Dom Content Loaded Time @@ -585,43 +622,6 @@ filters: performance_desktop_build_by_build_beta.metric: 'perf_dom_content_loaded_time' performance_desktop_build_by_build_beta.statistic: percentile - row: 70 - col: 12 - width: 12 - height: 8 - field_x: performance_desktop_build_by_build_beta.build_id - field_y: performance_desktop_build_by_build_beta.point - log_scale: false - ci_lower: performance_desktop_build_by_build_beta.lower - ci_upper: performance_desktop_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_desktop_build_by_build_beta.build_id - Percentile: performance_desktop_build_by_build_beta.parameter - Os: performance_desktop_build_by_build_beta.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Fx Page Load Ms 2 - name: Fx Page Load Ms 2_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_desktop_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_desktop_build_by_build_beta.build_id, - performance_desktop_build_by_build_beta.branch, - performance_desktop_build_by_build_beta.upper, - performance_desktop_build_by_build_beta.lower, - performance_desktop_build_by_build_beta.point - ] - pivots: [ - performance_desktop_build_by_build_beta.branch - ] - filters: - performance_desktop_build_by_build_beta.metric: 'fx_page_load_ms_2' - performance_desktop_build_by_build_beta.statistic: percentile row: 80 col: 0 width: 12 @@ -639,8 +639,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Perf Request Animation Callback Non Pageload - name: Perf Request Animation Callback Non Pageload_percentile + - title: Mouseup Followed By Click Present Latency + name: Mouseup Followed By Click Present Latency_percentile note_state: expanded note_display: above note_text: Percentile @@ -657,7 +657,7 @@ performance_desktop_build_by_build_beta.branch ] filters: - performance_desktop_build_by_build_beta.metric: 'perf_request_animation_callback_non_pageload' + performance_desktop_build_by_build_beta.metric: 'mouseup_followed_by_click_present_latency' performance_desktop_build_by_build_beta.statistic: percentile row: 80 col: 12 @@ -676,8 +676,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Scroll Present Latency - name: Scroll Present Latency_percentile + - title: Js Pageload Baseline Compile Ms + name: Js Pageload Baseline Compile Ms_percentile note_state: expanded note_display: above note_text: Percentile @@ -694,7 +694,7 @@ performance_desktop_build_by_build_beta.branch ] filters: - performance_desktop_build_by_build_beta.metric: 'scroll_present_latency' + performance_desktop_build_by_build_beta.metric: 'js_pageload_baseline_compile_ms' performance_desktop_build_by_build_beta.statistic: percentile row: 90 col: 0 @@ -713,8 +713,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Js Pageload Delazification Ms - name: Js Pageload Delazification Ms_percentile + - title: Js Pageload Protect Ms + name: Js Pageload Protect Ms_percentile note_state: expanded note_display: above note_text: Percentile @@ -731,7 +731,7 @@ performance_desktop_build_by_build_beta.branch ] filters: - performance_desktop_build_by_build_beta.metric: 'js_pageload_delazification_ms' + performance_desktop_build_by_build_beta.metric: 'js_pageload_protect_ms' performance_desktop_build_by_build_beta.statistic: percentile row: 90 col: 12 @@ -750,8 +750,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Cycle Collector Visited Gced - name: Cycle Collector Visited Gced_percentile + - title: Perf Page Load Time From Responsestart + name: Perf Page Load Time From Responsestart_percentile note_state: expanded note_display: above note_text: Percentile @@ -768,7 +768,7 @@ performance_desktop_build_by_build_beta.branch ] filters: - performance_desktop_build_by_build_beta.metric: 'cycle_collector_visited_gced' + performance_desktop_build_by_build_beta.metric: 'perf_page_load_time_from_responsestart' performance_desktop_build_by_build_beta.statistic: percentile row: 100 col: 0 @@ -787,8 +787,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Perf Dom Contentperf Dom Content Loaded Time From Responsestart Ms Loaded Time - name: Perf Dom Contentperf Dom Content Loaded Time From Responsestart Ms Loaded Time_percentile + - title: Perf Request Animation Callback Pageload + name: Perf Request Animation Callback Pageload_percentile note_state: expanded note_display: above note_text: Percentile @@ -805,7 +805,7 @@ performance_desktop_build_by_build_beta.branch ] filters: - performance_desktop_build_by_build_beta.metric: 'perf_dom_contentperf_dom_content_loaded_time_from_responsestart_ms_loaded_time' + performance_desktop_build_by_build_beta.metric: 'perf_request_animation_callback_pageload' performance_desktop_build_by_build_beta.statistic: percentile row: 100 col: 12 diff --git a/operational_monitoring/dashboards/performance_fenix_build_by_build_beta.dashboard.lookml b/operational_monitoring/dashboards/performance_fenix_build_by_build_beta.dashboard.lookml index 89cd85768..d8a419edd 100644 --- a/operational_monitoring/dashboards/performance_fenix_build_by_build_beta.dashboard.lookml +++ b/operational_monitoring/dashboards/performance_fenix_build_by_build_beta.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Perf Startup Cold View App To First Frame - name: Perf Startup Cold View App To First Frame_percentile + - title: Performance Pageload Dcl Responsestart + name: Performance Pageload Dcl Responsestart_percentile note_state: expanded note_display: above note_text: Percentile @@ -28,7 +28,7 @@ performance_fenix_build_by_build_beta.branch ] filters: - performance_fenix_build_by_build_beta.metric: 'perf_startup_cold_view_app_to_first_frame' + performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl_responsestart' performance_fenix_build_by_build_beta.statistic: percentile row: 0 col: 0 @@ -46,8 +46,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Performance Pageload Fcp - name: Performance Pageload Fcp_percentile + - title: Performance Pageload Load Time Responsestart + name: Performance Pageload Load Time Responsestart_percentile note_state: expanded note_display: above note_text: Percentile @@ -64,7 +64,7 @@ performance_fenix_build_by_build_beta.branch ] filters: - performance_fenix_build_by_build_beta.metric: 'performance_pageload_fcp' + performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time_responsestart' performance_fenix_build_by_build_beta.statistic: percentile row: 0 col: 12 @@ -80,150 +80,6 @@ Date: performance_fenix_build_by_build_beta.build_id Percentile: performance_fenix_build_by_build_beta.parameter - active: "#3FE1B0" - defaults_version: 0 - - title: Performance Pageload Load Time - name: Performance Pageload Load Time_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_fenix_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_fenix_build_by_build_beta.build_id, - performance_fenix_build_by_build_beta.branch, - performance_fenix_build_by_build_beta.upper, - performance_fenix_build_by_build_beta.lower, - performance_fenix_build_by_build_beta.point - ] - pivots: [ - performance_fenix_build_by_build_beta.branch - ] - filters: - performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time' - performance_fenix_build_by_build_beta.statistic: percentile - row: 10 - col: 0 - width: 12 - height: 8 - field_x: performance_fenix_build_by_build_beta.build_id - field_y: performance_fenix_build_by_build_beta.point - log_scale: false - ci_lower: performance_fenix_build_by_build_beta.lower - ci_upper: performance_fenix_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_fenix_build_by_build_beta.build_id - Percentile: performance_fenix_build_by_build_beta.parameter - - active: "#3FE1B0" - 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: performance_fenix_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_fenix_build_by_build_beta.build_id, - performance_fenix_build_by_build_beta.branch, - performance_fenix_build_by_build_beta.upper, - performance_fenix_build_by_build_beta.lower, - performance_fenix_build_by_build_beta.point - ] - pivots: [ - performance_fenix_build_by_build_beta.branch - ] - filters: - performance_fenix_build_by_build_beta.metric: 'storage_stats_data_dir_bytes' - performance_fenix_build_by_build_beta.statistic: percentile - row: 10 - col: 12 - width: 12 - height: 8 - field_x: performance_fenix_build_by_build_beta.build_id - field_y: performance_fenix_build_by_build_beta.point - log_scale: false - ci_lower: performance_fenix_build_by_build_beta.lower - ci_upper: performance_fenix_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_fenix_build_by_build_beta.build_id - Percentile: performance_fenix_build_by_build_beta.parameter - - active: "#3FE1B0" - defaults_version: 0 - - title: Performance Pageload Dcl - name: Performance Pageload Dcl_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_fenix_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_fenix_build_by_build_beta.build_id, - performance_fenix_build_by_build_beta.branch, - performance_fenix_build_by_build_beta.upper, - performance_fenix_build_by_build_beta.lower, - performance_fenix_build_by_build_beta.point - ] - pivots: [ - performance_fenix_build_by_build_beta.branch - ] - filters: - performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl' - performance_fenix_build_by_build_beta.statistic: percentile - row: 20 - col: 0 - width: 12 - height: 8 - field_x: performance_fenix_build_by_build_beta.build_id - field_y: performance_fenix_build_by_build_beta.point - log_scale: false - ci_lower: performance_fenix_build_by_build_beta.lower - ci_upper: performance_fenix_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_fenix_build_by_build_beta.build_id - Percentile: performance_fenix_build_by_build_beta.parameter - - active: "#3FE1B0" - defaults_version: 0 - - title: Performance Pageload Req Anim Frame Callback - name: Performance Pageload Req Anim Frame Callback_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_fenix_build_by_build_beta - type: "ci-line-chart" - fields: [ - performance_fenix_build_by_build_beta.build_id, - performance_fenix_build_by_build_beta.branch, - performance_fenix_build_by_build_beta.upper, - performance_fenix_build_by_build_beta.lower, - performance_fenix_build_by_build_beta.point - ] - pivots: [ - performance_fenix_build_by_build_beta.branch - ] - filters: - performance_fenix_build_by_build_beta.metric: 'performance_pageload_req_anim_frame_callback' - performance_fenix_build_by_build_beta.statistic: percentile - row: 20 - col: 12 - width: 12 - height: 8 - field_x: performance_fenix_build_by_build_beta.build_id - field_y: performance_fenix_build_by_build_beta.point - log_scale: false - ci_lower: performance_fenix_build_by_build_beta.lower - ci_upper: performance_fenix_build_by_build_beta.upper - show_grid: true - listen: - Date: performance_fenix_build_by_build_beta.build_id - Percentile: performance_fenix_build_by_build_beta.parameter - active: "#3FE1B0" defaults_version: 0 - title: Perf Startup Cold Main App To First Frame @@ -246,7 +102,7 @@ filters: performance_fenix_build_by_build_beta.metric: 'perf_startup_cold_main_app_to_first_frame' performance_fenix_build_by_build_beta.statistic: percentile - row: 30 + row: 10 col: 0 width: 12 height: 8 @@ -262,8 +118,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Performance Pageload Dcl Responsestart - name: Performance Pageload Dcl Responsestart_percentile + - title: Performance Pageload Req Anim Frame Callback + name: Performance Pageload Req Anim Frame Callback_percentile note_state: expanded note_display: above note_text: Percentile @@ -280,9 +136,9 @@ performance_fenix_build_by_build_beta.branch ] filters: - performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl_responsestart' + performance_fenix_build_by_build_beta.metric: 'performance_pageload_req_anim_frame_callback' performance_fenix_build_by_build_beta.statistic: percentile - row: 30 + row: 10 col: 12 width: 12 height: 8 @@ -318,7 +174,79 @@ filters: performance_fenix_build_by_build_beta.metric: 'storage_stats_app_bytes' performance_fenix_build_by_build_beta.statistic: percentile - row: 40 + row: 20 + col: 0 + width: 12 + height: 8 + field_x: performance_fenix_build_by_build_beta.build_id + field_y: performance_fenix_build_by_build_beta.point + log_scale: false + ci_lower: performance_fenix_build_by_build_beta.lower + ci_upper: performance_fenix_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_fenix_build_by_build_beta.build_id + Percentile: performance_fenix_build_by_build_beta.parameter + + active: "#3FE1B0" + defaults_version: 0 + - title: Performance Pageload Fcp Responsestart + name: Performance Pageload Fcp Responsestart_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_fenix_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_fenix_build_by_build_beta.build_id, + performance_fenix_build_by_build_beta.branch, + performance_fenix_build_by_build_beta.upper, + performance_fenix_build_by_build_beta.lower, + performance_fenix_build_by_build_beta.point + ] + pivots: [ + performance_fenix_build_by_build_beta.branch + ] + filters: + performance_fenix_build_by_build_beta.metric: 'performance_pageload_fcp_responsestart' + performance_fenix_build_by_build_beta.statistic: percentile + row: 20 + col: 12 + width: 12 + height: 8 + field_x: performance_fenix_build_by_build_beta.build_id + field_y: performance_fenix_build_by_build_beta.point + log_scale: false + ci_lower: performance_fenix_build_by_build_beta.lower + ci_upper: performance_fenix_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_fenix_build_by_build_beta.build_id + Percentile: performance_fenix_build_by_build_beta.parameter + + active: "#3FE1B0" + defaults_version: 0 + - title: Performance Pageload Load Time + name: Performance Pageload Load Time_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_fenix_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_fenix_build_by_build_beta.build_id, + performance_fenix_build_by_build_beta.branch, + performance_fenix_build_by_build_beta.upper, + performance_fenix_build_by_build_beta.lower, + performance_fenix_build_by_build_beta.point + ] + pivots: [ + performance_fenix_build_by_build_beta.branch + ] + filters: + performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time' + performance_fenix_build_by_build_beta.statistic: percentile + row: 30 col: 0 width: 12 height: 8 @@ -354,7 +282,7 @@ filters: performance_fenix_build_by_build_beta.metric: 'storage_stats_cache_bytes' performance_fenix_build_by_build_beta.statistic: percentile - row: 40 + row: 30 col: 12 width: 12 height: 8 @@ -370,8 +298,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Performance Pageload Fcp Responsestart - name: Performance Pageload Fcp Responsestart_percentile + - title: Performance Pageload Dcl + name: Performance Pageload Dcl_percentile note_state: expanded note_display: above note_text: Percentile @@ -388,7 +316,79 @@ performance_fenix_build_by_build_beta.branch ] filters: - performance_fenix_build_by_build_beta.metric: 'performance_pageload_fcp_responsestart' + performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl' + performance_fenix_build_by_build_beta.statistic: percentile + row: 40 + col: 0 + width: 12 + height: 8 + field_x: performance_fenix_build_by_build_beta.build_id + field_y: performance_fenix_build_by_build_beta.point + log_scale: false + ci_lower: performance_fenix_build_by_build_beta.lower + ci_upper: performance_fenix_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_fenix_build_by_build_beta.build_id + Percentile: performance_fenix_build_by_build_beta.parameter + + active: "#3FE1B0" + defaults_version: 0 + - title: Performance Pageload Fcp + name: Performance Pageload Fcp_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_fenix_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_fenix_build_by_build_beta.build_id, + performance_fenix_build_by_build_beta.branch, + performance_fenix_build_by_build_beta.upper, + performance_fenix_build_by_build_beta.lower, + performance_fenix_build_by_build_beta.point + ] + pivots: [ + performance_fenix_build_by_build_beta.branch + ] + filters: + performance_fenix_build_by_build_beta.metric: 'performance_pageload_fcp' + performance_fenix_build_by_build_beta.statistic: percentile + row: 40 + col: 12 + width: 12 + height: 8 + field_x: performance_fenix_build_by_build_beta.build_id + field_y: performance_fenix_build_by_build_beta.point + log_scale: false + ci_lower: performance_fenix_build_by_build_beta.lower + ci_upper: performance_fenix_build_by_build_beta.upper + show_grid: true + listen: + Date: performance_fenix_build_by_build_beta.build_id + Percentile: performance_fenix_build_by_build_beta.parameter + + active: "#3FE1B0" + defaults_version: 0 + - title: Perf Startup Cold View App To First Frame + name: Perf Startup Cold View App To First Frame_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_fenix_build_by_build_beta + type: "ci-line-chart" + fields: [ + performance_fenix_build_by_build_beta.build_id, + performance_fenix_build_by_build_beta.branch, + performance_fenix_build_by_build_beta.upper, + performance_fenix_build_by_build_beta.lower, + performance_fenix_build_by_build_beta.point + ] + pivots: [ + performance_fenix_build_by_build_beta.branch + ] + filters: + performance_fenix_build_by_build_beta.metric: 'perf_startup_cold_view_app_to_first_frame' performance_fenix_build_by_build_beta.statistic: percentile row: 50 col: 0 @@ -406,8 +406,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Performance Pageload Load Time Responsestart - name: Performance Pageload Load Time Responsestart_percentile + - title: Storage Stats Data Dir Bytes + name: Storage Stats Data Dir Bytes_percentile note_state: expanded note_display: above note_text: Percentile @@ -424,7 +424,7 @@ performance_fenix_build_by_build_beta.branch ] filters: - performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time_responsestart' + performance_fenix_build_by_build_beta.metric: 'storage_stats_data_dir_bytes' performance_fenix_build_by_build_beta.statistic: percentile row: 50 col: 12 diff --git a/operational_monitoring/dashboards/performance_review_kenya.dashboard.lookml b/operational_monitoring/dashboards/performance_review_kenya.dashboard.lookml index 01d0e2dcf..0d8f1ba08 100644 --- a/operational_monitoring/dashboards/performance_review_kenya.dashboard.lookml +++ b/operational_monitoring/dashboards/performance_review_kenya.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Storage Stats Data Dir Bytes - name: Storage Stats Data Dir Bytes_percentile + - title: Networking Http 1 Upload Throughput + name: Networking Http 1 Upload Throughput_percentile note_state: expanded note_display: above note_text: Percentile @@ -28,7 +28,7 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"storage_stats_data_dir_bytes_US", "storage_stats_data_dir_bytes_KE"' + performance_review_kenya.metric: '"networking_http_1_upload_throughput_US", "networking_http_1_upload_throughput_KE"' performance_review_kenya.statistic: percentile row: 0 col: 0 @@ -46,8 +46,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Networking Http 2 Upload Throughput - name: Networking Http 2 Upload Throughput_percentile + - title: Networking Http 3 Upload Throughput + name: Networking Http 3 Upload Throughput_percentile note_state: expanded note_display: above note_text: Percentile @@ -64,7 +64,7 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"networking_http_2_upload_throughput_US", "networking_http_2_upload_throughput_KE"' + performance_review_kenya.metric: '"networking_http_3_upload_throughput_KE", "networking_http_3_upload_throughput_US"' performance_review_kenya.statistic: percentile row: 0 col: 12 @@ -80,42 +80,6 @@ Date: performance_review_kenya.build_id Percentile: performance_review_kenya.parameter - active: "#3FE1B0" - defaults_version: 0 - - title: Networking Http 2 Download Throughput - name: Networking Http 2 Download Throughput_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya - type: "ci-line-chart" - fields: [ - performance_review_kenya.build_id, - performance_review_kenya.branch, - performance_review_kenya.upper, - performance_review_kenya.lower, - performance_review_kenya.point - ] - pivots: [ - performance_review_kenya.branch, performance_review_kenya.metric - ] - filters: - performance_review_kenya.metric: '"networking_http_2_download_throughput_US", "networking_http_2_download_throughput_KE"' - performance_review_kenya.statistic: percentile - row: 10 - col: 0 - width: 12 - height: 8 - field_x: performance_review_kenya.build_id - field_y: performance_review_kenya.point - log_scale: false - ci_lower: performance_review_kenya.lower - ci_upper: performance_review_kenya.upper - show_grid: true - listen: - Date: performance_review_kenya.build_id - Percentile: performance_review_kenya.parameter - active: "#3FE1B0" defaults_version: 0 - title: Networking Http 3 Download Throughput @@ -139,7 +103,7 @@ performance_review_kenya.metric: '"networking_http_3_download_throughput_US", "networking_http_3_download_throughput_KE"' performance_review_kenya.statistic: percentile row: 10 - col: 12 + col: 0 width: 12 height: 8 field_x: performance_review_kenya.build_id @@ -154,8 +118,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Networking Http 3 Upload Throughput - name: Networking Http 3 Upload Throughput_percentile + - title: Networking Http 1 Download Throughput + name: Networking Http 1 Download Throughput_percentile note_state: expanded note_display: above note_text: Percentile @@ -172,7 +136,43 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"networking_http_3_upload_throughput_KE", "networking_http_3_upload_throughput_US"' + performance_review_kenya.metric: '"networking_http_1_download_throughput_US", "networking_http_1_download_throughput_KE"' + performance_review_kenya.statistic: percentile + row: 10 + col: 12 + width: 12 + height: 8 + field_x: performance_review_kenya.build_id + field_y: performance_review_kenya.point + log_scale: false + ci_lower: performance_review_kenya.lower + ci_upper: performance_review_kenya.upper + show_grid: true + listen: + Date: performance_review_kenya.build_id + Percentile: performance_review_kenya.parameter + + active: "#3FE1B0" + defaults_version: 0 + - title: Perf Startup Cold View App To First Frame + name: Perf Startup Cold View App To First Frame_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya + type: "ci-line-chart" + fields: [ + performance_review_kenya.build_id, + performance_review_kenya.branch, + performance_review_kenya.upper, + performance_review_kenya.lower, + performance_review_kenya.point + ] + pivots: [ + performance_review_kenya.branch, performance_review_kenya.metric + ] + filters: + performance_review_kenya.metric: '"perf_startup_cold_view_app_to_first_frame_KE", "perf_startup_cold_view_app_to_first_frame_US"' performance_review_kenya.statistic: percentile row: 20 col: 0 @@ -188,6 +188,42 @@ Date: performance_review_kenya.build_id Percentile: performance_review_kenya.parameter + active: "#3FE1B0" + defaults_version: 0 + - title: Performance Pageload Load Time + name: Performance Pageload Load Time_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya + type: "ci-line-chart" + fields: [ + performance_review_kenya.build_id, + performance_review_kenya.branch, + performance_review_kenya.upper, + performance_review_kenya.lower, + performance_review_kenya.point + ] + pivots: [ + performance_review_kenya.branch, performance_review_kenya.metric + ] + filters: + performance_review_kenya.metric: '"performance_pageload_load_time_KE", "performance_pageload_load_time_US"' + performance_review_kenya.statistic: percentile + row: 20 + col: 12 + width: 12 + height: 8 + field_x: performance_review_kenya.build_id + field_y: performance_review_kenya.point + log_scale: false + ci_lower: performance_review_kenya.lower + ci_upper: performance_review_kenya.upper + show_grid: true + listen: + Date: performance_review_kenya.build_id + Percentile: performance_review_kenya.parameter + active: "#3FE1B0" defaults_version: 0 - title: Storage Stats App Bytes @@ -208,9 +244,45 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"storage_stats_app_bytes_US", "storage_stats_app_bytes_KE"' + performance_review_kenya.metric: '"storage_stats_app_bytes_KE", "storage_stats_app_bytes_US"' performance_review_kenya.statistic: percentile - row: 20 + row: 30 + col: 0 + width: 12 + height: 8 + field_x: performance_review_kenya.build_id + field_y: performance_review_kenya.point + log_scale: false + ci_lower: performance_review_kenya.lower + ci_upper: performance_review_kenya.upper + show_grid: true + listen: + Date: performance_review_kenya.build_id + Percentile: performance_review_kenya.parameter + + active: "#3FE1B0" + 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: performance_review_kenya + type: "ci-line-chart" + fields: [ + performance_review_kenya.build_id, + performance_review_kenya.branch, + performance_review_kenya.upper, + performance_review_kenya.lower, + performance_review_kenya.point + ] + pivots: [ + performance_review_kenya.branch, performance_review_kenya.metric + ] + filters: + performance_review_kenya.metric: '"storage_stats_data_dir_bytes_KE", "storage_stats_data_dir_bytes_US"' + performance_review_kenya.statistic: percentile + row: 30 col: 12 width: 12 height: 8 @@ -244,9 +316,9 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"perf_startup_cold_main_app_to_first_frame_KE", "perf_startup_cold_main_app_to_first_frame_US"' + performance_review_kenya.metric: '"perf_startup_cold_main_app_to_first_frame_US", "perf_startup_cold_main_app_to_first_frame_KE"' performance_review_kenya.statistic: percentile - row: 30 + row: 40 col: 0 width: 12 height: 8 @@ -262,8 +334,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Networking Http 1 Upload Throughput - name: Networking Http 1 Upload Throughput_percentile + - title: Networking Dns Lookup Time + name: Networking Dns Lookup Time_percentile note_state: expanded note_display: above note_text: Percentile @@ -280,9 +352,9 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"networking_http_1_upload_throughput_US", "networking_http_1_upload_throughput_KE"' + performance_review_kenya.metric: '"networking_dns_lookup_time_KE", "networking_dns_lookup_time_US"' performance_review_kenya.statistic: percentile - row: 30 + row: 40 col: 12 width: 12 height: 8 @@ -318,78 +390,6 @@ filters: performance_review_kenya.metric: '"performance_time_response_start_US", "performance_time_response_start_KE"' performance_review_kenya.statistic: percentile - row: 40 - col: 0 - width: 12 - height: 8 - field_x: performance_review_kenya.build_id - field_y: performance_review_kenya.point - log_scale: false - ci_lower: performance_review_kenya.lower - ci_upper: performance_review_kenya.upper - show_grid: true - listen: - Date: performance_review_kenya.build_id - Percentile: performance_review_kenya.parameter - - active: "#3FE1B0" - defaults_version: 0 - - title: Performance Pageload Load Time - name: Performance Pageload Load Time_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya - type: "ci-line-chart" - fields: [ - performance_review_kenya.build_id, - performance_review_kenya.branch, - performance_review_kenya.upper, - performance_review_kenya.lower, - performance_review_kenya.point - ] - pivots: [ - performance_review_kenya.branch, performance_review_kenya.metric - ] - filters: - performance_review_kenya.metric: '"performance_pageload_load_time_US", "performance_pageload_load_time_KE"' - performance_review_kenya.statistic: percentile - row: 40 - col: 12 - width: 12 - height: 8 - field_x: performance_review_kenya.build_id - field_y: performance_review_kenya.point - log_scale: false - ci_lower: performance_review_kenya.lower - ci_upper: performance_review_kenya.upper - show_grid: true - listen: - Date: performance_review_kenya.build_id - Percentile: performance_review_kenya.parameter - - active: "#3FE1B0" - defaults_version: 0 - - title: Perf Startup Cold View App To First Frame - name: Perf Startup Cold View App To First Frame_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya - type: "ci-line-chart" - fields: [ - performance_review_kenya.build_id, - performance_review_kenya.branch, - performance_review_kenya.upper, - performance_review_kenya.lower, - performance_review_kenya.point - ] - pivots: [ - performance_review_kenya.branch, performance_review_kenya.metric - ] - filters: - performance_review_kenya.metric: '"perf_startup_cold_view_app_to_first_frame_US", "perf_startup_cold_view_app_to_first_frame_KE"' - performance_review_kenya.statistic: percentile row: 50 col: 0 width: 12 @@ -406,8 +406,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Networking Http 1 Download Throughput - name: Networking Http 1 Download Throughput_percentile + - title: Networking Http 2 Download Throughput + name: Networking Http 2 Download Throughput_percentile note_state: expanded note_display: above note_text: Percentile @@ -424,7 +424,7 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"networking_http_1_download_throughput_KE", "networking_http_1_download_throughput_US"' + performance_review_kenya.metric: '"networking_http_2_download_throughput_US", "networking_http_2_download_throughput_KE"' performance_review_kenya.statistic: percentile row: 50 col: 12 @@ -442,8 +442,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Networking Dns Lookup Time - name: Networking Dns Lookup Time_percentile + - title: Networking Http 2 Upload Throughput + name: Networking Http 2 Upload Throughput_percentile note_state: expanded note_display: above note_text: Percentile @@ -460,7 +460,7 @@ performance_review_kenya.branch, performance_review_kenya.metric ] filters: - performance_review_kenya.metric: '"networking_dns_lookup_time_KE", "networking_dns_lookup_time_US"' + performance_review_kenya.metric: '"networking_http_2_upload_throughput_US", "networking_http_2_upload_throughput_KE"' performance_review_kenya.statistic: percentile row: 60 col: 0 diff --git a/operational_monitoring/dashboards/performance_review_kenya_2.dashboard.lookml b/operational_monitoring/dashboards/performance_review_kenya_2.dashboard.lookml index b6cf760fb..d64ca6f4a 100644 --- a/operational_monitoring/dashboards/performance_review_kenya_2.dashboard.lookml +++ b/operational_monitoring/dashboards/performance_review_kenya_2.dashboard.lookml @@ -47,8 +47,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Networking Http 1 Download Throughput - By country - name: Networking Http 1 Download Throughput - By country_percentile + - title: Networking Http 1 Upload Throughput - By country + name: Networking Http 1 Upload Throughput - By country_percentile note_state: expanded note_display: above note_text: Percentile @@ -65,7 +65,7 @@ performance_review_kenya_2.branch, performance_review_kenya_2.country ] filters: - performance_review_kenya_2.metric: 'networking_http_1_download_throughput' + performance_review_kenya_2.metric: 'networking_http_1_upload_throughput' performance_review_kenya_2.statistic: percentile row: 0 col: 12 @@ -82,228 +82,6 @@ Percentile: performance_review_kenya_2.parameter Country: performance_review_kenya_2.country - active: "#3FE1B0" - defaults_version: 0 - - title: Networking Http 2 Download Throughput - By country - name: Networking Http 2 Download Throughput - By country_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya_2 - type: "ci-line-chart" - fields: [ - performance_review_kenya_2.build_id, - performance_review_kenya_2.branch, - performance_review_kenya_2.upper, - performance_review_kenya_2.lower, - performance_review_kenya_2.point - ] - pivots: [ - performance_review_kenya_2.branch, performance_review_kenya_2.country - ] - filters: - performance_review_kenya_2.metric: 'networking_http_2_download_throughput' - performance_review_kenya_2.statistic: percentile - row: 10 - col: 0 - width: 12 - height: 8 - field_x: performance_review_kenya_2.build_id - field_y: performance_review_kenya_2.point - log_scale: false - ci_lower: performance_review_kenya_2.lower - ci_upper: performance_review_kenya_2.upper - show_grid: true - listen: - Date: performance_review_kenya_2.build_id - Percentile: performance_review_kenya_2.parameter - Country: performance_review_kenya_2.country - - active: "#3FE1B0" - defaults_version: 0 - - title: Storage Stats Data Dir Bytes - By country - name: Storage Stats Data Dir Bytes - By country_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya_2 - type: "ci-line-chart" - fields: [ - performance_review_kenya_2.build_id, - performance_review_kenya_2.branch, - performance_review_kenya_2.upper, - performance_review_kenya_2.lower, - performance_review_kenya_2.point - ] - pivots: [ - performance_review_kenya_2.branch, performance_review_kenya_2.country - ] - filters: - performance_review_kenya_2.metric: 'storage_stats_data_dir_bytes' - performance_review_kenya_2.statistic: percentile - row: 10 - col: 12 - width: 12 - height: 8 - field_x: performance_review_kenya_2.build_id - field_y: performance_review_kenya_2.point - log_scale: false - ci_lower: performance_review_kenya_2.lower - ci_upper: performance_review_kenya_2.upper - show_grid: true - listen: - Date: performance_review_kenya_2.build_id - Percentile: performance_review_kenya_2.parameter - Country: performance_review_kenya_2.country - - active: "#3FE1B0" - defaults_version: 0 - - title: Networking Http 3 Download Throughput - By country - name: Networking Http 3 Download Throughput - By country_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya_2 - type: "ci-line-chart" - fields: [ - performance_review_kenya_2.build_id, - performance_review_kenya_2.branch, - performance_review_kenya_2.upper, - performance_review_kenya_2.lower, - performance_review_kenya_2.point - ] - pivots: [ - performance_review_kenya_2.branch, performance_review_kenya_2.country - ] - filters: - performance_review_kenya_2.metric: 'networking_http_3_download_throughput' - performance_review_kenya_2.statistic: percentile - row: 20 - col: 0 - width: 12 - height: 8 - field_x: performance_review_kenya_2.build_id - field_y: performance_review_kenya_2.point - log_scale: false - ci_lower: performance_review_kenya_2.lower - ci_upper: performance_review_kenya_2.upper - show_grid: true - listen: - Date: performance_review_kenya_2.build_id - Percentile: performance_review_kenya_2.parameter - Country: performance_review_kenya_2.country - - active: "#3FE1B0" - defaults_version: 0 - - title: Performance Time Response Start - By country - name: Performance Time Response Start - By country_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya_2 - type: "ci-line-chart" - fields: [ - performance_review_kenya_2.build_id, - performance_review_kenya_2.branch, - performance_review_kenya_2.upper, - performance_review_kenya_2.lower, - performance_review_kenya_2.point - ] - pivots: [ - performance_review_kenya_2.branch, performance_review_kenya_2.country - ] - filters: - performance_review_kenya_2.metric: 'performance_time_response_start' - performance_review_kenya_2.statistic: percentile - row: 20 - col: 12 - width: 12 - height: 8 - field_x: performance_review_kenya_2.build_id - field_y: performance_review_kenya_2.point - log_scale: false - ci_lower: performance_review_kenya_2.lower - ci_upper: performance_review_kenya_2.upper - show_grid: true - listen: - Date: performance_review_kenya_2.build_id - Percentile: performance_review_kenya_2.parameter - Country: performance_review_kenya_2.country - - active: "#3FE1B0" - defaults_version: 0 - - title: Performance Pageload Load Time - By country - name: Performance Pageload Load Time - By country_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya_2 - type: "ci-line-chart" - fields: [ - performance_review_kenya_2.build_id, - performance_review_kenya_2.branch, - performance_review_kenya_2.upper, - performance_review_kenya_2.lower, - performance_review_kenya_2.point - ] - pivots: [ - performance_review_kenya_2.branch, performance_review_kenya_2.country - ] - filters: - performance_review_kenya_2.metric: 'performance_pageload_load_time' - performance_review_kenya_2.statistic: percentile - row: 30 - col: 0 - width: 12 - height: 8 - field_x: performance_review_kenya_2.build_id - field_y: performance_review_kenya_2.point - log_scale: false - ci_lower: performance_review_kenya_2.lower - ci_upper: performance_review_kenya_2.upper - show_grid: true - listen: - Date: performance_review_kenya_2.build_id - Percentile: performance_review_kenya_2.parameter - Country: performance_review_kenya_2.country - - active: "#3FE1B0" - defaults_version: 0 - - title: Perf Startup Cold Main App To First Frame - By country - name: Perf Startup Cold Main App To First Frame - By country_percentile - note_state: expanded - note_display: above - note_text: Percentile - explore: performance_review_kenya_2 - type: "ci-line-chart" - fields: [ - performance_review_kenya_2.build_id, - performance_review_kenya_2.branch, - performance_review_kenya_2.upper, - performance_review_kenya_2.lower, - performance_review_kenya_2.point - ] - pivots: [ - performance_review_kenya_2.branch, performance_review_kenya_2.country - ] - filters: - performance_review_kenya_2.metric: 'perf_startup_cold_main_app_to_first_frame' - performance_review_kenya_2.statistic: percentile - row: 30 - col: 12 - width: 12 - height: 8 - field_x: performance_review_kenya_2.build_id - field_y: performance_review_kenya_2.point - log_scale: false - ci_lower: performance_review_kenya_2.lower - ci_upper: performance_review_kenya_2.upper - show_grid: true - listen: - Date: performance_review_kenya_2.build_id - Percentile: performance_review_kenya_2.parameter - Country: performance_review_kenya_2.country - active: "#3FE1B0" defaults_version: 0 - title: Networking Http 3 Upload Throughput - By country @@ -326,7 +104,81 @@ filters: performance_review_kenya_2.metric: 'networking_http_3_upload_throughput' performance_review_kenya_2.statistic: percentile - row: 40 + row: 10 + col: 0 + width: 12 + height: 8 + field_x: performance_review_kenya_2.build_id + field_y: performance_review_kenya_2.point + log_scale: false + ci_lower: performance_review_kenya_2.lower + ci_upper: performance_review_kenya_2.upper + show_grid: true + listen: + Date: performance_review_kenya_2.build_id + Percentile: performance_review_kenya_2.parameter + Country: performance_review_kenya_2.country + + active: "#3FE1B0" + defaults_version: 0 + - title: Perf Startup Cold Main App To First Frame - By country + name: Perf Startup Cold Main App To First Frame - By country_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya_2 + type: "ci-line-chart" + fields: [ + performance_review_kenya_2.build_id, + performance_review_kenya_2.branch, + performance_review_kenya_2.upper, + performance_review_kenya_2.lower, + performance_review_kenya_2.point + ] + pivots: [ + performance_review_kenya_2.branch, performance_review_kenya_2.country + ] + filters: + performance_review_kenya_2.metric: 'perf_startup_cold_main_app_to_first_frame' + performance_review_kenya_2.statistic: percentile + row: 10 + col: 12 + width: 12 + height: 8 + field_x: performance_review_kenya_2.build_id + field_y: performance_review_kenya_2.point + log_scale: false + ci_lower: performance_review_kenya_2.lower + ci_upper: performance_review_kenya_2.upper + show_grid: true + listen: + Date: performance_review_kenya_2.build_id + Percentile: performance_review_kenya_2.parameter + Country: performance_review_kenya_2.country + + active: "#3FE1B0" + defaults_version: 0 + - title: Networking Http 1 Download Throughput - By country + name: Networking Http 1 Download Throughput - By country_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya_2 + type: "ci-line-chart" + fields: [ + performance_review_kenya_2.build_id, + performance_review_kenya_2.branch, + performance_review_kenya_2.upper, + performance_review_kenya_2.lower, + performance_review_kenya_2.point + ] + pivots: [ + performance_review_kenya_2.branch, performance_review_kenya_2.country + ] + filters: + performance_review_kenya_2.metric: 'networking_http_1_download_throughput' + performance_review_kenya_2.statistic: percentile + row: 20 col: 0 width: 12 height: 8 @@ -363,7 +215,7 @@ filters: performance_review_kenya_2.metric: 'storage_stats_app_bytes' performance_review_kenya_2.statistic: percentile - row: 40 + row: 20 col: 12 width: 12 height: 8 @@ -380,8 +232,8 @@ active: "#3FE1B0" defaults_version: 0 - - title: Networking Http 1 Upload Throughput - By country - name: Networking Http 1 Upload Throughput - By country_percentile + - title: Networking Http 3 Download Throughput - By country + name: Networking Http 3 Download Throughput - By country_percentile note_state: expanded note_display: above note_text: Percentile @@ -398,9 +250,9 @@ performance_review_kenya_2.branch, performance_review_kenya_2.country ] filters: - performance_review_kenya_2.metric: 'networking_http_1_upload_throughput' + performance_review_kenya_2.metric: 'networking_http_3_download_throughput' performance_review_kenya_2.statistic: percentile - row: 50 + row: 30 col: 0 width: 12 height: 8 @@ -437,7 +289,7 @@ filters: performance_review_kenya_2.metric: 'networking_dns_lookup_time' performance_review_kenya_2.statistic: percentile - row: 50 + row: 30 col: 12 width: 12 height: 8 @@ -452,6 +304,117 @@ Percentile: performance_review_kenya_2.parameter Country: performance_review_kenya_2.country + active: "#3FE1B0" + defaults_version: 0 + - title: Networking Http 2 Download Throughput - By country + name: Networking Http 2 Download Throughput - By country_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya_2 + type: "ci-line-chart" + fields: [ + performance_review_kenya_2.build_id, + performance_review_kenya_2.branch, + performance_review_kenya_2.upper, + performance_review_kenya_2.lower, + performance_review_kenya_2.point + ] + pivots: [ + performance_review_kenya_2.branch, performance_review_kenya_2.country + ] + filters: + performance_review_kenya_2.metric: 'networking_http_2_download_throughput' + performance_review_kenya_2.statistic: percentile + row: 40 + col: 0 + width: 12 + height: 8 + field_x: performance_review_kenya_2.build_id + field_y: performance_review_kenya_2.point + log_scale: false + ci_lower: performance_review_kenya_2.lower + ci_upper: performance_review_kenya_2.upper + show_grid: true + listen: + Date: performance_review_kenya_2.build_id + Percentile: performance_review_kenya_2.parameter + Country: performance_review_kenya_2.country + + active: "#3FE1B0" + defaults_version: 0 + - title: Performance Time Response Start - By country + name: Performance Time Response Start - By country_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya_2 + type: "ci-line-chart" + fields: [ + performance_review_kenya_2.build_id, + performance_review_kenya_2.branch, + performance_review_kenya_2.upper, + performance_review_kenya_2.lower, + performance_review_kenya_2.point + ] + pivots: [ + performance_review_kenya_2.branch, performance_review_kenya_2.country + ] + filters: + performance_review_kenya_2.metric: 'performance_time_response_start' + performance_review_kenya_2.statistic: percentile + row: 40 + col: 12 + width: 12 + height: 8 + field_x: performance_review_kenya_2.build_id + field_y: performance_review_kenya_2.point + log_scale: false + ci_lower: performance_review_kenya_2.lower + ci_upper: performance_review_kenya_2.upper + show_grid: true + listen: + Date: performance_review_kenya_2.build_id + Percentile: performance_review_kenya_2.parameter + Country: performance_review_kenya_2.country + + active: "#3FE1B0" + defaults_version: 0 + - title: Performance Pageload Load Time - By country + name: Performance Pageload Load Time - By country_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya_2 + type: "ci-line-chart" + fields: [ + performance_review_kenya_2.build_id, + performance_review_kenya_2.branch, + performance_review_kenya_2.upper, + performance_review_kenya_2.lower, + performance_review_kenya_2.point + ] + pivots: [ + performance_review_kenya_2.branch, performance_review_kenya_2.country + ] + filters: + performance_review_kenya_2.metric: 'performance_pageload_load_time' + performance_review_kenya_2.statistic: percentile + row: 50 + col: 0 + width: 12 + height: 8 + field_x: performance_review_kenya_2.build_id + field_y: performance_review_kenya_2.point + log_scale: false + ci_lower: performance_review_kenya_2.lower + ci_upper: performance_review_kenya_2.upper + show_grid: true + listen: + Date: performance_review_kenya_2.build_id + Percentile: performance_review_kenya_2.parameter + Country: performance_review_kenya_2.country + active: "#3FE1B0" defaults_version: 0 - title: Perf Startup Cold View App To First Frame - By country @@ -474,6 +437,43 @@ filters: performance_review_kenya_2.metric: 'perf_startup_cold_view_app_to_first_frame' performance_review_kenya_2.statistic: percentile + row: 50 + col: 12 + width: 12 + height: 8 + field_x: performance_review_kenya_2.build_id + field_y: performance_review_kenya_2.point + log_scale: false + ci_lower: performance_review_kenya_2.lower + ci_upper: performance_review_kenya_2.upper + show_grid: true + listen: + Date: performance_review_kenya_2.build_id + Percentile: performance_review_kenya_2.parameter + Country: performance_review_kenya_2.country + + active: "#3FE1B0" + defaults_version: 0 + - title: Storage Stats Data Dir Bytes - By country + name: Storage Stats Data Dir Bytes - By country_percentile + note_state: expanded + note_display: above + note_text: Percentile + explore: performance_review_kenya_2 + type: "ci-line-chart" + fields: [ + performance_review_kenya_2.build_id, + performance_review_kenya_2.branch, + performance_review_kenya_2.upper, + performance_review_kenya_2.lower, + performance_review_kenya_2.point + ] + pivots: [ + performance_review_kenya_2.branch, performance_review_kenya_2.country + ] + filters: + performance_review_kenya_2.metric: 'storage_stats_data_dir_bytes' + performance_review_kenya_2.statistic: percentile row: 60 col: 0 width: 12 diff --git a/operational_monitoring/dashboards/persist_search_term_rollout_phase_1.dashboard.lookml b/operational_monitoring/dashboards/persist_search_term_rollout_phase_1.dashboard.lookml index 543420c52..525284f39 100644 --- a/operational_monitoring/dashboards/persist_search_term_rollout_phase_1.dashboard.lookml +++ b/operational_monitoring/dashboards/persist_search_term_rollout_phase_1.dashboard.lookml @@ -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: persist_search_term_rollout_phase_1 + type: looker_line + fields: [ + persist_search_term_rollout_phase_1.submission_date, + persist_search_term_rollout_phase_1.branch, + persist_search_term_rollout_phase_1.point + ] + pivots: [ + persist_search_term_rollout_phase_1.branch + ] + filters: + persist_search_term_rollout_phase_1.metric: 'active_hours' + persist_search_term_rollout_phase_1.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: persist_search_term_rollout_phase_1.submission_date + field_y: persist_search_term_rollout_phase_1.point + log_scale: false + ci_lower: persist_search_term_rollout_phase_1.lower + ci_upper: persist_search_term_rollout_phase_1.upper + show_grid: true + listen: + Date: persist_search_term_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 @@ persist_search_term_rollout_phase_1.metric: 'uri_count' persist_search_term_rollout_phase_1.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: persist_search_term_rollout_phase_1.submission_date + field_y: persist_search_term_rollout_phase_1.point + log_scale: false + ci_lower: persist_search_term_rollout_phase_1.lower + ci_upper: persist_search_term_rollout_phase_1.upper + show_grid: true + listen: + Date: persist_search_term_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: persist_search_term_rollout_phase_1 + type: looker_line + fields: [ + persist_search_term_rollout_phase_1.submission_date, + persist_search_term_rollout_phase_1.branch, + persist_search_term_rollout_phase_1.point + ] + pivots: [ + persist_search_term_rollout_phase_1.branch + ] + filters: + persist_search_term_rollout_phase_1.metric: 'ad_clicks' + persist_search_term_rollout_phase_1.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: persist_search_term_rollout_phase_1.metric: 'retained' persist_search_term_rollout_phase_1.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: persist_search_term_rollout_phase_1.submission_date - field_y: persist_search_term_rollout_phase_1.point - log_scale: false - ci_lower: persist_search_term_rollout_phase_1.lower - ci_upper: persist_search_term_rollout_phase_1.upper - show_grid: true - listen: - Date: persist_search_term_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: persist_search_term_rollout_phase_1 - type: looker_line - fields: [ - persist_search_term_rollout_phase_1.submission_date, - persist_search_term_rollout_phase_1.branch, - persist_search_term_rollout_phase_1.point - ] - pivots: [ - persist_search_term_rollout_phase_1.branch - ] - filters: - persist_search_term_rollout_phase_1.metric: 'qualified_cumulative_days_of_use' - persist_search_term_rollout_phase_1.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: persist_search_term_rollout_phase_1.submission_date - field_y: persist_search_term_rollout_phase_1.point - log_scale: false - ci_lower: persist_search_term_rollout_phase_1.lower - ci_upper: persist_search_term_rollout_phase_1.upper - show_grid: true - listen: - Date: persist_search_term_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: persist_search_term_rollout_phase_1 - type: looker_line - fields: [ - persist_search_term_rollout_phase_1.submission_date, - persist_search_term_rollout_phase_1.branch, - persist_search_term_rollout_phase_1.point - ] - pivots: [ - persist_search_term_rollout_phase_1.branch - ] - filters: - persist_search_term_rollout_phase_1.metric: 'search_count' - persist_search_term_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 @@ persist_search_term_rollout_phase_1.branch ] filters: - persist_search_term_rollout_phase_1.metric: 'ad_clicks' + persist_search_term_rollout_phase_1.metric: 'days_of_use' persist_search_term_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 @@ persist_search_term_rollout_phase_1.branch ] filters: - persist_search_term_rollout_phase_1.metric: 'days_of_use' + persist_search_term_rollout_phase_1.metric: 'search_count' persist_search_term_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 @@ persist_search_term_rollout_phase_1.branch ] filters: - persist_search_term_rollout_phase_1.metric: 'active_hours' + persist_search_term_rollout_phase_1.metric: 'qualified_cumulative_days_of_use' persist_search_term_rollout_phase_1.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/phc_rollout.dashboard.lookml b/operational_monitoring/dashboards/phc_rollout.dashboard.lookml index a30377fcd..d5fe48c42 100644 --- a/operational_monitoring/dashboards/phc_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/phc_rollout.dashboard.lookml @@ -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: phc_rollout + type: looker_line + fields: [ + phc_rollout.submission_date, + phc_rollout.branch, + phc_rollout.point + ] + pivots: [ + phc_rollout.branch + ] + filters: + phc_rollout.metric: 'active_hours' + phc_rollout.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: phc_rollout.submission_date + field_y: phc_rollout.point + log_scale: false + ci_lower: phc_rollout.lower + ci_upper: phc_rollout.upper + show_grid: true + listen: + Date: phc_rollout.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ phc_rollout.metric: 'uri_count' phc_rollout.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: phc_rollout.submission_date + field_y: phc_rollout.point + log_scale: false + ci_lower: phc_rollout.lower + ci_upper: phc_rollout.upper + show_grid: true + listen: + Date: phc_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: phc_rollout + type: looker_line + fields: [ + phc_rollout.submission_date, + phc_rollout.branch, + phc_rollout.point + ] + pivots: [ + phc_rollout.branch + ] + filters: + phc_rollout.metric: 'ad_clicks' + phc_rollout.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: phc_rollout.metric: 'retained' phc_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: phc_rollout.submission_date - field_y: phc_rollout.point - log_scale: false - ci_lower: phc_rollout.lower - ci_upper: phc_rollout.upper - show_grid: true - listen: - Date: phc_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: phc_rollout - type: looker_line - fields: [ - phc_rollout.submission_date, - phc_rollout.branch, - phc_rollout.point - ] - pivots: [ - phc_rollout.branch - ] - filters: - phc_rollout.metric: 'qualified_cumulative_days_of_use' - phc_rollout.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: phc_rollout.submission_date - field_y: phc_rollout.point - log_scale: false - ci_lower: phc_rollout.lower - ci_upper: phc_rollout.upper - show_grid: true - listen: - Date: phc_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: phc_rollout - type: looker_line - fields: [ - phc_rollout.submission_date, - phc_rollout.branch, - phc_rollout.point - ] - pivots: [ - phc_rollout.branch - ] - filters: - phc_rollout.metric: 'search_count' - phc_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 @@ phc_rollout.branch ] filters: - phc_rollout.metric: 'ad_clicks' + phc_rollout.metric: 'days_of_use' phc_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 @@ phc_rollout.branch ] filters: - phc_rollout.metric: 'days_of_use' + phc_rollout.metric: 'search_count' phc_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 @@ phc_rollout.branch ] filters: - phc_rollout.metric: 'active_hours' + phc_rollout.metric: 'qualified_cumulative_days_of_use' phc_rollout.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/print_background_task_times.dashboard.lookml b/operational_monitoring/dashboards/print_background_task_times.dashboard.lookml index 7963fd10e..f8f14c18b 100644 --- a/operational_monitoring/dashboards/print_background_task_times.dashboard.lookml +++ b/operational_monitoring/dashboards/print_background_task_times.dashboard.lookml @@ -26,7 +26,7 @@ print_background_task_times.branch, print_background_task_times.metric ] filters: - print_background_task_times.metric: '"printing_dialog_opened_via_preview", "printing_dialog_opened_without_preview", "printing_silent_print", "printing_preview_opened", "printing_dialog_opened_via_preview_tm", "printing_preview_opened_tm"' + print_background_task_times.metric: '"printing_dialog_opened_without_preview", "printing_preview_opened", "printing_silent_print", "printing_dialog_opened_via_preview_tm", "printing_dialog_opened_via_preview", "printing_preview_opened_tm"' print_background_task_times.statistic: sum row: 0 col: 0 @@ -43,6 +43,41 @@ Channel: print_background_task_times.channel Os: print_background_task_times.os + active: "#3FE1B0" + defaults_version: 0 + - title: Print Cancel Ratios + name: Print Cancel Ratios_total_ratio + note_state: expanded + note_display: above + note_text: Total_Ratio + explore: print_background_task_times + type: looker_line + fields: [ + print_background_task_times.submission_date, + print_background_task_times.branch, + print_background_task_times.point + ] + pivots: [ + print_background_task_times.branch, print_background_task_times.metric + ] + filters: + print_background_task_times.metric: '"printing_dialog_without_preview_cancelled", "printing_preview_cancelled_tm", "printing_dialog_via_preview_cancelled", "printing_dialog_via_preview_cancelled_tm", "printing_preview_cancelled"' + print_background_task_times.statistic: total_ratio + row: 0 + col: 12 + width: 12 + height: 8 + field_x: print_background_task_times.submission_date + field_y: print_background_task_times.point + log_scale: false + ci_lower: print_background_task_times.lower + ci_upper: print_background_task_times.upper + show_grid: true + listen: + Date: print_background_task_times.submission_date + Channel: print_background_task_times.channel + Os: print_background_task_times.os + active: "#3FE1B0" defaults_version: 0 - title: Print Count @@ -63,8 +98,8 @@ filters: print_background_task_times.metric: 'print_count' print_background_task_times.statistic: mean - row: 0 - col: 12 + row: 10 + col: 0 width: 12 height: 8 field_x: print_background_task_times.submission_date @@ -101,42 +136,6 @@ print_background_task_times.metric: 'print_count' print_background_task_times.statistic: percentile row: 10 - col: 0 - width: 12 - height: 8 - field_x: print_background_task_times.submission_date - field_y: print_background_task_times.point - log_scale: false - ci_lower: print_background_task_times.lower - ci_upper: print_background_task_times.upper - show_grid: true - listen: - Date: print_background_task_times.submission_date - Percentile: print_background_task_times.parameter - Channel: print_background_task_times.channel - Os: print_background_task_times.os - - active: "#3FE1B0" - defaults_version: 0 - - title: Print Cancel Ratios - name: Print Cancel Ratios_total_ratio - note_state: expanded - note_display: above - note_text: Total_Ratio - explore: print_background_task_times - type: looker_line - fields: [ - print_background_task_times.submission_date, - print_background_task_times.branch, - print_background_task_times.point - ] - pivots: [ - print_background_task_times.branch, print_background_task_times.metric - ] - filters: - print_background_task_times.metric: '"printing_preview_cancelled_tm", "printing_dialog_via_preview_cancelled_tm", "printing_dialog_without_preview_cancelled", "printing_preview_cancelled", "printing_dialog_via_preview_cancelled"' - print_background_task_times.statistic: total_ratio - row: 10 col: 12 width: 12 height: 8 @@ -148,6 +147,7 @@ show_grid: true listen: Date: print_background_task_times.submission_date + Percentile: print_background_task_times.parameter Channel: print_background_task_times.channel Os: print_background_task_times.os @@ -185,32 +185,32 @@ - title: Channel name: Channel type: string_filter - default_value: 'release' + default_value: 'nightly' allow_multiple_values: false required: true ui_config: type: dropdown_menu display: inline options: + - 'nightly' - 'release' - 'beta' - - 'nightly' - title: Os name: Os type: string_filter - default_value: 'Windows_NT' + default_value: 'Darwin' allow_multiple_values: false required: true ui_config: type: dropdown_menu display: inline options: - - 'Windows_NT' - 'Darwin' - 'Linux' + - 'Windows_NT' \ No newline at end of file diff --git a/operational_monitoring/dashboards/print_background_task_times_by_build.dashboard.lookml b/operational_monitoring/dashboards/print_background_task_times_by_build.dashboard.lookml index 50718f388..37e8589f3 100644 --- a/operational_monitoring/dashboards/print_background_task_times_by_build.dashboard.lookml +++ b/operational_monitoring/dashboards/print_background_task_times_by_build.dashboard.lookml @@ -26,7 +26,7 @@ print_background_task_times_by_build.branch, print_background_task_times_by_build.metric ] filters: - print_background_task_times_by_build.metric: '"print_failure", "notimplemented", "start_page", "abort", "name_not_found", "no_printer", "unexpected", "not_available", "gfx_printer_doc_is_busy", "startdoc", "cannot_open_file", "enddoc", "oom"' + print_background_task_times_by_build.metric: '"cannot_open_file", "name_not_found", "enddoc", "startdoc", "gfx_printer_doc_is_busy", "print_failure", "notimplemented", "no_printer", "not_available", "oom", "abort", "unexpected", "start_page"' print_background_task_times_by_build.statistic: sum row: 0 col: 0 diff --git a/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_rollout_release.dashboard.lookml b/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_rollout_release.dashboard.lookml index 26562c59f..abb94e66a 100644 --- a/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_rollout_release.dashboard.lookml +++ b/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_rollout_release.dashboard.lookml @@ -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: product_insight_telemetry_via_server_knobs_rollout_release + type: looker_line + fields: [ + product_insight_telemetry_via_server_knobs_rollout_release.submission_date, + product_insight_telemetry_via_server_knobs_rollout_release.branch, + product_insight_telemetry_via_server_knobs_rollout_release.point + ] + pivots: [ + product_insight_telemetry_via_server_knobs_rollout_release.branch + ] + filters: + product_insight_telemetry_via_server_knobs_rollout_release.metric: 'active_hours' + product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date + field_y: product_insight_telemetry_via_server_knobs_rollout_release.point + log_scale: false + ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower + ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper + show_grid: true + listen: + Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ product_insight_telemetry_via_server_knobs_rollout_release.metric: 'uri_count' product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date + field_y: product_insight_telemetry_via_server_knobs_rollout_release.point + log_scale: false + ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower + ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper + show_grid: true + listen: + Date: product_insight_telemetry_via_server_knobs_rollout_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: product_insight_telemetry_via_server_knobs_rollout_release + type: looker_line + fields: [ + product_insight_telemetry_via_server_knobs_rollout_release.submission_date, + product_insight_telemetry_via_server_knobs_rollout_release.branch, + product_insight_telemetry_via_server_knobs_rollout_release.point + ] + pivots: [ + product_insight_telemetry_via_server_knobs_rollout_release.branch + ] + filters: + product_insight_telemetry_via_server_knobs_rollout_release.metric: 'ad_clicks' + product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: product_insight_telemetry_via_server_knobs_rollout_release.metric: 'retained' product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date - field_y: product_insight_telemetry_via_server_knobs_rollout_release.point - log_scale: false - ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower - ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper - show_grid: true - listen: - Date: product_insight_telemetry_via_server_knobs_rollout_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: product_insight_telemetry_via_server_knobs_rollout_release - type: looker_line - fields: [ - product_insight_telemetry_via_server_knobs_rollout_release.submission_date, - product_insight_telemetry_via_server_knobs_rollout_release.branch, - product_insight_telemetry_via_server_knobs_rollout_release.point - ] - pivots: [ - product_insight_telemetry_via_server_knobs_rollout_release.branch - ] - filters: - product_insight_telemetry_via_server_knobs_rollout_release.metric: 'qualified_cumulative_days_of_use' - product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date - field_y: product_insight_telemetry_via_server_knobs_rollout_release.point - log_scale: false - ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower - ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper - show_grid: true - listen: - Date: product_insight_telemetry_via_server_knobs_rollout_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: product_insight_telemetry_via_server_knobs_rollout_release - type: looker_line - fields: [ - product_insight_telemetry_via_server_knobs_rollout_release.submission_date, - product_insight_telemetry_via_server_knobs_rollout_release.branch, - product_insight_telemetry_via_server_knobs_rollout_release.point - ] - pivots: [ - product_insight_telemetry_via_server_knobs_rollout_release.branch - ] - filters: - product_insight_telemetry_via_server_knobs_rollout_release.metric: 'search_count' - product_insight_telemetry_via_server_knobs_rollout_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 @@ product_insight_telemetry_via_server_knobs_rollout_release.branch ] filters: - product_insight_telemetry_via_server_knobs_rollout_release.metric: 'ad_clicks' + product_insight_telemetry_via_server_knobs_rollout_release.metric: 'days_of_use' product_insight_telemetry_via_server_knobs_rollout_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 @@ product_insight_telemetry_via_server_knobs_rollout_release.branch ] filters: - product_insight_telemetry_via_server_knobs_rollout_release.metric: 'days_of_use' + product_insight_telemetry_via_server_knobs_rollout_release.metric: 'search_count' product_insight_telemetry_via_server_knobs_rollout_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 @@ product_insight_telemetry_via_server_knobs_rollout_release.branch ] filters: - product_insight_telemetry_via_server_knobs_rollout_release.metric: 'active_hours' + product_insight_telemetry_via_server_knobs_rollout_release.metric: 'qualified_cumulative_days_of_use' product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_v123_and_earlier.dashboard.lookml b/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_v123_and_earlier.dashboard.lookml index 063310c08..1477e3470 100644 --- a/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_v123_and_earlier.dashboard.lookml +++ b/operational_monitoring/dashboards/product_insight_telemetry_via_server_knobs_v123_and_earlier.dashboard.lookml @@ -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: product_insight_telemetry_via_server_knobs_v123_and_earlier + type: looker_line + fields: [ + product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date, + product_insight_telemetry_via_server_knobs_v123_and_earlier.branch, + product_insight_telemetry_via_server_knobs_v123_and_earlier.point + ] + pivots: [ + product_insight_telemetry_via_server_knobs_v123_and_earlier.branch + ] + filters: + product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'active_hours' + product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date + field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point + log_scale: false + ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower + ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper + show_grid: true + listen: + Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'uri_count' product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date + field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point + log_scale: false + ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower + ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper + show_grid: true + listen: + Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.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: product_insight_telemetry_via_server_knobs_v123_and_earlier + type: looker_line + fields: [ + product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date, + product_insight_telemetry_via_server_knobs_v123_and_earlier.branch, + product_insight_telemetry_via_server_knobs_v123_and_earlier.point + ] + pivots: [ + product_insight_telemetry_via_server_knobs_v123_and_earlier.branch + ] + filters: + product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'ad_clicks' + product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'retained' product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date - field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point - log_scale: false - ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower - ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper - show_grid: true - listen: - Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.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: product_insight_telemetry_via_server_knobs_v123_and_earlier - type: looker_line - fields: [ - product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date, - product_insight_telemetry_via_server_knobs_v123_and_earlier.branch, - product_insight_telemetry_via_server_knobs_v123_and_earlier.point - ] - pivots: [ - product_insight_telemetry_via_server_knobs_v123_and_earlier.branch - ] - filters: - product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'qualified_cumulative_days_of_use' - product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date - field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point - log_scale: false - ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower - ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper - show_grid: true - listen: - Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.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: product_insight_telemetry_via_server_knobs_v123_and_earlier - type: looker_line - fields: [ - product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date, - product_insight_telemetry_via_server_knobs_v123_and_earlier.branch, - product_insight_telemetry_via_server_knobs_v123_and_earlier.point - ] - pivots: [ - product_insight_telemetry_via_server_knobs_v123_and_earlier.branch - ] - filters: - product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'search_count' - product_insight_telemetry_via_server_knobs_v123_and_earlier.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 @@ product_insight_telemetry_via_server_knobs_v123_and_earlier.branch ] filters: - product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'ad_clicks' + product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'days_of_use' product_insight_telemetry_via_server_knobs_v123_and_earlier.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 @@ product_insight_telemetry_via_server_knobs_v123_and_earlier.branch ] filters: - product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'days_of_use' + product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'search_count' product_insight_telemetry_via_server_knobs_v123_and_earlier.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 @@ product_insight_telemetry_via_server_knobs_v123_and_earlier.branch ] filters: - product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'active_hours' + product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'qualified_cumulative_days_of_use' product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/pxi_toolbar_default_visibility_rollout.dashboard.lookml b/operational_monitoring/dashboards/pxi_toolbar_default_visibility_rollout.dashboard.lookml index bdb802e83..f1826a7b4 100644 --- a/operational_monitoring/dashboards/pxi_toolbar_default_visibility_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/pxi_toolbar_default_visibility_rollout.dashboard.lookml @@ -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: pxi_toolbar_default_visibility_rollout + type: looker_line + fields: [ + pxi_toolbar_default_visibility_rollout.submission_date, + pxi_toolbar_default_visibility_rollout.branch, + pxi_toolbar_default_visibility_rollout.point + ] + pivots: [ + pxi_toolbar_default_visibility_rollout.branch + ] + filters: + pxi_toolbar_default_visibility_rollout.metric: 'active_hours' + pxi_toolbar_default_visibility_rollout.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: pxi_toolbar_default_visibility_rollout.submission_date + field_y: pxi_toolbar_default_visibility_rollout.point + log_scale: false + ci_lower: pxi_toolbar_default_visibility_rollout.lower + ci_upper: pxi_toolbar_default_visibility_rollout.upper + show_grid: true + listen: + Date: pxi_toolbar_default_visibility_rollout.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ pxi_toolbar_default_visibility_rollout.metric: 'uri_count' pxi_toolbar_default_visibility_rollout.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: pxi_toolbar_default_visibility_rollout.submission_date + field_y: pxi_toolbar_default_visibility_rollout.point + log_scale: false + ci_lower: pxi_toolbar_default_visibility_rollout.lower + ci_upper: pxi_toolbar_default_visibility_rollout.upper + show_grid: true + listen: + Date: pxi_toolbar_default_visibility_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: pxi_toolbar_default_visibility_rollout + type: looker_line + fields: [ + pxi_toolbar_default_visibility_rollout.submission_date, + pxi_toolbar_default_visibility_rollout.branch, + pxi_toolbar_default_visibility_rollout.point + ] + pivots: [ + pxi_toolbar_default_visibility_rollout.branch + ] + filters: + pxi_toolbar_default_visibility_rollout.metric: 'ad_clicks' + pxi_toolbar_default_visibility_rollout.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: pxi_toolbar_default_visibility_rollout.metric: 'retained' pxi_toolbar_default_visibility_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: pxi_toolbar_default_visibility_rollout.submission_date - field_y: pxi_toolbar_default_visibility_rollout.point - log_scale: false - ci_lower: pxi_toolbar_default_visibility_rollout.lower - ci_upper: pxi_toolbar_default_visibility_rollout.upper - show_grid: true - listen: - Date: pxi_toolbar_default_visibility_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: pxi_toolbar_default_visibility_rollout - type: looker_line - fields: [ - pxi_toolbar_default_visibility_rollout.submission_date, - pxi_toolbar_default_visibility_rollout.branch, - pxi_toolbar_default_visibility_rollout.point - ] - pivots: [ - pxi_toolbar_default_visibility_rollout.branch - ] - filters: - pxi_toolbar_default_visibility_rollout.metric: 'qualified_cumulative_days_of_use' - pxi_toolbar_default_visibility_rollout.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: pxi_toolbar_default_visibility_rollout.submission_date - field_y: pxi_toolbar_default_visibility_rollout.point - log_scale: false - ci_lower: pxi_toolbar_default_visibility_rollout.lower - ci_upper: pxi_toolbar_default_visibility_rollout.upper - show_grid: true - listen: - Date: pxi_toolbar_default_visibility_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: pxi_toolbar_default_visibility_rollout - type: looker_line - fields: [ - pxi_toolbar_default_visibility_rollout.submission_date, - pxi_toolbar_default_visibility_rollout.branch, - pxi_toolbar_default_visibility_rollout.point - ] - pivots: [ - pxi_toolbar_default_visibility_rollout.branch - ] - filters: - pxi_toolbar_default_visibility_rollout.metric: 'search_count' - pxi_toolbar_default_visibility_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 @@ pxi_toolbar_default_visibility_rollout.branch ] filters: - pxi_toolbar_default_visibility_rollout.metric: 'ad_clicks' + pxi_toolbar_default_visibility_rollout.metric: 'days_of_use' pxi_toolbar_default_visibility_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 @@ pxi_toolbar_default_visibility_rollout.branch ] filters: - pxi_toolbar_default_visibility_rollout.metric: 'days_of_use' + pxi_toolbar_default_visibility_rollout.metric: 'search_count' pxi_toolbar_default_visibility_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 @@ pxi_toolbar_default_visibility_rollout.branch ] filters: - pxi_toolbar_default_visibility_rollout.metric: 'active_hours' + pxi_toolbar_default_visibility_rollout.metric: 'qualified_cumulative_days_of_use' pxi_toolbar_default_visibility_rollout.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.dashboard.lookml b/operational_monitoring/dashboards/relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.dashboard.lookml index 20032f2d3..e948d6be3 100644 --- a/operational_monitoring/dashboards/relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.dashboard.lookml +++ b/operational_monitoring/dashboards/relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.dashboard.lookml @@ -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: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users + type: looker_line + fields: [ + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date, + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch, + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point + ] + pivots: [ + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch + ] + filters: + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'active_hours' + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date + field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower + ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'uri_count' relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date + field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower + ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.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: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users + type: looker_line + fields: [ + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date, + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch, + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point + ] + pivots: [ + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch + ] + filters: + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'ad_clicks' + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'retained' relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date - field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower - ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.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: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users - type: looker_line - fields: [ - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date, - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch, - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point - ] - pivots: [ - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch - ] - filters: - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'qualified_cumulative_days_of_use' - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date - field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower - ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.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: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users - type: looker_line - fields: [ - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date, - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch, - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point - ] - pivots: [ - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch - ] - filters: - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'search_count' - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.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 @@ relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch ] filters: - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'ad_clicks' + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'days_of_use' relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.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 @@ relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch ] filters: - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'days_of_use' + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'search_count' relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.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 @@ relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch ] filters: - relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'active_hours' + relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'qualified_cumulative_days_of_use' relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/relay_integration_into_firefox_beta_for_all_fxa_users.dashboard.lookml b/operational_monitoring/dashboards/relay_integration_into_firefox_beta_for_all_fxa_users.dashboard.lookml index d4fe9ae63..488fff106 100644 --- a/operational_monitoring/dashboards/relay_integration_into_firefox_beta_for_all_fxa_users.dashboard.lookml +++ b/operational_monitoring/dashboards/relay_integration_into_firefox_beta_for_all_fxa_users.dashboard.lookml @@ -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: relay_integration_into_firefox_beta_for_all_fxa_users + type: looker_line + fields: [ + relay_integration_into_firefox_beta_for_all_fxa_users.submission_date, + relay_integration_into_firefox_beta_for_all_fxa_users.branch, + relay_integration_into_firefox_beta_for_all_fxa_users.point + ] + pivots: [ + relay_integration_into_firefox_beta_for_all_fxa_users.branch + ] + filters: + relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'active_hours' + relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date + field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower + ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'uri_count' relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date + field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower + ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_beta_for_all_fxa_users.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: relay_integration_into_firefox_beta_for_all_fxa_users + type: looker_line + fields: [ + relay_integration_into_firefox_beta_for_all_fxa_users.submission_date, + relay_integration_into_firefox_beta_for_all_fxa_users.branch, + relay_integration_into_firefox_beta_for_all_fxa_users.point + ] + pivots: [ + relay_integration_into_firefox_beta_for_all_fxa_users.branch + ] + filters: + relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'ad_clicks' + relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'retained' relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date - field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower - ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_beta_for_all_fxa_users.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: relay_integration_into_firefox_beta_for_all_fxa_users - type: looker_line - fields: [ - relay_integration_into_firefox_beta_for_all_fxa_users.submission_date, - relay_integration_into_firefox_beta_for_all_fxa_users.branch, - relay_integration_into_firefox_beta_for_all_fxa_users.point - ] - pivots: [ - relay_integration_into_firefox_beta_for_all_fxa_users.branch - ] - filters: - relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use' - relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date - field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower - ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_beta_for_all_fxa_users.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: relay_integration_into_firefox_beta_for_all_fxa_users - type: looker_line - fields: [ - relay_integration_into_firefox_beta_for_all_fxa_users.submission_date, - relay_integration_into_firefox_beta_for_all_fxa_users.branch, - relay_integration_into_firefox_beta_for_all_fxa_users.point - ] - pivots: [ - relay_integration_into_firefox_beta_for_all_fxa_users.branch - ] - filters: - relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'search_count' - relay_integration_into_firefox_beta_for_all_fxa_users.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 @@ relay_integration_into_firefox_beta_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'ad_clicks' + relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'days_of_use' relay_integration_into_firefox_beta_for_all_fxa_users.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 @@ relay_integration_into_firefox_beta_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'days_of_use' + relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'search_count' relay_integration_into_firefox_beta_for_all_fxa_users.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 @@ relay_integration_into_firefox_beta_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'active_hours' + relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use' relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/relay_integration_into_firefox_nightly_for_all_fxa_users.dashboard.lookml b/operational_monitoring/dashboards/relay_integration_into_firefox_nightly_for_all_fxa_users.dashboard.lookml index 6d1bcd238..714af37cb 100644 --- a/operational_monitoring/dashboards/relay_integration_into_firefox_nightly_for_all_fxa_users.dashboard.lookml +++ b/operational_monitoring/dashboards/relay_integration_into_firefox_nightly_for_all_fxa_users.dashboard.lookml @@ -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: relay_integration_into_firefox_nightly_for_all_fxa_users + type: looker_line + fields: [ + relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date, + relay_integration_into_firefox_nightly_for_all_fxa_users.branch, + relay_integration_into_firefox_nightly_for_all_fxa_users.point + ] + pivots: [ + relay_integration_into_firefox_nightly_for_all_fxa_users.branch + ] + filters: + relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'active_hours' + relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date + field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower + ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'uri_count' relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date + field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower + ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_nightly_for_all_fxa_users.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: relay_integration_into_firefox_nightly_for_all_fxa_users + type: looker_line + fields: [ + relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date, + relay_integration_into_firefox_nightly_for_all_fxa_users.branch, + relay_integration_into_firefox_nightly_for_all_fxa_users.point + ] + pivots: [ + relay_integration_into_firefox_nightly_for_all_fxa_users.branch + ] + filters: + relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'ad_clicks' + relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'retained' relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date - field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower - ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_nightly_for_all_fxa_users.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: relay_integration_into_firefox_nightly_for_all_fxa_users - type: looker_line - fields: [ - relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date, - relay_integration_into_firefox_nightly_for_all_fxa_users.branch, - relay_integration_into_firefox_nightly_for_all_fxa_users.point - ] - pivots: [ - relay_integration_into_firefox_nightly_for_all_fxa_users.branch - ] - filters: - relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use' - relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date - field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower - ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_nightly_for_all_fxa_users.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: relay_integration_into_firefox_nightly_for_all_fxa_users - type: looker_line - fields: [ - relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date, - relay_integration_into_firefox_nightly_for_all_fxa_users.branch, - relay_integration_into_firefox_nightly_for_all_fxa_users.point - ] - pivots: [ - relay_integration_into_firefox_nightly_for_all_fxa_users.branch - ] - filters: - relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'search_count' - relay_integration_into_firefox_nightly_for_all_fxa_users.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 @@ relay_integration_into_firefox_nightly_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'ad_clicks' + relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'days_of_use' relay_integration_into_firefox_nightly_for_all_fxa_users.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 @@ relay_integration_into_firefox_nightly_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'days_of_use' + relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'search_count' relay_integration_into_firefox_nightly_for_all_fxa_users.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 @@ relay_integration_into_firefox_nightly_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'active_hours' + relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use' relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/relay_integration_into_firefox_release_for_all_fxa_users.dashboard.lookml b/operational_monitoring/dashboards/relay_integration_into_firefox_release_for_all_fxa_users.dashboard.lookml index 02a96b155..562a5beea 100644 --- a/operational_monitoring/dashboards/relay_integration_into_firefox_release_for_all_fxa_users.dashboard.lookml +++ b/operational_monitoring/dashboards/relay_integration_into_firefox_release_for_all_fxa_users.dashboard.lookml @@ -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: relay_integration_into_firefox_release_for_all_fxa_users + type: looker_line + fields: [ + relay_integration_into_firefox_release_for_all_fxa_users.submission_date, + relay_integration_into_firefox_release_for_all_fxa_users.branch, + relay_integration_into_firefox_release_for_all_fxa_users.point + ] + pivots: [ + relay_integration_into_firefox_release_for_all_fxa_users.branch + ] + filters: + relay_integration_into_firefox_release_for_all_fxa_users.metric: 'active_hours' + relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date + field_y: relay_integration_into_firefox_release_for_all_fxa_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower + ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ relay_integration_into_firefox_release_for_all_fxa_users.metric: 'uri_count' relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date + field_y: relay_integration_into_firefox_release_for_all_fxa_users.point + log_scale: false + ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower + ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper + show_grid: true + listen: + Date: relay_integration_into_firefox_release_for_all_fxa_users.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: relay_integration_into_firefox_release_for_all_fxa_users + type: looker_line + fields: [ + relay_integration_into_firefox_release_for_all_fxa_users.submission_date, + relay_integration_into_firefox_release_for_all_fxa_users.branch, + relay_integration_into_firefox_release_for_all_fxa_users.point + ] + pivots: [ + relay_integration_into_firefox_release_for_all_fxa_users.branch + ] + filters: + relay_integration_into_firefox_release_for_all_fxa_users.metric: 'ad_clicks' + relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: relay_integration_into_firefox_release_for_all_fxa_users.metric: 'retained' relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date - field_y: relay_integration_into_firefox_release_for_all_fxa_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower - ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_release_for_all_fxa_users.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: relay_integration_into_firefox_release_for_all_fxa_users - type: looker_line - fields: [ - relay_integration_into_firefox_release_for_all_fxa_users.submission_date, - relay_integration_into_firefox_release_for_all_fxa_users.branch, - relay_integration_into_firefox_release_for_all_fxa_users.point - ] - pivots: [ - relay_integration_into_firefox_release_for_all_fxa_users.branch - ] - filters: - relay_integration_into_firefox_release_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use' - relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date - field_y: relay_integration_into_firefox_release_for_all_fxa_users.point - log_scale: false - ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower - ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper - show_grid: true - listen: - Date: relay_integration_into_firefox_release_for_all_fxa_users.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: relay_integration_into_firefox_release_for_all_fxa_users - type: looker_line - fields: [ - relay_integration_into_firefox_release_for_all_fxa_users.submission_date, - relay_integration_into_firefox_release_for_all_fxa_users.branch, - relay_integration_into_firefox_release_for_all_fxa_users.point - ] - pivots: [ - relay_integration_into_firefox_release_for_all_fxa_users.branch - ] - filters: - relay_integration_into_firefox_release_for_all_fxa_users.metric: 'search_count' - relay_integration_into_firefox_release_for_all_fxa_users.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 @@ relay_integration_into_firefox_release_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_release_for_all_fxa_users.metric: 'ad_clicks' + relay_integration_into_firefox_release_for_all_fxa_users.metric: 'days_of_use' relay_integration_into_firefox_release_for_all_fxa_users.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 @@ relay_integration_into_firefox_release_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_release_for_all_fxa_users.metric: 'days_of_use' + relay_integration_into_firefox_release_for_all_fxa_users.metric: 'search_count' relay_integration_into_firefox_release_for_all_fxa_users.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 @@ relay_integration_into_firefox_release_for_all_fxa_users.branch ] filters: - relay_integration_into_firefox_release_for_all_fxa_users.metric: 'active_hours' + relay_integration_into_firefox_release_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use' relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/release_experiment_for_additional_metrics_for_product_insights_rollout.dashboard.lookml b/operational_monitoring/dashboards/release_experiment_for_additional_metrics_for_product_insights_rollout.dashboard.lookml index 1a6508d3b..a1615dc7f 100644 --- a/operational_monitoring/dashboards/release_experiment_for_additional_metrics_for_product_insights_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/release_experiment_for_additional_metrics_for_product_insights_rollout.dashboard.lookml @@ -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: release_experiment_for_additional_metrics_for_product_insights_rollout + type: looker_line + fields: [ + release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date, + release_experiment_for_additional_metrics_for_product_insights_rollout.branch, + release_experiment_for_additional_metrics_for_product_insights_rollout.point + ] + pivots: [ + release_experiment_for_additional_metrics_for_product_insights_rollout.branch + ] + filters: + release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'active_hours' + release_experiment_for_additional_metrics_for_product_insights_rollout.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date + field_y: release_experiment_for_additional_metrics_for_product_insights_rollout.point + log_scale: false + ci_lower: release_experiment_for_additional_metrics_for_product_insights_rollout.lower + ci_upper: release_experiment_for_additional_metrics_for_product_insights_rollout.upper + show_grid: true + listen: + Date: release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'uri_count' release_experiment_for_additional_metrics_for_product_insights_rollout.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date + field_y: release_experiment_for_additional_metrics_for_product_insights_rollout.point + log_scale: false + ci_lower: release_experiment_for_additional_metrics_for_product_insights_rollout.lower + ci_upper: release_experiment_for_additional_metrics_for_product_insights_rollout.upper + show_grid: true + listen: + Date: release_experiment_for_additional_metrics_for_product_insights_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: release_experiment_for_additional_metrics_for_product_insights_rollout + type: looker_line + fields: [ + release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date, + release_experiment_for_additional_metrics_for_product_insights_rollout.branch, + release_experiment_for_additional_metrics_for_product_insights_rollout.point + ] + pivots: [ + release_experiment_for_additional_metrics_for_product_insights_rollout.branch + ] + filters: + release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'ad_clicks' + release_experiment_for_additional_metrics_for_product_insights_rollout.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'retained' release_experiment_for_additional_metrics_for_product_insights_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date - field_y: release_experiment_for_additional_metrics_for_product_insights_rollout.point - log_scale: false - ci_lower: release_experiment_for_additional_metrics_for_product_insights_rollout.lower - ci_upper: release_experiment_for_additional_metrics_for_product_insights_rollout.upper - show_grid: true - listen: - Date: release_experiment_for_additional_metrics_for_product_insights_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: release_experiment_for_additional_metrics_for_product_insights_rollout - type: looker_line - fields: [ - release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date, - release_experiment_for_additional_metrics_for_product_insights_rollout.branch, - release_experiment_for_additional_metrics_for_product_insights_rollout.point - ] - pivots: [ - release_experiment_for_additional_metrics_for_product_insights_rollout.branch - ] - filters: - release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'qualified_cumulative_days_of_use' - release_experiment_for_additional_metrics_for_product_insights_rollout.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date - field_y: release_experiment_for_additional_metrics_for_product_insights_rollout.point - log_scale: false - ci_lower: release_experiment_for_additional_metrics_for_product_insights_rollout.lower - ci_upper: release_experiment_for_additional_metrics_for_product_insights_rollout.upper - show_grid: true - listen: - Date: release_experiment_for_additional_metrics_for_product_insights_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: release_experiment_for_additional_metrics_for_product_insights_rollout - type: looker_line - fields: [ - release_experiment_for_additional_metrics_for_product_insights_rollout.submission_date, - release_experiment_for_additional_metrics_for_product_insights_rollout.branch, - release_experiment_for_additional_metrics_for_product_insights_rollout.point - ] - pivots: [ - release_experiment_for_additional_metrics_for_product_insights_rollout.branch - ] - filters: - release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'search_count' - release_experiment_for_additional_metrics_for_product_insights_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 @@ release_experiment_for_additional_metrics_for_product_insights_rollout.branch ] filters: - release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'ad_clicks' + release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'days_of_use' release_experiment_for_additional_metrics_for_product_insights_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 @@ release_experiment_for_additional_metrics_for_product_insights_rollout.branch ] filters: - release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'days_of_use' + release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'search_count' release_experiment_for_additional_metrics_for_product_insights_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 @@ release_experiment_for_additional_metrics_for_product_insights_rollout.branch ] filters: - release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'active_hours' + release_experiment_for_additional_metrics_for_product_insights_rollout.metric: 'qualified_cumulative_days_of_use' release_experiment_for_additional_metrics_for_product_insights_rollout.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/review_checker_continuity_rollout.dashboard.lookml b/operational_monitoring/dashboards/review_checker_continuity_rollout.dashboard.lookml index c1f15cf8d..533524b8b 100644 --- a/operational_monitoring/dashboards/review_checker_continuity_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/review_checker_continuity_rollout.dashboard.lookml @@ -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 @@ review_checker_continuity_rollout.branch ] filters: - review_checker_continuity_rollout.metric: 'tagged_sap_searches' + review_checker_continuity_rollout.metric: 'active_hours' review_checker_continuity_rollout.statistic: mean row: 0 col: 0 @@ -75,6 +75,40 @@ listen: Date: review_checker_continuity_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: review_checker_continuity_rollout + type: looker_line + fields: [ + review_checker_continuity_rollout.submission_date, + review_checker_continuity_rollout.branch, + review_checker_continuity_rollout.point + ] + pivots: [ + review_checker_continuity_rollout.branch + ] + filters: + review_checker_continuity_rollout.metric: 'ad_clicks' + review_checker_continuity_rollout.statistic: mean + row: 10 + col: 0 + width: 12 + height: 8 + field_x: review_checker_continuity_rollout.submission_date + field_y: review_checker_continuity_rollout.point + log_scale: false + ci_lower: review_checker_continuity_rollout.lower + ci_upper: review_checker_continuity_rollout.upper + show_grid: true + listen: + Date: review_checker_continuity_rollout.submission_date + enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -97,40 +131,6 @@ review_checker_continuity_rollout.metric: 'retained' review_checker_continuity_rollout.statistic: mean row: 10 - col: 0 - width: 12 - height: 8 - field_x: review_checker_continuity_rollout.submission_date - field_y: review_checker_continuity_rollout.point - log_scale: false - ci_lower: review_checker_continuity_rollout.lower - ci_upper: review_checker_continuity_rollout.upper - show_grid: true - listen: - Date: review_checker_continuity_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: review_checker_continuity_rollout - type: looker_line - fields: [ - review_checker_continuity_rollout.submission_date, - review_checker_continuity_rollout.branch, - review_checker_continuity_rollout.point - ] - pivots: [ - review_checker_continuity_rollout.branch - ] - filters: - review_checker_continuity_rollout.metric: 'search_count' - review_checker_continuity_rollout.statistic: mean - row: 10 col: 12 width: 12 height: 8 @@ -143,40 +143,6 @@ listen: Date: review_checker_continuity_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: review_checker_continuity_rollout - type: looker_line - fields: [ - review_checker_continuity_rollout.submission_date, - review_checker_continuity_rollout.branch, - review_checker_continuity_rollout.point - ] - pivots: [ - review_checker_continuity_rollout.branch - ] - filters: - review_checker_continuity_rollout.metric: 'ad_clicks' - review_checker_continuity_rollout.statistic: mean - row: 20 - col: 0 - width: 12 - height: 8 - field_x: review_checker_continuity_rollout.submission_date - field_y: review_checker_continuity_rollout.point - log_scale: false - ci_lower: review_checker_continuity_rollout.lower - ci_upper: review_checker_continuity_rollout.upper - show_grid: true - listen: - Date: review_checker_continuity_rollout.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -199,6 +165,40 @@ review_checker_continuity_rollout.metric: 'days_of_use' review_checker_continuity_rollout.statistic: mean row: 20 + col: 0 + width: 12 + height: 8 + field_x: review_checker_continuity_rollout.submission_date + field_y: review_checker_continuity_rollout.point + log_scale: false + ci_lower: review_checker_continuity_rollout.lower + ci_upper: review_checker_continuity_rollout.upper + show_grid: true + listen: + Date: review_checker_continuity_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: review_checker_continuity_rollout + type: looker_line + fields: [ + review_checker_continuity_rollout.submission_date, + review_checker_continuity_rollout.branch, + review_checker_continuity_rollout.point + ] + pivots: [ + review_checker_continuity_rollout.branch + ] + filters: + review_checker_continuity_rollout.metric: 'tagged_sap_searches' + review_checker_continuity_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 @@ review_checker_continuity_rollout.branch ] filters: - review_checker_continuity_rollout.metric: 'active_hours' + review_checker_continuity_rollout.metric: 'search_count' review_checker_continuity_rollout.statistic: mean row: 30 col: 0 diff --git a/operational_monitoring/dashboards/review_checker_continuity_rollout_ios.dashboard.lookml b/operational_monitoring/dashboards/review_checker_continuity_rollout_ios.dashboard.lookml index fb92f9704..456ab69d2 100644 --- a/operational_monitoring/dashboards/review_checker_continuity_rollout_ios.dashboard.lookml +++ b/operational_monitoring/dashboards/review_checker_continuity_rollout_ios.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Retained - name: Retained_mean + - title: Active Hours + name: Active Hours_mean note_state: expanded note_display: above note_text: Mean @@ -26,7 +26,7 @@ review_checker_continuity_rollout_ios.branch ] filters: - review_checker_continuity_rollout_ios.metric: 'retained' + review_checker_continuity_rollout_ios.metric: 'active_hours' review_checker_continuity_rollout_ios.statistic: mean row: 0 col: 0 @@ -41,40 +41,6 @@ listen: Date: review_checker_continuity_rollout_ios.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: review_checker_continuity_rollout_ios - type: looker_line - fields: [ - review_checker_continuity_rollout_ios.submission_date, - review_checker_continuity_rollout_ios.branch, - review_checker_continuity_rollout_ios.point - ] - pivots: [ - review_checker_continuity_rollout_ios.branch - ] - filters: - review_checker_continuity_rollout_ios.metric: 'search_count' - review_checker_continuity_rollout_ios.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: review_checker_continuity_rollout_ios.submission_date - field_y: review_checker_continuity_rollout_ios.point - log_scale: false - ci_lower: review_checker_continuity_rollout_ios.lower - ci_upper: review_checker_continuity_rollout_ios.upper - show_grid: true - listen: - Date: review_checker_continuity_rollout_ios.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -96,6 +62,40 @@ filters: review_checker_continuity_rollout_ios.metric: 'ad_clicks' review_checker_continuity_rollout_ios.statistic: mean + row: 0 + col: 12 + width: 12 + height: 8 + field_x: review_checker_continuity_rollout_ios.submission_date + field_y: review_checker_continuity_rollout_ios.point + log_scale: false + ci_lower: review_checker_continuity_rollout_ios.lower + ci_upper: review_checker_continuity_rollout_ios.upper + show_grid: true + listen: + Date: review_checker_continuity_rollout_ios.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 + - title: Retained + name: Retained_mean + note_state: expanded + note_display: above + note_text: Mean + explore: review_checker_continuity_rollout_ios + type: looker_line + fields: [ + review_checker_continuity_rollout_ios.submission_date, + review_checker_continuity_rollout_ios.branch, + review_checker_continuity_rollout_ios.point + ] + pivots: [ + review_checker_continuity_rollout_ios.branch + ] + filters: + review_checker_continuity_rollout_ios.metric: 'retained' + review_checker_continuity_rollout_ios.statistic: mean row: 10 col: 0 width: 12 @@ -146,8 +146,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 @@ -162,7 +162,7 @@ review_checker_continuity_rollout_ios.branch ] filters: - review_checker_continuity_rollout_ios.metric: 'active_hours' + review_checker_continuity_rollout_ios.metric: 'search_count' review_checker_continuity_rollout_ios.statistic: mean row: 20 col: 0 diff --git a/operational_monitoring/dashboards/review_checker_continuity_rollout_post_119.dashboard.lookml b/operational_monitoring/dashboards/review_checker_continuity_rollout_post_119.dashboard.lookml index e2212cb60..d6a6877dd 100644 --- a/operational_monitoring/dashboards/review_checker_continuity_rollout_post_119.dashboard.lookml +++ b/operational_monitoring/dashboards/review_checker_continuity_rollout_post_119.dashboard.lookml @@ -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: review_checker_continuity_rollout_post_119 + type: looker_line + fields: [ + review_checker_continuity_rollout_post_119.submission_date, + review_checker_continuity_rollout_post_119.branch, + review_checker_continuity_rollout_post_119.point + ] + pivots: [ + review_checker_continuity_rollout_post_119.branch + ] + filters: + review_checker_continuity_rollout_post_119.metric: 'active_hours' + review_checker_continuity_rollout_post_119.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: review_checker_continuity_rollout_post_119.submission_date + field_y: review_checker_continuity_rollout_post_119.point + log_scale: false + ci_lower: review_checker_continuity_rollout_post_119.lower + ci_upper: review_checker_continuity_rollout_post_119.upper + show_grid: true + listen: + Date: review_checker_continuity_rollout_post_119.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ review_checker_continuity_rollout_post_119.metric: 'uri_count' review_checker_continuity_rollout_post_119.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: review_checker_continuity_rollout_post_119.submission_date + field_y: review_checker_continuity_rollout_post_119.point + log_scale: false + ci_lower: review_checker_continuity_rollout_post_119.lower + ci_upper: review_checker_continuity_rollout_post_119.upper + show_grid: true + listen: + Date: review_checker_continuity_rollout_post_119.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: review_checker_continuity_rollout_post_119 + type: looker_line + fields: [ + review_checker_continuity_rollout_post_119.submission_date, + review_checker_continuity_rollout_post_119.branch, + review_checker_continuity_rollout_post_119.point + ] + pivots: [ + review_checker_continuity_rollout_post_119.branch + ] + filters: + review_checker_continuity_rollout_post_119.metric: 'ad_clicks' + review_checker_continuity_rollout_post_119.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: review_checker_continuity_rollout_post_119.metric: 'retained' review_checker_continuity_rollout_post_119.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: review_checker_continuity_rollout_post_119.submission_date - field_y: review_checker_continuity_rollout_post_119.point - log_scale: false - ci_lower: review_checker_continuity_rollout_post_119.lower - ci_upper: review_checker_continuity_rollout_post_119.upper - show_grid: true - listen: - Date: review_checker_continuity_rollout_post_119.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: review_checker_continuity_rollout_post_119 - type: looker_line - fields: [ - review_checker_continuity_rollout_post_119.submission_date, - review_checker_continuity_rollout_post_119.branch, - review_checker_continuity_rollout_post_119.point - ] - pivots: [ - review_checker_continuity_rollout_post_119.branch - ] - filters: - review_checker_continuity_rollout_post_119.metric: 'qualified_cumulative_days_of_use' - review_checker_continuity_rollout_post_119.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: review_checker_continuity_rollout_post_119.submission_date - field_y: review_checker_continuity_rollout_post_119.point - log_scale: false - ci_lower: review_checker_continuity_rollout_post_119.lower - ci_upper: review_checker_continuity_rollout_post_119.upper - show_grid: true - listen: - Date: review_checker_continuity_rollout_post_119.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: review_checker_continuity_rollout_post_119 - type: looker_line - fields: [ - review_checker_continuity_rollout_post_119.submission_date, - review_checker_continuity_rollout_post_119.branch, - review_checker_continuity_rollout_post_119.point - ] - pivots: [ - review_checker_continuity_rollout_post_119.branch - ] - filters: - review_checker_continuity_rollout_post_119.metric: 'search_count' - review_checker_continuity_rollout_post_119.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 @@ review_checker_continuity_rollout_post_119.branch ] filters: - review_checker_continuity_rollout_post_119.metric: 'ad_clicks' + review_checker_continuity_rollout_post_119.metric: 'days_of_use' review_checker_continuity_rollout_post_119.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 @@ review_checker_continuity_rollout_post_119.branch ] filters: - review_checker_continuity_rollout_post_119.metric: 'days_of_use' + review_checker_continuity_rollout_post_119.metric: 'search_count' review_checker_continuity_rollout_post_119.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 @@ review_checker_continuity_rollout_post_119.branch ] filters: - review_checker_continuity_rollout_post_119.metric: 'active_hours' + review_checker_continuity_rollout_post_119.metric: 'qualified_cumulative_days_of_use' review_checker_continuity_rollout_post_119.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey.dashboard.lookml b/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey.dashboard.lookml index 7cfa2dada..646a6c942 100644 --- a/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey.dashboard.lookml +++ b/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey.dashboard.lookml @@ -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: review_checker_staged_rollout_no_survey + type: looker_line + fields: [ + review_checker_staged_rollout_no_survey.submission_date, + review_checker_staged_rollout_no_survey.branch, + review_checker_staged_rollout_no_survey.point + ] + pivots: [ + review_checker_staged_rollout_no_survey.branch + ] + filters: + review_checker_staged_rollout_no_survey.metric: 'active_hours' + review_checker_staged_rollout_no_survey.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: review_checker_staged_rollout_no_survey.submission_date + field_y: review_checker_staged_rollout_no_survey.point + log_scale: false + ci_lower: review_checker_staged_rollout_no_survey.lower + ci_upper: review_checker_staged_rollout_no_survey.upper + show_grid: true + listen: + Date: review_checker_staged_rollout_no_survey.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ review_checker_staged_rollout_no_survey.metric: 'uri_count' review_checker_staged_rollout_no_survey.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: review_checker_staged_rollout_no_survey.submission_date + field_y: review_checker_staged_rollout_no_survey.point + log_scale: false + ci_lower: review_checker_staged_rollout_no_survey.lower + ci_upper: review_checker_staged_rollout_no_survey.upper + show_grid: true + listen: + Date: review_checker_staged_rollout_no_survey.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: review_checker_staged_rollout_no_survey + type: looker_line + fields: [ + review_checker_staged_rollout_no_survey.submission_date, + review_checker_staged_rollout_no_survey.branch, + review_checker_staged_rollout_no_survey.point + ] + pivots: [ + review_checker_staged_rollout_no_survey.branch + ] + filters: + review_checker_staged_rollout_no_survey.metric: 'ad_clicks' + review_checker_staged_rollout_no_survey.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: review_checker_staged_rollout_no_survey.metric: 'retained' review_checker_staged_rollout_no_survey.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: review_checker_staged_rollout_no_survey.submission_date - field_y: review_checker_staged_rollout_no_survey.point - log_scale: false - ci_lower: review_checker_staged_rollout_no_survey.lower - ci_upper: review_checker_staged_rollout_no_survey.upper - show_grid: true - listen: - Date: review_checker_staged_rollout_no_survey.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: review_checker_staged_rollout_no_survey - type: looker_line - fields: [ - review_checker_staged_rollout_no_survey.submission_date, - review_checker_staged_rollout_no_survey.branch, - review_checker_staged_rollout_no_survey.point - ] - pivots: [ - review_checker_staged_rollout_no_survey.branch - ] - filters: - review_checker_staged_rollout_no_survey.metric: 'qualified_cumulative_days_of_use' - review_checker_staged_rollout_no_survey.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: review_checker_staged_rollout_no_survey.submission_date - field_y: review_checker_staged_rollout_no_survey.point - log_scale: false - ci_lower: review_checker_staged_rollout_no_survey.lower - ci_upper: review_checker_staged_rollout_no_survey.upper - show_grid: true - listen: - Date: review_checker_staged_rollout_no_survey.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: review_checker_staged_rollout_no_survey - type: looker_line - fields: [ - review_checker_staged_rollout_no_survey.submission_date, - review_checker_staged_rollout_no_survey.branch, - review_checker_staged_rollout_no_survey.point - ] - pivots: [ - review_checker_staged_rollout_no_survey.branch - ] - filters: - review_checker_staged_rollout_no_survey.metric: 'search_count' - review_checker_staged_rollout_no_survey.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 @@ review_checker_staged_rollout_no_survey.branch ] filters: - review_checker_staged_rollout_no_survey.metric: 'ad_clicks' + review_checker_staged_rollout_no_survey.metric: 'days_of_use' review_checker_staged_rollout_no_survey.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 @@ review_checker_staged_rollout_no_survey.branch ] filters: - review_checker_staged_rollout_no_survey.metric: 'days_of_use' + review_checker_staged_rollout_no_survey.metric: 'search_count' review_checker_staged_rollout_no_survey.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 @@ review_checker_staged_rollout_no_survey.branch ] filters: - review_checker_staged_rollout_no_survey.metric: 'active_hours' + review_checker_staged_rollout_no_survey.metric: 'qualified_cumulative_days_of_use' review_checker_staged_rollout_no_survey.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey_beta.dashboard.lookml b/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey_beta.dashboard.lookml index b08fafaf1..d5904a69c 100644 --- a/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey_beta.dashboard.lookml +++ b/operational_monitoring/dashboards/review_checker_staged_rollout_no_survey_beta.dashboard.lookml @@ -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: review_checker_staged_rollout_no_survey_beta + type: looker_line + fields: [ + review_checker_staged_rollout_no_survey_beta.submission_date, + review_checker_staged_rollout_no_survey_beta.branch, + review_checker_staged_rollout_no_survey_beta.point + ] + pivots: [ + review_checker_staged_rollout_no_survey_beta.branch + ] + filters: + review_checker_staged_rollout_no_survey_beta.metric: 'active_hours' + review_checker_staged_rollout_no_survey_beta.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: review_checker_staged_rollout_no_survey_beta.submission_date + field_y: review_checker_staged_rollout_no_survey_beta.point + log_scale: false + ci_lower: review_checker_staged_rollout_no_survey_beta.lower + ci_upper: review_checker_staged_rollout_no_survey_beta.upper + show_grid: true + listen: + Date: review_checker_staged_rollout_no_survey_beta.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ review_checker_staged_rollout_no_survey_beta.metric: 'uri_count' review_checker_staged_rollout_no_survey_beta.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: review_checker_staged_rollout_no_survey_beta.submission_date + field_y: review_checker_staged_rollout_no_survey_beta.point + log_scale: false + ci_lower: review_checker_staged_rollout_no_survey_beta.lower + ci_upper: review_checker_staged_rollout_no_survey_beta.upper + show_grid: true + listen: + Date: review_checker_staged_rollout_no_survey_beta.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: review_checker_staged_rollout_no_survey_beta + type: looker_line + fields: [ + review_checker_staged_rollout_no_survey_beta.submission_date, + review_checker_staged_rollout_no_survey_beta.branch, + review_checker_staged_rollout_no_survey_beta.point + ] + pivots: [ + review_checker_staged_rollout_no_survey_beta.branch + ] + filters: + review_checker_staged_rollout_no_survey_beta.metric: 'ad_clicks' + review_checker_staged_rollout_no_survey_beta.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: review_checker_staged_rollout_no_survey_beta.metric: 'retained' review_checker_staged_rollout_no_survey_beta.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: review_checker_staged_rollout_no_survey_beta.submission_date - field_y: review_checker_staged_rollout_no_survey_beta.point - log_scale: false - ci_lower: review_checker_staged_rollout_no_survey_beta.lower - ci_upper: review_checker_staged_rollout_no_survey_beta.upper - show_grid: true - listen: - Date: review_checker_staged_rollout_no_survey_beta.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: review_checker_staged_rollout_no_survey_beta - type: looker_line - fields: [ - review_checker_staged_rollout_no_survey_beta.submission_date, - review_checker_staged_rollout_no_survey_beta.branch, - review_checker_staged_rollout_no_survey_beta.point - ] - pivots: [ - review_checker_staged_rollout_no_survey_beta.branch - ] - filters: - review_checker_staged_rollout_no_survey_beta.metric: 'qualified_cumulative_days_of_use' - review_checker_staged_rollout_no_survey_beta.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: review_checker_staged_rollout_no_survey_beta.submission_date - field_y: review_checker_staged_rollout_no_survey_beta.point - log_scale: false - ci_lower: review_checker_staged_rollout_no_survey_beta.lower - ci_upper: review_checker_staged_rollout_no_survey_beta.upper - show_grid: true - listen: - Date: review_checker_staged_rollout_no_survey_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: review_checker_staged_rollout_no_survey_beta - type: looker_line - fields: [ - review_checker_staged_rollout_no_survey_beta.submission_date, - review_checker_staged_rollout_no_survey_beta.branch, - review_checker_staged_rollout_no_survey_beta.point - ] - pivots: [ - review_checker_staged_rollout_no_survey_beta.branch - ] - filters: - review_checker_staged_rollout_no_survey_beta.metric: 'search_count' - review_checker_staged_rollout_no_survey_beta.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 @@ review_checker_staged_rollout_no_survey_beta.branch ] filters: - review_checker_staged_rollout_no_survey_beta.metric: 'ad_clicks' + review_checker_staged_rollout_no_survey_beta.metric: 'days_of_use' review_checker_staged_rollout_no_survey_beta.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 @@ review_checker_staged_rollout_no_survey_beta.branch ] filters: - review_checker_staged_rollout_no_survey_beta.metric: 'days_of_use' + review_checker_staged_rollout_no_survey_beta.metric: 'search_count' review_checker_staged_rollout_no_survey_beta.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 @@ review_checker_staged_rollout_no_survey_beta.branch ] filters: - review_checker_staged_rollout_no_survey_beta.metric: 'active_hours' + review_checker_staged_rollout_no_survey_beta.metric: 'qualified_cumulative_days_of_use' review_checker_staged_rollout_no_survey_beta.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/rollout_100_experiment_for_additional_metrics_for_product_insights_new.dashboard.lookml b/operational_monitoring/dashboards/rollout_100_experiment_for_additional_metrics_for_product_insights_new.dashboard.lookml index 8b46a4ead..a28874784 100644 --- a/operational_monitoring/dashboards/rollout_100_experiment_for_additional_metrics_for_product_insights_new.dashboard.lookml +++ b/operational_monitoring/dashboards/rollout_100_experiment_for_additional_metrics_for_product_insights_new.dashboard.lookml @@ -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: rollout_100_experiment_for_additional_metrics_for_product_insights_new + type: looker_line + fields: [ + rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date, + rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch, + rollout_100_experiment_for_additional_metrics_for_product_insights_new.point + ] + pivots: [ + rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch + ] + filters: + rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'active_hours' + rollout_100_experiment_for_additional_metrics_for_product_insights_new.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date + field_y: rollout_100_experiment_for_additional_metrics_for_product_insights_new.point + log_scale: false + ci_lower: rollout_100_experiment_for_additional_metrics_for_product_insights_new.lower + ci_upper: rollout_100_experiment_for_additional_metrics_for_product_insights_new.upper + show_grid: true + listen: + Date: rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'uri_count' rollout_100_experiment_for_additional_metrics_for_product_insights_new.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date + field_y: rollout_100_experiment_for_additional_metrics_for_product_insights_new.point + log_scale: false + ci_lower: rollout_100_experiment_for_additional_metrics_for_product_insights_new.lower + ci_upper: rollout_100_experiment_for_additional_metrics_for_product_insights_new.upper + show_grid: true + listen: + Date: rollout_100_experiment_for_additional_metrics_for_product_insights_new.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: rollout_100_experiment_for_additional_metrics_for_product_insights_new + type: looker_line + fields: [ + rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date, + rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch, + rollout_100_experiment_for_additional_metrics_for_product_insights_new.point + ] + pivots: [ + rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch + ] + filters: + rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'ad_clicks' + rollout_100_experiment_for_additional_metrics_for_product_insights_new.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'retained' rollout_100_experiment_for_additional_metrics_for_product_insights_new.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date - field_y: rollout_100_experiment_for_additional_metrics_for_product_insights_new.point - log_scale: false - ci_lower: rollout_100_experiment_for_additional_metrics_for_product_insights_new.lower - ci_upper: rollout_100_experiment_for_additional_metrics_for_product_insights_new.upper - show_grid: true - listen: - Date: rollout_100_experiment_for_additional_metrics_for_product_insights_new.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: rollout_100_experiment_for_additional_metrics_for_product_insights_new - type: looker_line - fields: [ - rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date, - rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch, - rollout_100_experiment_for_additional_metrics_for_product_insights_new.point - ] - pivots: [ - rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch - ] - filters: - rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'qualified_cumulative_days_of_use' - rollout_100_experiment_for_additional_metrics_for_product_insights_new.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date - field_y: rollout_100_experiment_for_additional_metrics_for_product_insights_new.point - log_scale: false - ci_lower: rollout_100_experiment_for_additional_metrics_for_product_insights_new.lower - ci_upper: rollout_100_experiment_for_additional_metrics_for_product_insights_new.upper - show_grid: true - listen: - Date: rollout_100_experiment_for_additional_metrics_for_product_insights_new.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: rollout_100_experiment_for_additional_metrics_for_product_insights_new - type: looker_line - fields: [ - rollout_100_experiment_for_additional_metrics_for_product_insights_new.submission_date, - rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch, - rollout_100_experiment_for_additional_metrics_for_product_insights_new.point - ] - pivots: [ - rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch - ] - filters: - rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'search_count' - rollout_100_experiment_for_additional_metrics_for_product_insights_new.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 @@ rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch ] filters: - rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'ad_clicks' + rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'days_of_use' rollout_100_experiment_for_additional_metrics_for_product_insights_new.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 @@ rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch ] filters: - rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'days_of_use' + rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'search_count' rollout_100_experiment_for_additional_metrics_for_product_insights_new.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 @@ rollout_100_experiment_for_additional_metrics_for_product_insights_new.branch ] filters: - rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'active_hours' + rollout_100_experiment_for_additional_metrics_for_product_insights_new.metric: 'qualified_cumulative_days_of_use' rollout_100_experiment_for_additional_metrics_for_product_insights_new.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/rollout_of_share_of_voice_for_sponsored_topsites.dashboard.lookml b/operational_monitoring/dashboards/rollout_of_share_of_voice_for_sponsored_topsites.dashboard.lookml index df317d3ea..3a3881636 100644 --- a/operational_monitoring/dashboards/rollout_of_share_of_voice_for_sponsored_topsites.dashboard.lookml +++ b/operational_monitoring/dashboards/rollout_of_share_of_voice_for_sponsored_topsites.dashboard.lookml @@ -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: rollout_of_share_of_voice_for_sponsored_topsites + type: looker_line + fields: [ + rollout_of_share_of_voice_for_sponsored_topsites.submission_date, + rollout_of_share_of_voice_for_sponsored_topsites.branch, + rollout_of_share_of_voice_for_sponsored_topsites.point + ] + pivots: [ + rollout_of_share_of_voice_for_sponsored_topsites.branch + ] + filters: + rollout_of_share_of_voice_for_sponsored_topsites.metric: 'active_hours' + rollout_of_share_of_voice_for_sponsored_topsites.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: rollout_of_share_of_voice_for_sponsored_topsites.submission_date + field_y: rollout_of_share_of_voice_for_sponsored_topsites.point + log_scale: false + ci_lower: rollout_of_share_of_voice_for_sponsored_topsites.lower + ci_upper: rollout_of_share_of_voice_for_sponsored_topsites.upper + show_grid: true + listen: + Date: rollout_of_share_of_voice_for_sponsored_topsites.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ rollout_of_share_of_voice_for_sponsored_topsites.metric: 'uri_count' rollout_of_share_of_voice_for_sponsored_topsites.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: rollout_of_share_of_voice_for_sponsored_topsites.submission_date + field_y: rollout_of_share_of_voice_for_sponsored_topsites.point + log_scale: false + ci_lower: rollout_of_share_of_voice_for_sponsored_topsites.lower + ci_upper: rollout_of_share_of_voice_for_sponsored_topsites.upper + show_grid: true + listen: + Date: rollout_of_share_of_voice_for_sponsored_topsites.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: rollout_of_share_of_voice_for_sponsored_topsites + type: looker_line + fields: [ + rollout_of_share_of_voice_for_sponsored_topsites.submission_date, + rollout_of_share_of_voice_for_sponsored_topsites.branch, + rollout_of_share_of_voice_for_sponsored_topsites.point + ] + pivots: [ + rollout_of_share_of_voice_for_sponsored_topsites.branch + ] + filters: + rollout_of_share_of_voice_for_sponsored_topsites.metric: 'ad_clicks' + rollout_of_share_of_voice_for_sponsored_topsites.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: rollout_of_share_of_voice_for_sponsored_topsites.metric: 'retained' rollout_of_share_of_voice_for_sponsored_topsites.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: rollout_of_share_of_voice_for_sponsored_topsites.submission_date - field_y: rollout_of_share_of_voice_for_sponsored_topsites.point - log_scale: false - ci_lower: rollout_of_share_of_voice_for_sponsored_topsites.lower - ci_upper: rollout_of_share_of_voice_for_sponsored_topsites.upper - show_grid: true - listen: - Date: rollout_of_share_of_voice_for_sponsored_topsites.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: rollout_of_share_of_voice_for_sponsored_topsites - type: looker_line - fields: [ - rollout_of_share_of_voice_for_sponsored_topsites.submission_date, - rollout_of_share_of_voice_for_sponsored_topsites.branch, - rollout_of_share_of_voice_for_sponsored_topsites.point - ] - pivots: [ - rollout_of_share_of_voice_for_sponsored_topsites.branch - ] - filters: - rollout_of_share_of_voice_for_sponsored_topsites.metric: 'qualified_cumulative_days_of_use' - rollout_of_share_of_voice_for_sponsored_topsites.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: rollout_of_share_of_voice_for_sponsored_topsites.submission_date - field_y: rollout_of_share_of_voice_for_sponsored_topsites.point - log_scale: false - ci_lower: rollout_of_share_of_voice_for_sponsored_topsites.lower - ci_upper: rollout_of_share_of_voice_for_sponsored_topsites.upper - show_grid: true - listen: - Date: rollout_of_share_of_voice_for_sponsored_topsites.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: rollout_of_share_of_voice_for_sponsored_topsites - type: looker_line - fields: [ - rollout_of_share_of_voice_for_sponsored_topsites.submission_date, - rollout_of_share_of_voice_for_sponsored_topsites.branch, - rollout_of_share_of_voice_for_sponsored_topsites.point - ] - pivots: [ - rollout_of_share_of_voice_for_sponsored_topsites.branch - ] - filters: - rollout_of_share_of_voice_for_sponsored_topsites.metric: 'search_count' - rollout_of_share_of_voice_for_sponsored_topsites.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 @@ rollout_of_share_of_voice_for_sponsored_topsites.branch ] filters: - rollout_of_share_of_voice_for_sponsored_topsites.metric: 'ad_clicks' + rollout_of_share_of_voice_for_sponsored_topsites.metric: 'days_of_use' rollout_of_share_of_voice_for_sponsored_topsites.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 @@ rollout_of_share_of_voice_for_sponsored_topsites.branch ] filters: - rollout_of_share_of_voice_for_sponsored_topsites.metric: 'days_of_use' + rollout_of_share_of_voice_for_sponsored_topsites.metric: 'search_count' rollout_of_share_of_voice_for_sponsored_topsites.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 @@ rollout_of_share_of_voice_for_sponsored_topsites.branch ] filters: - rollout_of_share_of_voice_for_sponsored_topsites.metric: 'active_hours' + rollout_of_share_of_voice_for_sponsored_topsites.metric: 'qualified_cumulative_days_of_use' rollout_of_share_of_voice_for_sponsored_topsites.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/serp_ad_telemetry_rollout_previous_to_118.dashboard.lookml b/operational_monitoring/dashboards/serp_ad_telemetry_rollout_previous_to_118.dashboard.lookml index 084c0d348..6b33aa5fb 100644 --- a/operational_monitoring/dashboards/serp_ad_telemetry_rollout_previous_to_118.dashboard.lookml +++ b/operational_monitoring/dashboards/serp_ad_telemetry_rollout_previous_to_118.dashboard.lookml @@ -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: serp_ad_telemetry_rollout_previous_to_118 + type: looker_line + fields: [ + serp_ad_telemetry_rollout_previous_to_118.submission_date, + serp_ad_telemetry_rollout_previous_to_118.branch, + serp_ad_telemetry_rollout_previous_to_118.point + ] + pivots: [ + serp_ad_telemetry_rollout_previous_to_118.branch + ] + filters: + serp_ad_telemetry_rollout_previous_to_118.metric: 'active_hours' + serp_ad_telemetry_rollout_previous_to_118.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: serp_ad_telemetry_rollout_previous_to_118.submission_date + field_y: serp_ad_telemetry_rollout_previous_to_118.point + log_scale: false + ci_lower: serp_ad_telemetry_rollout_previous_to_118.lower + ci_upper: serp_ad_telemetry_rollout_previous_to_118.upper + show_grid: true + listen: + Date: serp_ad_telemetry_rollout_previous_to_118.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ serp_ad_telemetry_rollout_previous_to_118.metric: 'uri_count' serp_ad_telemetry_rollout_previous_to_118.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: serp_ad_telemetry_rollout_previous_to_118.submission_date + field_y: serp_ad_telemetry_rollout_previous_to_118.point + log_scale: false + ci_lower: serp_ad_telemetry_rollout_previous_to_118.lower + ci_upper: serp_ad_telemetry_rollout_previous_to_118.upper + show_grid: true + listen: + Date: serp_ad_telemetry_rollout_previous_to_118.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: serp_ad_telemetry_rollout_previous_to_118 + type: looker_line + fields: [ + serp_ad_telemetry_rollout_previous_to_118.submission_date, + serp_ad_telemetry_rollout_previous_to_118.branch, + serp_ad_telemetry_rollout_previous_to_118.point + ] + pivots: [ + serp_ad_telemetry_rollout_previous_to_118.branch + ] + filters: + serp_ad_telemetry_rollout_previous_to_118.metric: 'ad_clicks' + serp_ad_telemetry_rollout_previous_to_118.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: serp_ad_telemetry_rollout_previous_to_118.metric: 'retained' serp_ad_telemetry_rollout_previous_to_118.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: serp_ad_telemetry_rollout_previous_to_118.submission_date - field_y: serp_ad_telemetry_rollout_previous_to_118.point - log_scale: false - ci_lower: serp_ad_telemetry_rollout_previous_to_118.lower - ci_upper: serp_ad_telemetry_rollout_previous_to_118.upper - show_grid: true - listen: - Date: serp_ad_telemetry_rollout_previous_to_118.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: serp_ad_telemetry_rollout_previous_to_118 - type: looker_line - fields: [ - serp_ad_telemetry_rollout_previous_to_118.submission_date, - serp_ad_telemetry_rollout_previous_to_118.branch, - serp_ad_telemetry_rollout_previous_to_118.point - ] - pivots: [ - serp_ad_telemetry_rollout_previous_to_118.branch - ] - filters: - serp_ad_telemetry_rollout_previous_to_118.metric: 'qualified_cumulative_days_of_use' - serp_ad_telemetry_rollout_previous_to_118.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: serp_ad_telemetry_rollout_previous_to_118.submission_date - field_y: serp_ad_telemetry_rollout_previous_to_118.point - log_scale: false - ci_lower: serp_ad_telemetry_rollout_previous_to_118.lower - ci_upper: serp_ad_telemetry_rollout_previous_to_118.upper - show_grid: true - listen: - Date: serp_ad_telemetry_rollout_previous_to_118.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: serp_ad_telemetry_rollout_previous_to_118 - type: looker_line - fields: [ - serp_ad_telemetry_rollout_previous_to_118.submission_date, - serp_ad_telemetry_rollout_previous_to_118.branch, - serp_ad_telemetry_rollout_previous_to_118.point - ] - pivots: [ - serp_ad_telemetry_rollout_previous_to_118.branch - ] - filters: - serp_ad_telemetry_rollout_previous_to_118.metric: 'search_count' - serp_ad_telemetry_rollout_previous_to_118.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 @@ serp_ad_telemetry_rollout_previous_to_118.branch ] filters: - serp_ad_telemetry_rollout_previous_to_118.metric: 'ad_clicks' + serp_ad_telemetry_rollout_previous_to_118.metric: 'days_of_use' serp_ad_telemetry_rollout_previous_to_118.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 @@ serp_ad_telemetry_rollout_previous_to_118.branch ] filters: - serp_ad_telemetry_rollout_previous_to_118.metric: 'days_of_use' + serp_ad_telemetry_rollout_previous_to_118.metric: 'search_count' serp_ad_telemetry_rollout_previous_to_118.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 @@ serp_ad_telemetry_rollout_previous_to_118.branch ] filters: - serp_ad_telemetry_rollout_previous_to_118.metric: 'active_hours' + serp_ad_telemetry_rollout_previous_to_118.metric: 'qualified_cumulative_days_of_use' serp_ad_telemetry_rollout_previous_to_118.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/spocs_endpoint_rollout_beta.dashboard.lookml b/operational_monitoring/dashboards/spocs_endpoint_rollout_beta.dashboard.lookml index 0221510ff..42d9603a8 100644 --- a/operational_monitoring/dashboards/spocs_endpoint_rollout_beta.dashboard.lookml +++ b/operational_monitoring/dashboards/spocs_endpoint_rollout_beta.dashboard.lookml @@ -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: spocs_endpoint_rollout_beta + type: looker_line + fields: [ + spocs_endpoint_rollout_beta.submission_date, + spocs_endpoint_rollout_beta.branch, + spocs_endpoint_rollout_beta.point + ] + pivots: [ + spocs_endpoint_rollout_beta.branch + ] + filters: + spocs_endpoint_rollout_beta.metric: 'active_hours' + spocs_endpoint_rollout_beta.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: spocs_endpoint_rollout_beta.submission_date + field_y: spocs_endpoint_rollout_beta.point + log_scale: false + ci_lower: spocs_endpoint_rollout_beta.lower + ci_upper: spocs_endpoint_rollout_beta.upper + show_grid: true + listen: + Date: spocs_endpoint_rollout_beta.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ spocs_endpoint_rollout_beta.metric: 'uri_count' spocs_endpoint_rollout_beta.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: spocs_endpoint_rollout_beta.submission_date + field_y: spocs_endpoint_rollout_beta.point + log_scale: false + ci_lower: spocs_endpoint_rollout_beta.lower + ci_upper: spocs_endpoint_rollout_beta.upper + show_grid: true + listen: + Date: spocs_endpoint_rollout_beta.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: spocs_endpoint_rollout_beta + type: looker_line + fields: [ + spocs_endpoint_rollout_beta.submission_date, + spocs_endpoint_rollout_beta.branch, + spocs_endpoint_rollout_beta.point + ] + pivots: [ + spocs_endpoint_rollout_beta.branch + ] + filters: + spocs_endpoint_rollout_beta.metric: 'ad_clicks' + spocs_endpoint_rollout_beta.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: spocs_endpoint_rollout_beta.metric: 'retained' spocs_endpoint_rollout_beta.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: spocs_endpoint_rollout_beta.submission_date - field_y: spocs_endpoint_rollout_beta.point - log_scale: false - ci_lower: spocs_endpoint_rollout_beta.lower - ci_upper: spocs_endpoint_rollout_beta.upper - show_grid: true - listen: - Date: spocs_endpoint_rollout_beta.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: spocs_endpoint_rollout_beta - type: looker_line - fields: [ - spocs_endpoint_rollout_beta.submission_date, - spocs_endpoint_rollout_beta.branch, - spocs_endpoint_rollout_beta.point - ] - pivots: [ - spocs_endpoint_rollout_beta.branch - ] - filters: - spocs_endpoint_rollout_beta.metric: 'qualified_cumulative_days_of_use' - spocs_endpoint_rollout_beta.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: spocs_endpoint_rollout_beta.submission_date - field_y: spocs_endpoint_rollout_beta.point - log_scale: false - ci_lower: spocs_endpoint_rollout_beta.lower - ci_upper: spocs_endpoint_rollout_beta.upper - show_grid: true - listen: - Date: spocs_endpoint_rollout_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: spocs_endpoint_rollout_beta - type: looker_line - fields: [ - spocs_endpoint_rollout_beta.submission_date, - spocs_endpoint_rollout_beta.branch, - spocs_endpoint_rollout_beta.point - ] - pivots: [ - spocs_endpoint_rollout_beta.branch - ] - filters: - spocs_endpoint_rollout_beta.metric: 'search_count' - spocs_endpoint_rollout_beta.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 @@ spocs_endpoint_rollout_beta.branch ] filters: - spocs_endpoint_rollout_beta.metric: 'ad_clicks' + spocs_endpoint_rollout_beta.metric: 'days_of_use' spocs_endpoint_rollout_beta.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 @@ spocs_endpoint_rollout_beta.branch ] filters: - spocs_endpoint_rollout_beta.metric: 'days_of_use' + spocs_endpoint_rollout_beta.metric: 'search_count' spocs_endpoint_rollout_beta.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 @@ spocs_endpoint_rollout_beta.branch ] filters: - spocs_endpoint_rollout_beta.metric: 'active_hours' + spocs_endpoint_rollout_beta.metric: 'qualified_cumulative_days_of_use' spocs_endpoint_rollout_beta.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/spocs_endpoint_rollout_nightly.dashboard.lookml b/operational_monitoring/dashboards/spocs_endpoint_rollout_nightly.dashboard.lookml index 0b2a2f40d..8417cfa14 100644 --- a/operational_monitoring/dashboards/spocs_endpoint_rollout_nightly.dashboard.lookml +++ b/operational_monitoring/dashboards/spocs_endpoint_rollout_nightly.dashboard.lookml @@ -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: spocs_endpoint_rollout_nightly + type: looker_line + fields: [ + spocs_endpoint_rollout_nightly.submission_date, + spocs_endpoint_rollout_nightly.branch, + spocs_endpoint_rollout_nightly.point + ] + pivots: [ + spocs_endpoint_rollout_nightly.branch + ] + filters: + spocs_endpoint_rollout_nightly.metric: 'active_hours' + spocs_endpoint_rollout_nightly.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: spocs_endpoint_rollout_nightly.submission_date + field_y: spocs_endpoint_rollout_nightly.point + log_scale: false + ci_lower: spocs_endpoint_rollout_nightly.lower + ci_upper: spocs_endpoint_rollout_nightly.upper + show_grid: true + listen: + Date: spocs_endpoint_rollout_nightly.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ spocs_endpoint_rollout_nightly.metric: 'uri_count' spocs_endpoint_rollout_nightly.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: spocs_endpoint_rollout_nightly.submission_date + field_y: spocs_endpoint_rollout_nightly.point + log_scale: false + ci_lower: spocs_endpoint_rollout_nightly.lower + ci_upper: spocs_endpoint_rollout_nightly.upper + show_grid: true + listen: + Date: spocs_endpoint_rollout_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: spocs_endpoint_rollout_nightly + type: looker_line + fields: [ + spocs_endpoint_rollout_nightly.submission_date, + spocs_endpoint_rollout_nightly.branch, + spocs_endpoint_rollout_nightly.point + ] + pivots: [ + spocs_endpoint_rollout_nightly.branch + ] + filters: + spocs_endpoint_rollout_nightly.metric: 'ad_clicks' + spocs_endpoint_rollout_nightly.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: spocs_endpoint_rollout_nightly.metric: 'retained' spocs_endpoint_rollout_nightly.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: spocs_endpoint_rollout_nightly.submission_date - field_y: spocs_endpoint_rollout_nightly.point - log_scale: false - ci_lower: spocs_endpoint_rollout_nightly.lower - ci_upper: spocs_endpoint_rollout_nightly.upper - show_grid: true - listen: - Date: spocs_endpoint_rollout_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: spocs_endpoint_rollout_nightly - type: looker_line - fields: [ - spocs_endpoint_rollout_nightly.submission_date, - spocs_endpoint_rollout_nightly.branch, - spocs_endpoint_rollout_nightly.point - ] - pivots: [ - spocs_endpoint_rollout_nightly.branch - ] - filters: - spocs_endpoint_rollout_nightly.metric: 'qualified_cumulative_days_of_use' - spocs_endpoint_rollout_nightly.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: spocs_endpoint_rollout_nightly.submission_date - field_y: spocs_endpoint_rollout_nightly.point - log_scale: false - ci_lower: spocs_endpoint_rollout_nightly.lower - ci_upper: spocs_endpoint_rollout_nightly.upper - show_grid: true - listen: - Date: spocs_endpoint_rollout_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: spocs_endpoint_rollout_nightly - type: looker_line - fields: [ - spocs_endpoint_rollout_nightly.submission_date, - spocs_endpoint_rollout_nightly.branch, - spocs_endpoint_rollout_nightly.point - ] - pivots: [ - spocs_endpoint_rollout_nightly.branch - ] - filters: - spocs_endpoint_rollout_nightly.metric: 'search_count' - spocs_endpoint_rollout_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 @@ spocs_endpoint_rollout_nightly.branch ] filters: - spocs_endpoint_rollout_nightly.metric: 'ad_clicks' + spocs_endpoint_rollout_nightly.metric: 'days_of_use' spocs_endpoint_rollout_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 @@ spocs_endpoint_rollout_nightly.branch ] filters: - spocs_endpoint_rollout_nightly.metric: 'days_of_use' + spocs_endpoint_rollout_nightly.metric: 'search_count' spocs_endpoint_rollout_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 @@ spocs_endpoint_rollout_nightly.branch ] filters: - spocs_endpoint_rollout_nightly.metric: 'active_hours' + spocs_endpoint_rollout_nightly.metric: 'qualified_cumulative_days_of_use' spocs_endpoint_rollout_nightly.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/spocs_endpoint_rollout_release.dashboard.lookml b/operational_monitoring/dashboards/spocs_endpoint_rollout_release.dashboard.lookml index 31e3a732c..b0c77709b 100644 --- a/operational_monitoring/dashboards/spocs_endpoint_rollout_release.dashboard.lookml +++ b/operational_monitoring/dashboards/spocs_endpoint_rollout_release.dashboard.lookml @@ -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: spocs_endpoint_rollout_release + type: looker_line + fields: [ + spocs_endpoint_rollout_release.submission_date, + spocs_endpoint_rollout_release.branch, + spocs_endpoint_rollout_release.point + ] + pivots: [ + spocs_endpoint_rollout_release.branch + ] + filters: + spocs_endpoint_rollout_release.metric: 'active_hours' + spocs_endpoint_rollout_release.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: spocs_endpoint_rollout_release.submission_date + field_y: spocs_endpoint_rollout_release.point + log_scale: false + ci_lower: spocs_endpoint_rollout_release.lower + ci_upper: spocs_endpoint_rollout_release.upper + show_grid: true + listen: + Date: spocs_endpoint_rollout_release.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ spocs_endpoint_rollout_release.metric: 'uri_count' spocs_endpoint_rollout_release.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: spocs_endpoint_rollout_release.submission_date + field_y: spocs_endpoint_rollout_release.point + log_scale: false + ci_lower: spocs_endpoint_rollout_release.lower + ci_upper: spocs_endpoint_rollout_release.upper + show_grid: true + listen: + Date: spocs_endpoint_rollout_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: spocs_endpoint_rollout_release + type: looker_line + fields: [ + spocs_endpoint_rollout_release.submission_date, + spocs_endpoint_rollout_release.branch, + spocs_endpoint_rollout_release.point + ] + pivots: [ + spocs_endpoint_rollout_release.branch + ] + filters: + spocs_endpoint_rollout_release.metric: 'ad_clicks' + spocs_endpoint_rollout_release.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: spocs_endpoint_rollout_release.metric: 'retained' spocs_endpoint_rollout_release.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: spocs_endpoint_rollout_release.submission_date - field_y: spocs_endpoint_rollout_release.point - log_scale: false - ci_lower: spocs_endpoint_rollout_release.lower - ci_upper: spocs_endpoint_rollout_release.upper - show_grid: true - listen: - Date: spocs_endpoint_rollout_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: spocs_endpoint_rollout_release - type: looker_line - fields: [ - spocs_endpoint_rollout_release.submission_date, - spocs_endpoint_rollout_release.branch, - spocs_endpoint_rollout_release.point - ] - pivots: [ - spocs_endpoint_rollout_release.branch - ] - filters: - spocs_endpoint_rollout_release.metric: 'qualified_cumulative_days_of_use' - spocs_endpoint_rollout_release.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: spocs_endpoint_rollout_release.submission_date - field_y: spocs_endpoint_rollout_release.point - log_scale: false - ci_lower: spocs_endpoint_rollout_release.lower - ci_upper: spocs_endpoint_rollout_release.upper - show_grid: true - listen: - Date: spocs_endpoint_rollout_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: spocs_endpoint_rollout_release - type: looker_line - fields: [ - spocs_endpoint_rollout_release.submission_date, - spocs_endpoint_rollout_release.branch, - spocs_endpoint_rollout_release.point - ] - pivots: [ - spocs_endpoint_rollout_release.branch - ] - filters: - spocs_endpoint_rollout_release.metric: 'search_count' - spocs_endpoint_rollout_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 @@ spocs_endpoint_rollout_release.branch ] filters: - spocs_endpoint_rollout_release.metric: 'ad_clicks' + spocs_endpoint_rollout_release.metric: 'days_of_use' spocs_endpoint_rollout_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 @@ spocs_endpoint_rollout_release.branch ] filters: - spocs_endpoint_rollout_release.metric: 'days_of_use' + spocs_endpoint_rollout_release.metric: 'search_count' spocs_endpoint_rollout_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 @@ spocs_endpoint_rollout_release.branch ] filters: - spocs_endpoint_rollout_release.metric: 'active_hours' + spocs_endpoint_rollout_release.metric: 'qualified_cumulative_days_of_use' spocs_endpoint_rollout_release.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/telemetry_alerts_prototype.dashboard.lookml b/operational_monitoring/dashboards/telemetry_alerts_prototype.dashboard.lookml index 981c8ebad..1d1d6bb27 100644 --- a/operational_monitoring/dashboards/telemetry_alerts_prototype.dashboard.lookml +++ b/operational_monitoring/dashboards/telemetry_alerts_prototype.dashboard.lookml @@ -132,7 +132,7 @@ - name: Metric title: Metric type: field_filter - default_value: 'gc_ms' + default_value: 'subsession_length' allow_multiple_values: false required: true ui_config: diff --git a/operational_monitoring/dashboards/upgrade_spotlight_rollout.dashboard.lookml b/operational_monitoring/dashboards/upgrade_spotlight_rollout.dashboard.lookml index 3cbe27629..931bf5f78 100644 --- a/operational_monitoring/dashboards/upgrade_spotlight_rollout.dashboard.lookml +++ b/operational_monitoring/dashboards/upgrade_spotlight_rollout.dashboard.lookml @@ -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: upgrade_spotlight_rollout + type: looker_line + fields: [ + upgrade_spotlight_rollout.submission_date, + upgrade_spotlight_rollout.branch, + upgrade_spotlight_rollout.point + ] + pivots: [ + upgrade_spotlight_rollout.branch + ] + filters: + upgrade_spotlight_rollout.metric: 'active_hours' + upgrade_spotlight_rollout.statistic: mean + row: 0 + col: 0 + width: 12 + height: 8 + field_x: upgrade_spotlight_rollout.submission_date + field_y: upgrade_spotlight_rollout.point + log_scale: false + ci_lower: upgrade_spotlight_rollout.lower + ci_upper: upgrade_spotlight_rollout.upper + show_grid: true + listen: + Date: upgrade_spotlight_rollout.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 - title: Uri Count name: Uri Count_mean note_state: expanded @@ -29,6 +63,40 @@ upgrade_spotlight_rollout.metric: 'uri_count' upgrade_spotlight_rollout.statistic: mean row: 0 + col: 12 + width: 12 + height: 8 + field_x: upgrade_spotlight_rollout.submission_date + field_y: upgrade_spotlight_rollout.point + log_scale: false + ci_lower: upgrade_spotlight_rollout.lower + ci_upper: upgrade_spotlight_rollout.upper + show_grid: true + listen: + Date: upgrade_spotlight_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: upgrade_spotlight_rollout + type: looker_line + fields: [ + upgrade_spotlight_rollout.submission_date, + upgrade_spotlight_rollout.branch, + upgrade_spotlight_rollout.point + ] + pivots: [ + upgrade_spotlight_rollout.branch + ] + filters: + upgrade_spotlight_rollout.metric: 'ad_clicks' + upgrade_spotlight_rollout.statistic: mean + row: 10 col: 0 width: 12 height: 8 @@ -62,74 +130,6 @@ filters: upgrade_spotlight_rollout.metric: 'retained' upgrade_spotlight_rollout.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: upgrade_spotlight_rollout.submission_date - field_y: upgrade_spotlight_rollout.point - log_scale: false - ci_lower: upgrade_spotlight_rollout.lower - ci_upper: upgrade_spotlight_rollout.upper - show_grid: true - listen: - Date: upgrade_spotlight_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: upgrade_spotlight_rollout - type: looker_line - fields: [ - upgrade_spotlight_rollout.submission_date, - upgrade_spotlight_rollout.branch, - upgrade_spotlight_rollout.point - ] - pivots: [ - upgrade_spotlight_rollout.branch - ] - filters: - upgrade_spotlight_rollout.metric: 'qualified_cumulative_days_of_use' - upgrade_spotlight_rollout.statistic: mean - row: 10 - col: 0 - width: 12 - height: 8 - field_x: upgrade_spotlight_rollout.submission_date - field_y: upgrade_spotlight_rollout.point - log_scale: false - ci_lower: upgrade_spotlight_rollout.lower - ci_upper: upgrade_spotlight_rollout.upper - show_grid: true - listen: - Date: upgrade_spotlight_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: upgrade_spotlight_rollout - type: looker_line - fields: [ - upgrade_spotlight_rollout.submission_date, - upgrade_spotlight_rollout.branch, - upgrade_spotlight_rollout.point - ] - pivots: [ - upgrade_spotlight_rollout.branch - ] - filters: - upgrade_spotlight_rollout.metric: 'search_count' - upgrade_spotlight_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 @@ upgrade_spotlight_rollout.branch ] filters: - upgrade_spotlight_rollout.metric: 'ad_clicks' + upgrade_spotlight_rollout.metric: 'days_of_use' upgrade_spotlight_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 @@ upgrade_spotlight_rollout.branch ] filters: - upgrade_spotlight_rollout.metric: 'days_of_use' + upgrade_spotlight_rollout.metric: 'search_count' upgrade_spotlight_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 @@ upgrade_spotlight_rollout.branch ] filters: - upgrade_spotlight_rollout.metric: 'active_hours' + upgrade_spotlight_rollout.metric: 'qualified_cumulative_days_of_use' upgrade_spotlight_rollout.statistic: mean row: 30 col: 12 diff --git a/operational_monitoring/dashboards/viewpoint_android_march_2024_launch.dashboard.lookml b/operational_monitoring/dashboards/viewpoint_android_march_2024_launch.dashboard.lookml index 60f49e052..b9f33da78 100644 --- a/operational_monitoring/dashboards/viewpoint_android_march_2024_launch.dashboard.lookml +++ b/operational_monitoring/dashboards/viewpoint_android_march_2024_launch.dashboard.lookml @@ -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 @@ viewpoint_android_march_2024_launch.branch ] filters: - viewpoint_android_march_2024_launch.metric: 'tagged_sap_searches' + viewpoint_android_march_2024_launch.metric: 'active_hours' viewpoint_android_march_2024_launch.statistic: mean row: 0 col: 0 @@ -75,6 +75,40 @@ listen: Date: viewpoint_android_march_2024_launch.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: viewpoint_android_march_2024_launch + type: looker_line + fields: [ + viewpoint_android_march_2024_launch.submission_date, + viewpoint_android_march_2024_launch.branch, + viewpoint_android_march_2024_launch.point + ] + pivots: [ + viewpoint_android_march_2024_launch.branch + ] + filters: + viewpoint_android_march_2024_launch.metric: 'ad_clicks' + viewpoint_android_march_2024_launch.statistic: mean + row: 10 + col: 0 + width: 12 + height: 8 + field_x: viewpoint_android_march_2024_launch.submission_date + field_y: viewpoint_android_march_2024_launch.point + log_scale: false + ci_lower: viewpoint_android_march_2024_launch.lower + ci_upper: viewpoint_android_march_2024_launch.upper + show_grid: true + listen: + Date: viewpoint_android_march_2024_launch.submission_date + enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -97,40 +131,6 @@ viewpoint_android_march_2024_launch.metric: 'retained' viewpoint_android_march_2024_launch.statistic: mean row: 10 - col: 0 - width: 12 - height: 8 - field_x: viewpoint_android_march_2024_launch.submission_date - field_y: viewpoint_android_march_2024_launch.point - log_scale: false - ci_lower: viewpoint_android_march_2024_launch.lower - ci_upper: viewpoint_android_march_2024_launch.upper - show_grid: true - listen: - Date: viewpoint_android_march_2024_launch.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: viewpoint_android_march_2024_launch - type: looker_line - fields: [ - viewpoint_android_march_2024_launch.submission_date, - viewpoint_android_march_2024_launch.branch, - viewpoint_android_march_2024_launch.point - ] - pivots: [ - viewpoint_android_march_2024_launch.branch - ] - filters: - viewpoint_android_march_2024_launch.metric: 'search_count' - viewpoint_android_march_2024_launch.statistic: mean - row: 10 col: 12 width: 12 height: 8 @@ -143,40 +143,6 @@ listen: Date: viewpoint_android_march_2024_launch.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: viewpoint_android_march_2024_launch - type: looker_line - fields: [ - viewpoint_android_march_2024_launch.submission_date, - viewpoint_android_march_2024_launch.branch, - viewpoint_android_march_2024_launch.point - ] - pivots: [ - viewpoint_android_march_2024_launch.branch - ] - filters: - viewpoint_android_march_2024_launch.metric: 'ad_clicks' - viewpoint_android_march_2024_launch.statistic: mean - row: 20 - col: 0 - width: 12 - height: 8 - field_x: viewpoint_android_march_2024_launch.submission_date - field_y: viewpoint_android_march_2024_launch.point - log_scale: false - ci_lower: viewpoint_android_march_2024_launch.lower - ci_upper: viewpoint_android_march_2024_launch.upper - show_grid: true - listen: - Date: viewpoint_android_march_2024_launch.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -199,6 +165,40 @@ viewpoint_android_march_2024_launch.metric: 'days_of_use' viewpoint_android_march_2024_launch.statistic: mean row: 20 + col: 0 + width: 12 + height: 8 + field_x: viewpoint_android_march_2024_launch.submission_date + field_y: viewpoint_android_march_2024_launch.point + log_scale: false + ci_lower: viewpoint_android_march_2024_launch.lower + ci_upper: viewpoint_android_march_2024_launch.upper + show_grid: true + listen: + Date: viewpoint_android_march_2024_launch.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: viewpoint_android_march_2024_launch + type: looker_line + fields: [ + viewpoint_android_march_2024_launch.submission_date, + viewpoint_android_march_2024_launch.branch, + viewpoint_android_march_2024_launch.point + ] + pivots: [ + viewpoint_android_march_2024_launch.branch + ] + filters: + viewpoint_android_march_2024_launch.metric: 'tagged_sap_searches' + viewpoint_android_march_2024_launch.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 @@ viewpoint_android_march_2024_launch.branch ] filters: - viewpoint_android_march_2024_launch.metric: 'active_hours' + viewpoint_android_march_2024_launch.metric: 'search_count' viewpoint_android_march_2024_launch.statistic: mean row: 30 col: 0 diff --git a/operational_monitoring/dashboards/viewpoint_ios_march_2024_launch.dashboard.lookml b/operational_monitoring/dashboards/viewpoint_ios_march_2024_launch.dashboard.lookml index 755324938..9baf467af 100644 --- a/operational_monitoring/dashboards/viewpoint_ios_march_2024_launch.dashboard.lookml +++ b/operational_monitoring/dashboards/viewpoint_ios_march_2024_launch.dashboard.lookml @@ -10,8 +10,8 @@ preferred_viewer: dashboards-next elements: - - title: Retained - name: Retained_mean + - title: Active Hours + name: Active Hours_mean note_state: expanded note_display: above note_text: Mean @@ -26,7 +26,7 @@ viewpoint_ios_march_2024_launch.branch ] filters: - viewpoint_ios_march_2024_launch.metric: 'retained' + viewpoint_ios_march_2024_launch.metric: 'active_hours' viewpoint_ios_march_2024_launch.statistic: mean row: 0 col: 0 @@ -41,40 +41,6 @@ listen: Date: viewpoint_ios_march_2024_launch.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: viewpoint_ios_march_2024_launch - type: looker_line - fields: [ - viewpoint_ios_march_2024_launch.submission_date, - viewpoint_ios_march_2024_launch.branch, - viewpoint_ios_march_2024_launch.point - ] - pivots: [ - viewpoint_ios_march_2024_launch.branch - ] - filters: - viewpoint_ios_march_2024_launch.metric: 'search_count' - viewpoint_ios_march_2024_launch.statistic: mean - row: 0 - col: 12 - width: 12 - height: 8 - field_x: viewpoint_ios_march_2024_launch.submission_date - field_y: viewpoint_ios_march_2024_launch.point - log_scale: false - ci_lower: viewpoint_ios_march_2024_launch.lower - ci_upper: viewpoint_ios_march_2024_launch.upper - show_grid: true - listen: - Date: viewpoint_ios_march_2024_launch.submission_date - enabled: "#3FE1B0" disabled: "#0060E0" defaults_version: 0 @@ -96,6 +62,40 @@ filters: viewpoint_ios_march_2024_launch.metric: 'ad_clicks' viewpoint_ios_march_2024_launch.statistic: mean + row: 0 + col: 12 + width: 12 + height: 8 + field_x: viewpoint_ios_march_2024_launch.submission_date + field_y: viewpoint_ios_march_2024_launch.point + log_scale: false + ci_lower: viewpoint_ios_march_2024_launch.lower + ci_upper: viewpoint_ios_march_2024_launch.upper + show_grid: true + listen: + Date: viewpoint_ios_march_2024_launch.submission_date + + enabled: "#3FE1B0" + disabled: "#0060E0" + defaults_version: 0 + - title: Retained + name: Retained_mean + note_state: expanded + note_display: above + note_text: Mean + explore: viewpoint_ios_march_2024_launch + type: looker_line + fields: [ + viewpoint_ios_march_2024_launch.submission_date, + viewpoint_ios_march_2024_launch.branch, + viewpoint_ios_march_2024_launch.point + ] + pivots: [ + viewpoint_ios_march_2024_launch.branch + ] + filters: + viewpoint_ios_march_2024_launch.metric: 'retained' + viewpoint_ios_march_2024_launch.statistic: mean row: 10 col: 0 width: 12 @@ -146,8 +146,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 @@ -162,7 +162,7 @@ viewpoint_ios_march_2024_launch.branch ] filters: - viewpoint_ios_march_2024_launch.metric: 'active_hours' + viewpoint_ios_march_2024_launch.metric: 'search_count' viewpoint_ios_march_2024_launch.statistic: mean row: 20 col: 0 diff --git a/review_checker/datagroups/review_checker_clients_v1_last_updated.datagroup.lkml b/review_checker/datagroups/review_checker_clients_v1_last_updated.datagroup.lkml index c31af6111..ffcad71cd 100644 --- a/review_checker/datagroups/review_checker_clients_v1_last_updated.datagroup.lkml +++ b/review_checker/datagroups/review_checker_clients_v1_last_updated.datagroup.lkml @@ -6,11 +6,11 @@ # Using a datagroup in a derived table: https://cloud.google.com/looker/docs/reference/param-view-datagroup-trigger datagroup: review_checker_clients_v1_last_updated { - label: "Firefox iOS review checker clients data Last Updated" + label: "Fenix review checker clients data 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 = 'org_mozilla_ios_firefox_derived' + WHERE table_schema = 'org_mozilla_fenix_derived' AND table_name = 'review_checker_clients_v1' ;; - description: "Updates when moz-fx-data-shared-prod:org_mozilla_ios_firefox_derived.review_checker_clients_v1 is modified." + description: "Updates when moz-fx-data-shared-prod:org_mozilla_fenix_derived.review_checker_clients_v1 is modified." max_cache_age: "24 hours" } \ No newline at end of file diff --git a/review_checker/datagroups/review_checker_events_v1_last_updated.datagroup.lkml b/review_checker/datagroups/review_checker_events_v1_last_updated.datagroup.lkml index d8ca2c6c6..92986a1da 100644 --- a/review_checker/datagroups/review_checker_events_v1_last_updated.datagroup.lkml +++ b/review_checker/datagroups/review_checker_events_v1_last_updated.datagroup.lkml @@ -6,11 +6,11 @@ # Using a datagroup in a derived table: https://cloud.google.com/looker/docs/reference/param-view-datagroup-trigger datagroup: review_checker_events_v1_last_updated { - label: "Review checker events data Last Updated" + label: "Fenix review checker events data 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 = 'firefox_desktop_derived' + WHERE table_schema = 'org_mozilla_fenix_derived' AND table_name = 'review_checker_events_v1' ;; - description: "Updates when moz-fx-data-shared-prod:firefox_desktop_derived.review_checker_events_v1 is modified." + description: "Updates when moz-fx-data-shared-prod:org_mozilla_fenix_derived.review_checker_events_v1 is modified." max_cache_age: "24 hours" } \ No newline at end of file diff --git a/subscription_platform/views/stripe_subscriptions.view.lkml b/subscription_platform/views/stripe_subscriptions.view.lkml index 4bec37327..4ecc48060 100644 --- a/subscription_platform/views/stripe_subscriptions.view.lkml +++ b/subscription_platform/views/stripe_subscriptions.view.lkml @@ -8,13 +8,11 @@ view: stripe_subscriptions { dimension: cancel_at_period_end { sql: ${TABLE}.cancel_at_period_end ;; type: yesno - description: "If the subscription has been canceled with the `at_period_end` flag set to true, `cancel_at_period_end` on the subscription will be true. You can use this attribute to determine whether a subscription that has a status of \"active\" is scheduled to be canceled at the end of the current period." } dimension: collection_method { sql: ${TABLE}.collection_method ;; type: string - description: "Either \"charge_automatically\", or \"send_invoice\". When charging automatically, Stripe will attempt to pay this subscription at the end of the cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions and mark the subscription as active." } dimension: customer__address__country { @@ -22,7 +20,6 @@ view: stripe_subscriptions { type: string group_label: "Customer Address" group_item_label: "Country" - description: "Two-letter country code (ISO 3166-1 alpha-2)." } dimension: customer__default_source_id { @@ -30,8 +27,6 @@ view: stripe_subscriptions { type: string group_label: "Customer" group_item_label: "Default Source Id" - description: "ID of the default payment source for the customer. -This isn't available for customers that were deleted before the initial Fivetran Stripe sync." } dimension: customer__discount__coupon__amount_off { @@ -39,7 +34,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: number group_label: "Customer Discount Coupon" group_item_label: "Amount Off" - description: "Amount (in the `currency` specified) that will be taken off the subtotal of any invoices for this customer." } dimension: customer__discount__coupon__currency { @@ -47,7 +41,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount Coupon" group_item_label: "Currency" - description: "If `amount_off` has been set, the three-letter ISO code for the currency of the amount to take off." } dimension: customer__discount__coupon__duration { @@ -55,10 +48,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount Coupon" group_item_label: "Duration" - description: "One of \"forever\", \"once\", and \"repeating\". Describes how long a customer who applies this coupon will get the discount. -\"forever\" applies to all charges from a subscription with this coupon applied. -\"once\" applies to the first charge from a subscription with this coupon applied. -\"repeating\" applies to charges in the first `duration_in_months` months from a subscription with this coupon applied." } dimension: customer__discount__coupon__duration_in_months { @@ -66,7 +55,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: number group_label: "Customer Discount Coupon" group_item_label: "Duration In Months" - description: "If `duration` is \"repeating\", the number of months the coupon applies. Null if coupon `duration` is \"forever\" or \"once\"." } dimension: customer__discount__coupon__id { @@ -74,13 +62,11 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount Coupon" group_item_label: "Id" - description: "Coupon ID." } dimension: customer__discount__coupon__metadata { sql: ${TABLE}.customer.discount.coupon.metadata ;; hidden: yes - description: "Set of key-value pairs attached to the coupon, stored as a JSON object." } dimension: customer__discount__coupon__name { @@ -88,7 +74,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount Coupon" group_item_label: "Name" - description: "Name of the coupon displayed to customers on invoices or receipts." } dimension: customer__discount__coupon__percent_off { @@ -96,7 +81,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: number group_label: "Customer Discount Coupon" group_item_label: "Percent Off" - description: "Percent that will be taken off the subtotal of any invoices for this customer for the duration of the coupon. For example, a coupon with `percent_off` of 50 will make a $100 invoice $50 instead." } dimension: customer__discount__id { @@ -104,7 +88,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount" group_item_label: "Id" - description: "Discount ID." } dimension: customer__discount__invoice_id { @@ -112,7 +95,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount" group_item_label: "Invoice Id" - description: "ID of the invoice that the discount's coupon was applied to, if it was applied directly to a particular invoice." } dimension: customer__discount__invoice_item_id { @@ -120,7 +102,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount" group_item_label: "Invoice Item Id" - description: "ID of the invoice item (or invoice line item for invoice line items of `type` = \"subscription\") that the discount's coupon was applied to, if it was applied directly to a particular invoice item or invoice line item." } dimension: customer__discount__promotion_code_id { @@ -128,7 +109,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount" group_item_label: "Promotion Code Id" - description: "ID of the promotion code applied to create this discount." } dimension: customer__discount__subscription_id { @@ -136,7 +116,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Discount" group_item_label: "Subscription Id" - description: "ID of the subscription that this coupon is applied to, if it is applied to a particular subscription." } dimension: customer__id { @@ -144,7 +123,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer" group_item_label: "Id" - description: "Customer ID." } dimension: customer__is_deleted { @@ -152,7 +130,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: yesno group_label: "Customer" group_item_label: "Is Deleted" - description: "Whether the customer is deleted." } dimension: customer__metadata__paypalAgreementId { @@ -160,7 +137,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Metadata" group_item_label: "Paypalagreementid" - description: "The customer's PayPal agreement ID (if any)." } dimension: customer__metadata__userid { @@ -168,8 +144,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Metadata" group_item_label: "Userid" - description: "The customer's Firefox Account user ID. -This isn't available for customers that were deleted before the initial Fivetran Stripe sync." } dimension: customer__metadata__userid_sha256 { @@ -177,7 +151,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Metadata" group_item_label: "Userid Sha256" - description: "SHA256 hash of the customer's Firefox Account user ID." } dimension: customer__shipping__address__country { @@ -185,7 +158,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer Shipping Address" group_item_label: "Country" - description: "Two-letter country code (ISO 3166-1 alpha-2)." } dimension: customer__tax_exempt { @@ -193,32 +165,26 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Customer" group_item_label: "Tax Exempt" - description: "The customer's tax exemption status. One of \"none\", \"exempt\", or \"reverse\". -This isn't available for customers that were deleted before the initial Fivetran Stripe sync." } dimension: days_until_due { sql: ${TABLE}.days_until_due ;; type: number - description: "Number of days a customer has to pay invoices generated by this subscription. This value will be null for subscriptions where `collection_method` = \"charge_automatically\"." } dimension: default_payment_method_id { sql: ${TABLE}.default_payment_method_id ;; type: string - description: "ID of the default payment method for the subscription. It must belong to the customer associated with the subscription. This takes precedence over `default_source_id`. If neither are set, invoices will use the customer's `invoice_settings.default_payment_method` or `default_source`." } dimension: default_source_id { sql: ${TABLE}.default_source_id ;; type: string - description: "ID of the default payment source for the subscription. It must belong to the customer associated with the subscription and be in a chargeable state. If `default_payment_method` is also set, `default_payment_method` will take precedence. If neither are set, invoices will use the customer's `invoice_settings.default_payment_method` or `default_source`." } dimension: default_tax_rates { sql: ${TABLE}.default_tax_rates ;; hidden: yes - description: "The tax rates that will apply to any subscription item that does not have `tax_rates` set. Invoices created will have their `default_tax_rates` populated from the subscription." } dimension: discount__coupon__amount_off { @@ -226,7 +192,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: number group_label: "Discount Coupon" group_item_label: "Amount Off" - description: "Amount (in the `currency` specified) that will be taken off the subtotal of any invoices for this customer." } dimension: discount__coupon__currency { @@ -234,7 +199,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount Coupon" group_item_label: "Currency" - description: "If `amount_off` has been set, the three-letter ISO code for the currency of the amount to take off." } dimension: discount__coupon__duration { @@ -242,10 +206,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount Coupon" group_item_label: "Duration" - description: "One of \"forever\", \"once\", and \"repeating\". Describes how long a customer who applies this coupon will get the discount. -\"forever\" applies to all charges from a subscription with this coupon applied. -\"once\" applies to the first charge from a subscription with this coupon applied. -\"repeating\" applies to charges in the first `duration_in_months` months from a subscription with this coupon applied." } dimension: discount__coupon__duration_in_months { @@ -253,7 +213,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: number group_label: "Discount Coupon" group_item_label: "Duration In Months" - description: "If `duration` is \"repeating\", the number of months the coupon applies. Null if coupon `duration` is \"forever\" or \"once\"." } dimension: discount__coupon__id { @@ -261,13 +220,11 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount Coupon" group_item_label: "Id" - description: "Coupon ID." } dimension: discount__coupon__metadata { sql: ${TABLE}.discount.coupon.metadata ;; hidden: yes - description: "Set of key-value pairs attached to the coupon, stored as a JSON object." } dimension: discount__coupon__name { @@ -275,7 +232,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount Coupon" group_item_label: "Name" - description: "Name of the coupon displayed to customers on invoices or receipts." } dimension: discount__coupon__percent_off { @@ -283,7 +239,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: number group_label: "Discount Coupon" group_item_label: "Percent Off" - description: "Percent that will be taken off the subtotal of any invoices for this customer for the duration of the coupon. For example, a coupon with `percent_off` of 50 will make a $100 invoice $50 instead." } dimension: discount__id { @@ -291,7 +246,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount" group_item_label: "Id" - description: "Discount ID." } dimension: discount__invoice_id { @@ -299,7 +253,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount" group_item_label: "Invoice Id" - description: "ID of the invoice that the discount's coupon was applied to, if it was applied directly to a particular invoice." } dimension: discount__invoice_item_id { @@ -307,7 +260,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount" group_item_label: "Invoice Item Id" - description: "ID of the invoice item (or invoice line item for invoice line items of `type` = \"subscription\") that the discount's coupon was applied to, if it was applied directly to a particular invoice item or invoice line item." } dimension: discount__promotion_code_id { @@ -315,25 +267,21 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Discount" group_item_label: "Promotion Code Id" - description: "ID of the promotion code applied to create this discount." } dimension: id { sql: ${TABLE}.id ;; type: string - description: "Subscription ID." } dimension: items { sql: ${TABLE}.items ;; hidden: yes - description: "List of subscription items, each with an attached plan." } dimension: latest_invoice_id { sql: ${TABLE}.latest_invoice_id ;; type: string - description: "ID of the most recent invoice this subscription has generated." } dimension: metadata__appliedPromotionCode { @@ -341,7 +289,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Metadata" group_item_label: "Appliedpromotioncode" - description: "Promotion code applied to the subscription (if any)." } dimension: metadata__cancellation_reason { @@ -349,7 +296,6 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Metadata" group_item_label: "Cancellation Reason" - description: "Reason the subscription was canceled (if any)." } dimension: metadata__previous_plan_id { @@ -357,23 +303,16 @@ This isn't available for customers that were deleted before the initial Fivetran type: string group_label: "Metadata" group_item_label: "Previous Plan Id" - description: "ID of the previous plan the customer was subscribed to via this subscription (if any)." } dimension: pending_setup_intent_id { sql: ${TABLE}.pending_setup_intent_id ;; type: string - description: "ID of a setup intent to collect user authentication when creating a subscription without immediate payment or updating a subscription's payment method." } dimension: status { sql: ${TABLE}.status ;; type: string - description: "Possible values are \"incomplete\", \"incomplete_expired\", \"trialing\", \"active\", \"past_due\", \"canceled\", \"unpaid\", or \"paused\". -For `collection_method` = \"charge_automatically\" a subscription moves into \"incomplete\" if the initial payment attempt fails. Once the first invoice is paid, the subscription moves into an \"active\" state. If the first invoice is not paid within 23 hours, the subscription transitions to \"incomplete_expired\". -A subscription that is currently in a trial period is \"trialing\" and moves to \"active\" when the trial period is over. -If subscription `collection_method` = \"charge_automatically\" it becomes \"past_due\" when payment to renew it fails and \"canceled\" or \"unpaid\" (depending on your subscriptions settings) when Stripe has exhausted all payment retry attempts. -If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" when its invoice is not paid by the due date, and \"canceled\" or \"unpaid\" if it is still not paid by an additional deadline after that." } dimension_group: billing_cycle_anchor { @@ -388,7 +327,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w quarter, year, ] - description: "The time of the first full invoice, and, for plans with month or year intervals, the day of the month for subsequent invoices." } dimension_group: cancel_at { @@ -403,7 +341,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w quarter, year, ] - description: "A time in the future at which the subscription will automatically get canceled." } dimension_group: canceled_at { @@ -418,7 +355,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w quarter, year, ] - description: "If the subscription has been canceled, the time at which it was canceled. If the subscription was canceled with `cancel_at_period_end`, `canceled_at` will reflect the time of the most recent update request, not the end of the subscription period when the subscription is automatically moved to a canceled state." } dimension_group: created { @@ -433,7 +369,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w quarter, year, ] - description: "Time at which the subscription was created." } dimension_group: current_period_end { @@ -448,7 +383,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w quarter, year, ] - description: "End time of the current period that the subscription has been invoiced for. At the end of this period, a new invoice will be created." } dimension_group: current_period_start { @@ -463,7 +397,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w quarter, year, ] - description: "Start time of the current period that the subscription has been invoiced for." } dimension_group: customer__created { @@ -479,7 +412,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w year, ] label: "Customer: Created" - description: "Time at which the customer was created." } dimension_group: customer__discount__coupon__created { @@ -495,7 +427,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w year, ] label: "Customer Discount Coupon: Created" - description: "Time at which the coupon was created." } dimension_group: customer__discount__coupon__redeem_by { @@ -511,7 +442,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w year, ] label: "Customer Discount Coupon: Redeem By" - description: "Time after which the coupon can no longer be redeemed." } dimension_group: customer__discount__end { @@ -527,7 +457,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w year, ] label: "Customer Discount: End" - description: "If the coupon has a duration of \"repeating\", the time that this discount will end. If the coupon has a duration of \"once\" or \"forever\", this attribute will be null." } dimension_group: customer__discount__start { @@ -543,7 +472,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w year, ] label: "Customer Discount: Start" - description: "Time at which the coupon was applied." } dimension_group: customer__metadata__geoip { @@ -559,8 +487,6 @@ If subscription `collection_method` = \"send_invoice\" it becomes \"past_due\" w year, ] label: "Customer Metadata: Geoip Date" - description: "Time at which IP address-based geo-location was done for the customer. -This isn't available for customers that were deleted before the initial Fivetran Stripe sync." } dimension_group: discount__coupon__created { @@ -576,7 +502,6 @@ This isn't available for customers that were deleted before the initial Fivetran year, ] label: "Discount Coupon: Created" - description: "Time at which the coupon was created." } dimension_group: discount__coupon__redeem_by { @@ -592,7 +517,6 @@ This isn't available for customers that were deleted before the initial Fivetran year, ] label: "Discount Coupon: Redeem By" - description: "Time after which the coupon can no longer be redeemed." } dimension_group: discount__end { @@ -608,7 +532,6 @@ This isn't available for customers that were deleted before the initial Fivetran year, ] label: "Discount: End" - description: "If the coupon has a duration of \"repeating\", the time that this discount will end. If the coupon has a duration of \"once\" or \"forever\", this attribute will be null." } dimension_group: discount__start { @@ -624,7 +547,6 @@ This isn't available for customers that were deleted before the initial Fivetran year, ] label: "Discount: Start" - description: "Time at which the coupon was applied." } dimension_group: ended_at { @@ -639,7 +561,6 @@ This isn't available for customers that were deleted before the initial Fivetran quarter, year, ] - description: "If the subscription has ended, the time at which the subscription ended." } dimension_group: metadata__cancelled_for_customer_at { @@ -655,7 +576,6 @@ This isn't available for customers that were deleted before the initial Fivetran year, ] label: "Metadata: Cancelled For Customer At" - description: "When the customer canceled the subscription, if they've done so." } dimension_group: metadata__plan_change { @@ -671,7 +591,6 @@ This isn't available for customers that were deleted before the initial Fivetran year, ] label: "Metadata: Plan Change Date" - description: "The most recent time when the subscription plan was changed (if any)." } dimension_group: start { @@ -686,7 +605,6 @@ This isn't available for customers that were deleted before the initial Fivetran quarter, year, ] - description: "Start time of the subscription. This might differ from `created` due to backdating." } dimension_group: trial_end { @@ -701,7 +619,6 @@ This isn't available for customers that were deleted before the initial Fivetran quarter, year, ] - description: "If the subscription has a trial, the end time of that trial." } dimension_group: trial_start { @@ -716,7 +633,6 @@ This isn't available for customers that were deleted before the initial Fivetran quarter, year, ] - description: "If the subscription has a trial, the start time of that trial." } sql_table_name: `moz-fx-data-shared-prod.subscription_platform_derived.stripe_subscriptions_v2` ;; @@ -726,43 +642,36 @@ view: stripe_subscriptions__default_tax_rates { dimension: description { sql: ${TABLE}.description ;; type: string - description: "An arbitrary description of the tax rate for your internal use only. It will not be visible to your customers." } dimension: display_name { sql: ${TABLE}.display_name ;; type: string - description: "The display name of the tax rate as it will appear to your customer on their receipt email, PDF, and the hosted invoice page." } dimension: id { sql: ${TABLE}.id ;; type: string - description: "Tax rate ID." } dimension: inclusive { sql: ${TABLE}.inclusive ;; type: yesno - description: "Whether the tax rate is inclusive." } dimension: jurisdiction { sql: ${TABLE}.jurisdiction ;; type: string - description: "The jurisdiction for the tax rate. You can use this label field for tax reporting purposes. It also appears on your customer's invoice." } dimension: metadata { sql: ${TABLE}.metadata ;; hidden: yes - description: "Set of key-value pairs attached to the tax rate, stored as a JSON object." } dimension: percentage { sql: ${TABLE}.percentage ;; type: number - description: "Tax rate percentage out of 100. For tax calculations with `automatic_tax[enabled]=true`, this percentage includes the statutory tax rate of non-taxable jurisdictions." } } @@ -770,13 +679,11 @@ view: stripe_subscriptions__items { dimension: id { sql: ${TABLE}.id ;; type: string - description: "Subscription item ID." } dimension: metadata { sql: ${TABLE}.metadata ;; hidden: yes - description: "Set of key-value pairs attached to the subscription item, stored as a JSON object." } dimension: plan__aggregate_usage { @@ -784,7 +691,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Aggregate Usage" - description: "Specifies a usage aggregation strategy for plans of `usage_type` = \"metered\". Allowed values are \"sum\" for summing up all usage during a period, \"last_during_period\" for using the last usage record reported within a period, \"last_ever\" for using the last usage record ever (across period bounds) or \"max\" which uses the usage record with the maximum reported usage during a period." } dimension: plan__amount { @@ -792,7 +698,6 @@ view: stripe_subscriptions__items { type: number group_label: "Plan" group_item_label: "Amount" - description: "The unit amount in cents to be charged, represented as a whole integer if possible. Only set if `billing_scheme` = \"per_unit\"." } dimension: plan__billing_scheme { @@ -800,7 +705,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Billing Scheme" - description: "Describes how to compute the price per period. Either \"per_unit\" or \"tiered\". \"per_unit\" indicates that the fixed amount (specified in `amount`) will be charged per unit in `quantity` (for plans with `usage_type` = \"licensed\"), or per unit of total usage (for plans with `usage_type` = \"metered\"). \"tiered\" indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes." } dimension: plan__currency { @@ -808,7 +712,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Currency" - description: "Three-letter ISO currency code, in lowercase." } dimension: plan__id { @@ -816,7 +719,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Id" - description: "Plan ID." } dimension: plan__interval { @@ -824,7 +726,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Interval" - description: "The frequency at which a subscription is billed. One of \"day\", \"week\", \"month\" or \"year\"." } dimension: plan__interval_count { @@ -832,13 +733,11 @@ view: stripe_subscriptions__items { type: number group_label: "Plan" group_item_label: "Interval Count" - description: "The number of intervals (specified in the `interval` attribute) between subscription billings." } dimension: plan__metadata { sql: ${TABLE}.plan.metadata ;; hidden: yes - description: "Set of key-value pairs attached to the plan, stored as a JSON object." } dimension: plan__nickname { @@ -846,7 +745,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Nickname" - description: "A brief description of the plan, hidden from customers." } dimension: plan__product__description { @@ -854,7 +752,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan Product" group_item_label: "Description" - description: "The product's description, meant to be displayable to the customer." } dimension: plan__product__id { @@ -862,13 +759,11 @@ view: stripe_subscriptions__items { type: string group_label: "Plan Product" group_item_label: "Id" - description: "Product ID." } dimension: plan__product__metadata { sql: ${TABLE}.plan.product.metadata ;; hidden: yes - description: "Set of key-value pairs attached to the product, stored as a JSON object." } dimension: plan__product__name { @@ -876,7 +771,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan Product" group_item_label: "Name" - description: "The product's name, meant to be displayable to the customer." } dimension: plan__product__statement_descriptor { @@ -884,7 +778,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan Product" group_item_label: "Statement Descriptor" - description: "Extra information about a product which will appear on your customer's credit card statement." } dimension: plan__tiers_mode { @@ -892,7 +785,6 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Tiers Mode" - description: "Defines if the tiering price should be \"graduated\" or \"volume\". In volume-based tiering, the maximum quantity within a period determines the per unit price. In graduated tiering, pricing can change as the quantity grows." } dimension: plan__trial_period_days { @@ -900,7 +792,6 @@ view: stripe_subscriptions__items { type: number group_label: "Plan" group_item_label: "Trial Period Days" - description: "Default number of trial days when subscribing a customer to this plan using `trial_from_plan=true`." } dimension: plan__usage_type { @@ -908,12 +799,10 @@ view: stripe_subscriptions__items { type: string group_label: "Plan" group_item_label: "Usage Type" - description: "Configures how the quantity per period should be determined. Can be either \"metered\" or \"licensed\". \"licensed\" automatically bills the quantity set when adding it to a subscription. \"metered\" aggregates the total usage based on usage records." } dimension: quantity { sql: ${TABLE}.quantity ;; type: number - description: "The quantity of the plan to which the customer should be subscribed." } } \ No newline at end of file