Auto-push from LookML generation

This commit is contained in:
Generated LookML Creator 2022-06-21 03:41:36 +00:00
Родитель a773c75d5e
Коммит 00e84ac71c
44 изменённых файлов: 4566 добавлений и 4167 удалений

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

@ -213,6 +213,11 @@ explore: metrics {
relationship: one_to_many
sql: LEFT JOIN UNNEST(${metrics.metrics__labeled_counter__top_sites_pressed_tile_origin}) AS metrics__metrics__labeled_counter__top_sites_pressed_tile_origin ON ${metrics.document_id} = ${metrics__metrics__labeled_counter__top_sites_pressed_tile_origin.document_id} ;;
}
join: metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper {
relationship: one_to_many
sql: LEFT JOIN UNNEST(${metrics.metrics__labeled_counter__wallpaper_analytics_themed_wallpaper}) AS metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper ON ${metrics.document_id} = ${metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper.document_id} ;;
}
}
explore: suggest__metrics__metrics__labeled_counter__bookmarks_add {
@ -369,4 +374,8 @@ explore: suggest__metrics__metrics__labeled_counter__top_site_pressed_tile_origi
explore: suggest__metrics__metrics__labeled_counter__top_sites_pressed_tile_origin {
hidden: yes
}
explore: suggest__metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper {
hidden: yes
}

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

@ -7916,6 +7916,49 @@ view: metrics__metrics__labeled_counter__top_sites_pressed_tile_origin {
}
}
view: metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper {
label: "Wallpaper Analytics - Themed Wallpaper"
dimension: document_id {
type: string
sql: ${metrics.document_id} ;;
hidden: yes
}
dimension: document_label_id {
type: string
sql: ${metrics.document_id}-${label} ;;
primary_key: yes
hidden: yes
}
dimension: label {
type: string
sql: ${TABLE}.key ;;
suggest_explore: suggest__metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper
suggest_dimension: suggest__metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper.key
hidden: no
}
dimension: value {
type: number
sql: ${TABLE}.value ;;
hidden: yes
}
measure: count {
type: sum
sql: ${value} ;;
hidden: no
}
measure: client_count {
type: count_distinct
sql: case when ${value} > 0 then ${metrics.client_info__client_id} end ;;
hidden: no
}
}
view: suggest__metrics__metrics__labeled_counter__bookmarks_add {
derived_table: {
sql: select
@ -8651,6 +8694,25 @@ group by key
order by n desc ;;
}
dimension: key {
type: string
sql: ${TABLE}.key ;;
}
}
view: suggest__metrics__metrics__labeled_counter__wallpaper_analytics_themed_wallpaper {
derived_table: {
sql: select
m.key,
count(*) as n
from mozdata.firefox_ios.metrics as t,
unnest(metrics.labeled_counter.wallpaper_analytics_themed_wallpaper) as m
where date(submission_timestamp) > date_sub(current_date, interval 30 day)
and sample_id = 0
group by key
order by n desc ;;
}
dimension: key {
type: string
sql: ${TABLE}.key ;;

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

@ -253,6 +253,48 @@ that programmatically redirect to a new location.
"
}
dimension: metrics__boolean__metrics_start_reason_activity_error {
label: "Metrics Start Reason Activity Error"
hidden: no
sql: ${TABLE}.metrics.boolean.metrics_start_reason_activity_error ;;
type: yesno
group_label: "Metrics"
group_item_label: "Start Reason Activity Error"
link: {
label: "Glean Dictionary reference for Metrics Start Reason Activity Error"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/metrics_start_reason_activity_error"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "The `AppStartReasonProvider.ActivityLifecycleCallbacks.onActivityCreated`
was unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__metrics_start_reason_process_error {
label: "Metrics Start Reason Process Error"
hidden: no
sql: ${TABLE}.metrics.boolean.metrics_start_reason_process_error ;;
type: yesno
group_label: "Metrics"
group_item_label: "Start Reason Process Error"
link: {
label: "Glean Dictionary reference for Metrics Start Reason Process Error"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/metrics_start_reason_process_error"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "The `AppStartReasonProvider.ProcessLifecycleObserver.onCreate` was
unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__mozilla_products_has_fenix_installed {
label: "Mozilla Products Has Fenix Installed"
hidden: no
@ -307,6 +349,70 @@ that programmatically redirect to a new location.
"
}
dimension: metrics__labeled_counter__perf_startup_startup_type {
label: "Perf Startup Startup Type"
hidden: yes
sql: ${TABLE}.metrics.labeled_counter.perf_startup_startup_type ;;
group_label: "Perf Startup"
group_item_label: "Startup Type"
link: {
label: "Glean Dictionary reference for Perf Startup Startup Type"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/perf_startup_startup_type"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Indicates how the browser was started. The label is divided into two
variables. `state` is how cached the browser is when started. `path` is
what code path we are expected to take. Together, they create a combined
label: `state_path`. For brevity, the specific states are documented in
the [Fenix perf
glossary](https://wiki.mozilla.org/index.php?title=Performance/Fenix/Glossary).
<br><br>
This implementation is intended to be simple, not comprehensive. We list
the implications below.
<br><br>
These ways of opening the app undesirably adds events to our primary
buckets (non-`unknown` cases):
<br>- App switcher cold/warm: `cold/warm_` + duplicates path from
previous launch
<br>- An Intent is sent internally that's uses `ACTION_MAIN` or
`ACTION_VIEW` could be: `*_main/view` (unknown if this ever happens)
<br>- A command-line launch uses `ACTION_MAIN` or `ACTION_VIEW` could be:
`*_main/view`
<br><br>
These ways of opening the app undesirably do not add their events to our
primary buckets:
<br>- Close and reopen the app very quickly: no event is recorded.
<br><br>
These ways of opening the app don't affect our primary buckets:
<br>- App switcher hot: `hot_unknown`
<br>- PWA (all states): `unknown_unknown`
<br>- Custom tab: `unknown_view`
<br>- Cold start where a service or other non-activity starts the process
(not manually tested) - this seems to happen if you have the homescreen
widget: `unknown_*`
<br>- Another activity is drawn before MainActivity or CustomTabActivity
(e.g. widget voice
search): `unknown_*`
<br>
In addition to the events above, the `unknown` state may be chosen when we
were unable to determine a cause due to implementation details or the API
was used incorrectly. We may be able to record the events listed above
into different buckets but we kept the implementation simple for now.
<br><br>
N.B.: for implementation simplicity, we duplicate the logic in app that
determines `path` so it's not perfectly accurate. In one way, we record we
is intended to happen rather than what actually happened (e.g. the user
may click a link so we record VIEW but the app does a MAIN by going to the
homescreen because the link was invalid).
"
}
dimension: metrics__string__preferences_user_theme {
label: "Preferences User Theme"
hidden: no

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

@ -357,6 +357,30 @@ To be used to validate GIFFT.
description: "Set to true if the tasks that are queued prior to Glean initialization time out."
}
dimension: metrics__boolean__metrics_start_reason_activity_error {
sql: ${TABLE}.metrics.boolean.metrics_start_reason_activity_error ;;
type: yesno
group_label: "Metrics Boolean"
group_item_label: "Metrics Start Reason Activity Error"
description: "The `AppStartReasonProvider.ActivityLifecycleCallbacks.onActivityCreated`
was unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__metrics_start_reason_process_error {
sql: ${TABLE}.metrics.boolean.metrics_start_reason_process_error ;;
type: yesno
group_label: "Metrics Boolean"
group_item_label: "Metrics Start Reason Process Error"
description: "The `AppStartReasonProvider.ProcessLifecycleObserver.onCreate` was
unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__mozilla_products_has_fenix_installed {
sql: ${TABLE}.metrics.boolean.mozilla_products_has_fenix_installed ;;
type: yesno
@ -838,6 +862,35 @@ This metric appears in both the metrics and baseline pings.
"
}
dimension: metrics__labeled_counter__perf_startup_startup_type {
sql: ${TABLE}.metrics.labeled_counter.perf_startup_startup_type ;;
hidden: yes
description: "Indicates how the browser was started. The label is divided into two
variables. `state` is how cached the browser is when started. `path` is
what code path we are expected to take. Together, they create a combined
label: `state_path`. For brevity, the specific states are documented in
the [Fenix perf
glossary](https://wiki.mozilla.org/index.php?title=Performance/Fenix/Glossary).
<br><br>
This implementation is intended to be simple, not comprehensive. We list
the implications below.
<br><br>
These ways of opening the app undesirably adds events to our primary
buckets (non-`unknown` cases):
<br>- App switcher cold/warm: `cold/warm_` + duplicates path from
previous launch
<br>- An Intent is sent internally that's uses `ACTION_MAIN` or
`ACTION_VIEW` could be: `*_main/view` (unknown if this ever happens)
<br>- A command-line launch uses `ACTION_MAIN` or `ACTION_VIEW` could be:
`*_main/view`
<br><br>
These ways of opening the app undesirably do not add their events to our
primary buckets:
<br>- Close and reopen "
}
dimension: metrics__labeled_counter__power_cpu_ms_per_thread_content_background {
sql: ${TABLE}.metrics.labeled_counter.power_cpu_ms_per_thread_content_background ;;
hidden: yes

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

@ -253,6 +253,48 @@ that programmatically redirect to a new location.
"
}
dimension: metrics__boolean__metrics_start_reason_activity_error {
label: "Metrics Start Reason Activity Error"
hidden: no
sql: ${TABLE}.metrics.boolean.metrics_start_reason_activity_error ;;
type: yesno
group_label: "Metrics"
group_item_label: "Start Reason Activity Error"
link: {
label: "Glean Dictionary reference for Metrics Start Reason Activity Error"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/metrics_start_reason_activity_error"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "The `AppStartReasonProvider.ActivityLifecycleCallbacks.onActivityCreated`
was unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__metrics_start_reason_process_error {
label: "Metrics Start Reason Process Error"
hidden: no
sql: ${TABLE}.metrics.boolean.metrics_start_reason_process_error ;;
type: yesno
group_label: "Metrics"
group_item_label: "Start Reason Process Error"
link: {
label: "Glean Dictionary reference for Metrics Start Reason Process Error"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/metrics_start_reason_process_error"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "The `AppStartReasonProvider.ProcessLifecycleObserver.onCreate` was
unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__mozilla_products_has_fenix_installed {
label: "Mozilla Products Has Fenix Installed"
hidden: no
@ -307,6 +349,70 @@ that programmatically redirect to a new location.
"
}
dimension: metrics__labeled_counter__perf_startup_startup_type {
label: "Perf Startup Startup Type"
hidden: yes
sql: ${TABLE}.metrics.labeled_counter.perf_startup_startup_type ;;
group_label: "Perf Startup"
group_item_label: "Startup Type"
link: {
label: "Glean Dictionary reference for Perf Startup Startup Type"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/perf_startup_startup_type"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Indicates how the browser was started. The label is divided into two
variables. `state` is how cached the browser is when started. `path` is
what code path we are expected to take. Together, they create a combined
label: `state_path`. For brevity, the specific states are documented in
the [Fenix perf
glossary](https://wiki.mozilla.org/index.php?title=Performance/Fenix/Glossary).
<br><br>
This implementation is intended to be simple, not comprehensive. We list
the implications below.
<br><br>
These ways of opening the app undesirably adds events to our primary
buckets (non-`unknown` cases):
<br>- App switcher cold/warm: `cold/warm_` + duplicates path from
previous launch
<br>- An Intent is sent internally that's uses `ACTION_MAIN` or
`ACTION_VIEW` could be: `*_main/view` (unknown if this ever happens)
<br>- A command-line launch uses `ACTION_MAIN` or `ACTION_VIEW` could be:
`*_main/view`
<br><br>
These ways of opening the app undesirably do not add their events to our
primary buckets:
<br>- Close and reopen the app very quickly: no event is recorded.
<br><br>
These ways of opening the app don't affect our primary buckets:
<br>- App switcher hot: `hot_unknown`
<br>- PWA (all states): `unknown_unknown`
<br>- Custom tab: `unknown_view`
<br>- Cold start where a service or other non-activity starts the process
(not manually tested) - this seems to happen if you have the homescreen
widget: `unknown_*`
<br>- Another activity is drawn before MainActivity or CustomTabActivity
(e.g. widget voice
search): `unknown_*`
<br>
In addition to the events above, the `unknown` state may be chosen when we
were unable to determine a cause due to implementation details or the API
was used incorrectly. We may be able to record the events listed above
into different buckets but we kept the implementation simple for now.
<br><br>
N.B.: for implementation simplicity, we duplicate the logic in app that
determines `path` so it's not perfectly accurate. In one way, we record we
is intended to happen rather than what actually happened (e.g. the user
may click a link so we record VIEW but the app does a MAIN by going to the
homescreen because the link was invalid).
"
}
dimension: metrics__string__preferences_user_theme {
label: "Preferences User Theme"
hidden: no

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

@ -357,6 +357,30 @@ To be used to validate GIFFT.
description: "Set to true if the tasks that are queued prior to Glean initialization time out."
}
dimension: metrics__boolean__metrics_start_reason_activity_error {
sql: ${TABLE}.metrics.boolean.metrics_start_reason_activity_error ;;
type: yesno
group_label: "Metrics Boolean"
group_item_label: "Metrics Start Reason Activity Error"
description: "The `AppStartReasonProvider.ActivityLifecycleCallbacks.onActivityCreated`
was unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__metrics_start_reason_process_error {
sql: ${TABLE}.metrics.boolean.metrics_start_reason_process_error ;;
type: yesno
group_label: "Metrics Boolean"
group_item_label: "Metrics Start Reason Process Error"
description: "The `AppStartReasonProvider.ProcessLifecycleObserver.onCreate` was
unexpectedly called twice. We can use this metric to validate our
assumptions about how these APIs are called. This probe can be removed
once we validate these assumptions.
"
}
dimension: metrics__boolean__mozilla_products_has_fenix_installed {
sql: ${TABLE}.metrics.boolean.mozilla_products_has_fenix_installed ;;
type: yesno
@ -838,6 +862,35 @@ This metric appears in both the metrics and baseline pings.
"
}
dimension: metrics__labeled_counter__perf_startup_startup_type {
sql: ${TABLE}.metrics.labeled_counter.perf_startup_startup_type ;;
hidden: yes
description: "Indicates how the browser was started. The label is divided into two
variables. `state` is how cached the browser is when started. `path` is
what code path we are expected to take. Together, they create a combined
label: `state_path`. For brevity, the specific states are documented in
the [Fenix perf
glossary](https://wiki.mozilla.org/index.php?title=Performance/Fenix/Glossary).
<br><br>
This implementation is intended to be simple, not comprehensive. We list
the implications below.
<br><br>
These ways of opening the app undesirably adds events to our primary
buckets (non-`unknown` cases):
<br>- App switcher cold/warm: `cold/warm_` + duplicates path from
previous launch
<br>- An Intent is sent internally that's uses `ACTION_MAIN` or
`ACTION_VIEW` could be: `*_main/view` (unknown if this ever happens)
<br>- A command-line launch uses `ACTION_MAIN` or `ACTION_VIEW` could be:
`*_main/view`
<br><br>
These ways of opening the app undesirably do not add their events to our
primary buckets:
<br>- Close and reopen "
}
dimension: metrics__labeled_counter__power_cpu_ms_per_thread_content_background {
sql: ${TABLE}.metrics.labeled_counter.power_cpu_ms_per_thread_content_background ;;
hidden: yes

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

@ -2513,6 +2513,16 @@ mozilla_vpn:
- channel: release
table: mozdata.mozilla_vpn.waitlist
type: table_view
mozilla_vpn_android:
explores: {}
glean_app: true
owners:
- vpn@mozilla.com
- amarchesini@mozilla.com
- brizental@mozilla.com
pretty_name: Mozilla VPN (Android)
spoke: looker-spoke-default
views: {}
mozilla_vpn_private:
connection: bigquery-oauth
glean_app: false
@ -3202,9 +3212,9 @@ operational_monitoring:
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram
xaxis: submission_date
- branches: *id031
@ -3213,13 +3223,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
xaxis: submission_date
@ -3266,9 +3276,9 @@ operational_monitoring:
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram
xaxis: submission_date
- branches: *id035
@ -3277,13 +3287,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
xaxis: submission_date
@ -3420,9 +3430,9 @@ operational_monitoring:
explore: firefox_suggest_by_merino_nightly_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.firefox_suggest_by_merino_nightly_histogram
xaxis: submission_date
- branches: *id045
@ -3431,13 +3441,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.firefox_suggest_by_merino_nightly_scalar
xaxis: submission_date
@ -3470,8 +3480,8 @@ operational_monitoring:
explore: mission_control_desktop_nightly_histogram
group_by_dimension: build
probes:
- fx_tab_switch_composite_e10s_ms
- gc_ms
- fx_tab_switch_composite_e10s_ms
- content_process_count
table: moz-fx-data-shared-prod.operational_monitoring.mission_control_desktop_nightly_histogram
xaxis: submission_date
@ -3481,13 +3491,13 @@ operational_monitoring:
group_by_dimension: build
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.mission_control_desktop_nightly_scalar
xaxis: submission_date
@ -3502,9 +3512,9 @@ operational_monitoring:
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram
xaxis: submission_date
- branches: *id049
@ -3513,13 +3523,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
xaxis: submission_date
@ -3534,9 +3544,9 @@ operational_monitoring:
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram
xaxis: submission_date
- branches: *id051
@ -3545,13 +3555,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
xaxis: submission_date
@ -3566,9 +3576,9 @@ operational_monitoring:
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram
xaxis: submission_date
- branches: *id053
@ -3577,13 +3587,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
xaxis: submission_date
@ -3598,9 +3608,9 @@ operational_monitoring:
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram
xaxis: submission_date
- branches: *id055
@ -3609,13 +3619,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
xaxis: submission_date
@ -3694,9 +3704,9 @@ operational_monitoring:
explore: task_continuity_sync_after_tab_change_rollout_35_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.task_continuity_sync_after_tab_change_rollout_35_histogram
xaxis: submission_date
- branches: *id061
@ -3705,13 +3715,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.task_continuity_sync_after_tab_change_rollout_35_scalar
xaxis: submission_date
@ -3756,22 +3766,22 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- sap
- tagged_follow_on_search_count
- organic_search_count
- content_crashes
- gpu_crashes
- organic_search_count
- search_with_ads_organic
- shutdown_hangs
- sap
- ad_click
- gmplugin_crashes
- tagged_search_count
- tagged_follow_on_search_count
- content_shutdown_crashes
- ad_click_organic
- content_crashes
- search_with_ads
- oom_crashes
- ad_click_organic
- search_with_ads_organic
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- ad_click
- startup_crashes
- tagged_search_count
table: moz-fx-data-shared-prod.operational_monitoring.tcp_rollout_scalar
xaxis: submission_date
title: Tcp Rollout
@ -3812,22 +3822,22 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- sap
- tagged_follow_on_search_count
- organic_search_count
- content_crashes
- gpu_crashes
- organic_search_count
- search_with_ads_organic
- shutdown_hangs
- sap
- ad_click
- gmplugin_crashes
- tagged_search_count
- tagged_follow_on_search_count
- content_shutdown_crashes
- ad_click_organic
- content_crashes
- search_with_ads
- oom_crashes
- ad_click_organic
- search_with_ads_organic
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- ad_click
- startup_crashes
- tagged_search_count
table: moz-fx-data-shared-prod.operational_monitoring.tcp_rollout_phase_2_scalar
xaxis: submission_date
title: Tcp Rollout Phase 2
@ -3841,9 +3851,9 @@ operational_monitoring:
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram
xaxis: submission_date
- branches: *id067
@ -3852,13 +3862,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
xaxis: submission_date
@ -3873,9 +3883,9 @@ operational_monitoring:
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram
group_by_dimension: null
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
table: moz-fx-data-shared-prod.operational_monitoring.total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram
xaxis: submission_date
- branches: *id069
@ -3884,13 +3894,13 @@ operational_monitoring:
group_by_dimension: null
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
table: moz-fx-data-shared-prod.operational_monitoring.total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
xaxis: submission_date
@ -4506,9 +4516,9 @@ operational_monitoring:
branches: *id031
dimensions: &id086 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram
@ -4518,13 +4528,13 @@ operational_monitoring:
dimensions: *id032
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4560,9 +4570,9 @@ operational_monitoring:
branches: *id035
dimensions: &id088 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram
@ -4572,13 +4582,13 @@ operational_monitoring:
dimensions: *id036
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4695,9 +4705,9 @@ operational_monitoring:
branches: *id045
dimensions: &id093 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: firefox_suggest_by_merino_nightly_histogram
@ -4707,13 +4717,13 @@ operational_monitoring:
dimensions: *id046
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4734,7 +4744,7 @@ operational_monitoring:
- '20220530'
- '20220519'
- '20220427'
- '20220425'
- '20220531'
os:
default: Windows
options:
@ -4742,8 +4752,8 @@ operational_monitoring:
- Mac
- Linux
probes:
- fx_tab_switch_composite_e10s_ms
- gc_ms
- fx_tab_switch_composite_e10s_ms
- content_process_count
type: operational_monitoring_explore
views:
@ -4754,13 +4764,13 @@ operational_monitoring:
dimensions: *id048
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4770,9 +4780,9 @@ operational_monitoring:
branches: *id049
dimensions: &id095 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram
@ -4782,13 +4792,13 @@ operational_monitoring:
dimensions: *id050
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4798,9 +4808,9 @@ operational_monitoring:
branches: *id051
dimensions: &id096 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram
@ -4810,13 +4820,13 @@ operational_monitoring:
dimensions: *id052
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4826,9 +4836,9 @@ operational_monitoring:
branches: *id053
dimensions: &id097 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram
@ -4838,13 +4848,13 @@ operational_monitoring:
dimensions: *id054
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4854,9 +4864,9 @@ operational_monitoring:
branches: *id055
dimensions: &id098 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram
@ -4866,13 +4876,13 @@ operational_monitoring:
dimensions: *id056
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4938,9 +4948,9 @@ operational_monitoring:
branches: *id061
dimensions: &id101 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: task_continuity_sync_after_tab_change_rollout_35_histogram
@ -4950,13 +4960,13 @@ operational_monitoring:
dimensions: *id062
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -4999,8 +5009,8 @@ operational_monitoring:
- CN
- US
- IN
- BR
- DE
- BR
- FR
- RU
- ID
@ -5021,22 +5031,22 @@ operational_monitoring:
dimensions: *id066
probes:
- main_crashes
- sap
- tagged_follow_on_search_count
- organic_search_count
- content_crashes
- gpu_crashes
- organic_search_count
- search_with_ads_organic
- shutdown_hangs
- sap
- ad_click
- gmplugin_crashes
- tagged_search_count
- tagged_follow_on_search_count
- content_shutdown_crashes
- ad_click_organic
- content_crashes
- search_with_ads
- oom_crashes
- ad_click_organic
- search_with_ads_organic
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- ad_click
- startup_crashes
- tagged_search_count
type: operational_monitoring_explore
views:
base_view: tcp_rollout_phase_2_scalar
@ -5046,22 +5056,22 @@ operational_monitoring:
dimensions: *id064
probes:
- main_crashes
- sap
- tagged_follow_on_search_count
- organic_search_count
- content_crashes
- gpu_crashes
- organic_search_count
- search_with_ads_organic
- shutdown_hangs
- sap
- ad_click
- gmplugin_crashes
- tagged_search_count
- tagged_follow_on_search_count
- content_shutdown_crashes
- ad_click_organic
- content_crashes
- search_with_ads
- oom_crashes
- ad_click_organic
- search_with_ads_organic
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- ad_click
- startup_crashes
- tagged_search_count
type: operational_monitoring_explore
views:
base_view: tcp_rollout_scalar
@ -5070,9 +5080,9 @@ operational_monitoring:
branches: *id067
dimensions: &id104 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram
@ -5082,13 +5092,13 @@ operational_monitoring:
dimensions: *id068
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:
@ -5098,9 +5108,9 @@ operational_monitoring:
branches: *id069
dimensions: &id105 {}
probes:
- memory_total
- gc_ms
- content_process_count
- memory_total
type: operational_monitoring_explore
views:
base_view: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram
@ -5110,13 +5120,13 @@ operational_monitoring:
dimensions: *id070
probes:
- main_crashes
- content_crashes
- gpu_crashes
- shutdown_hangs
- gmplugin_crashes
- content_shutdown_crashes
- content_crashes
- oom_crashes
- plugin_crashes
- content_shutdown_crashes
- gmplugin_crashes
- shutdown_hangs
- startup_crashes
type: operational_monitoring_explore
views:

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram
@ -57,7 +27,7 @@
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
@ -177,36 +147,6 @@
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
@ -326,6 +176,156 @@
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date
field_y: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
log_scale: false
ci_lower: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low
ci_upper: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high
show_grid: true
listen:
Percentile: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar
type: "ci-line-chart"
fields: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.submission_date,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.high,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.low,
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile
]
pivots: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch
]
filters:
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram
@ -57,7 +27,7 @@
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
@ -177,36 +147,6 @@
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
@ -326,6 +176,156 @@
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date
field_y: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
log_scale: false
ci_lower: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low
ci_upper: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high
show_grid: true
listen:
Percentile: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar
type: "ci-line-chart"
fields: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.submission_date,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.high,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.low,
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile
]
pivots: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch
]
filters:
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: firefox_suggest_by_merino_nightly_histogram
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_histogram.submission_date,
firefox_suggest_by_merino_nightly_histogram.branch,
firefox_suggest_by_merino_nightly_histogram.high,
firefox_suggest_by_merino_nightly_histogram.low,
firefox_suggest_by_merino_nightly_histogram.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_histogram.branch
]
filters:
firefox_suggest_by_merino_nightly_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_histogram.submission_date
field_y: firefox_suggest_by_merino_nightly_histogram.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_histogram.low
ci_upper: firefox_suggest_by_merino_nightly_histogram.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: firefox_suggest_by_merino_nightly_histogram
@ -57,7 +27,7 @@
filters:
firefox_suggest_by_merino_nightly_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
firefox_suggest_by_merino_nightly_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_histogram.submission_date
field_y: firefox_suggest_by_merino_nightly_histogram.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_histogram.low
ci_upper: firefox_suggest_by_merino_nightly_histogram.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: firefox_suggest_by_merino_nightly_histogram
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_histogram.submission_date,
firefox_suggest_by_merino_nightly_histogram.branch,
firefox_suggest_by_merino_nightly_histogram.high,
firefox_suggest_by_merino_nightly_histogram.low,
firefox_suggest_by_merino_nightly_histogram.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_histogram.branch
]
filters:
firefox_suggest_by_merino_nightly_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: firefox_suggest_by_merino_nightly_scalar
@ -177,36 +147,6 @@
filters:
firefox_suggest_by_merino_nightly_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: firefox_suggest_by_merino_nightly_scalar
@ -326,6 +176,156 @@
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: firefox_suggest_by_merino_nightly_scalar.submission_date
field_y: firefox_suggest_by_merino_nightly_scalar.percentile
log_scale: false
ci_lower: firefox_suggest_by_merino_nightly_scalar.low
ci_upper: firefox_suggest_by_merino_nightly_scalar.high
show_grid: true
listen:
Percentile: firefox_suggest_by_merino_nightly_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: firefox_suggest_by_merino_nightly_scalar
type: "ci-line-chart"
fields: [
firefox_suggest_by_merino_nightly_scalar.submission_date,
firefox_suggest_by_merino_nightly_scalar.branch,
firefox_suggest_by_merino_nightly_scalar.high,
firefox_suggest_by_merino_nightly_scalar.low,
firefox_suggest_by_merino_nightly_scalar.percentile
]
pivots: [
firefox_suggest_by_merino_nightly_scalar.branch
]
filters:
firefox_suggest_by_merino_nightly_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,68 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Fx Tab Switch Composite E10S Ms
name: Fx Tab Switch Composite E10S Ms
explore: mission_control_desktop_nightly_histogram
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_histogram.submission_date,
mission_control_desktop_nightly_histogram.branch,
mission_control_desktop_nightly_histogram.high,
mission_control_desktop_nightly_histogram.low,
mission_control_desktop_nightly_histogram.percentile
]
pivots: [
mission_control_desktop_nightly_histogram.branch
]
filters:
mission_control_desktop_nightly_histogram.probe: fx_tab_switch_composite_e10s_ms
row: 0
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_histogram.submission_date
field_y: mission_control_desktop_nightly_histogram.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_histogram.low
ci_upper: mission_control_desktop_nightly_histogram.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_histogram.percentile_conf
Build: mission_control_desktop_nightly_histogram.build
Os: mission_control_desktop_nightly_histogram.os
active: "#3FE1B0"
- title: Fx Tab Switch Composite E10S Ms - By build
name: Fx Tab Switch Composite E10S Ms - By build
explore: mission_control_desktop_nightly_histogram
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_histogram.submission_date,
mission_control_desktop_nightly_histogram.branch,
mission_control_desktop_nightly_histogram.high,
mission_control_desktop_nightly_histogram.low,
mission_control_desktop_nightly_histogram.percentile
]
pivots: [
mission_control_desktop_nightly_histogram.branch, mission_control_desktop_nightly_histogram.build
]
filters:
mission_control_desktop_nightly_histogram.probe: fx_tab_switch_composite_e10s_ms
row: 0
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_histogram.submission_date
field_y: mission_control_desktop_nightly_histogram.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_histogram.low
ci_upper: mission_control_desktop_nightly_histogram.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_histogram.percentile_conf
Build: mission_control_desktop_nightly_histogram.build
Os: mission_control_desktop_nightly_histogram.os
active: "#3FE1B0"
- title: Gc Ms
name: Gc Ms
explore: mission_control_desktop_nightly_histogram
@ -88,7 +26,7 @@
]
filters:
mission_control_desktop_nightly_histogram.probe: gc_ms
row: 10
row: 0
col: 0
width: 12
height: 8
@ -119,6 +57,68 @@
]
filters:
mission_control_desktop_nightly_histogram.probe: gc_ms
row: 0
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_histogram.submission_date
field_y: mission_control_desktop_nightly_histogram.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_histogram.low
ci_upper: mission_control_desktop_nightly_histogram.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_histogram.percentile_conf
Build: mission_control_desktop_nightly_histogram.build
Os: mission_control_desktop_nightly_histogram.os
active: "#3FE1B0"
- title: Fx Tab Switch Composite E10S Ms
name: Fx Tab Switch Composite E10S Ms
explore: mission_control_desktop_nightly_histogram
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_histogram.submission_date,
mission_control_desktop_nightly_histogram.branch,
mission_control_desktop_nightly_histogram.high,
mission_control_desktop_nightly_histogram.low,
mission_control_desktop_nightly_histogram.percentile
]
pivots: [
mission_control_desktop_nightly_histogram.branch
]
filters:
mission_control_desktop_nightly_histogram.probe: fx_tab_switch_composite_e10s_ms
row: 10
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_histogram.submission_date
field_y: mission_control_desktop_nightly_histogram.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_histogram.low
ci_upper: mission_control_desktop_nightly_histogram.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_histogram.percentile_conf
Build: mission_control_desktop_nightly_histogram.build
Os: mission_control_desktop_nightly_histogram.os
active: "#3FE1B0"
- title: Fx Tab Switch Composite E10S Ms - By build
name: Fx Tab Switch Composite E10S Ms - By build
explore: mission_control_desktop_nightly_histogram
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_histogram.submission_date,
mission_control_desktop_nightly_histogram.branch,
mission_control_desktop_nightly_histogram.high,
mission_control_desktop_nightly_histogram.low,
mission_control_desktop_nightly_histogram.percentile
]
pivots: [
mission_control_desktop_nightly_histogram.branch, mission_control_desktop_nightly_histogram.build
]
filters:
mission_control_desktop_nightly_histogram.probe: fx_tab_switch_composite_e10s_ms
row: 10
col: 12
width: 12
@ -258,68 +258,6 @@
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Crashes
name: Content Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Crashes - By build
name: Content Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: content_crashes
row: 40
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Gpu Crashes
name: Gpu Crashes
explore: mission_control_desktop_nightly_scalar
@ -336,7 +274,7 @@
]
filters:
mission_control_desktop_nightly_scalar.probe: gpu_crashes
row: 50
row: 40
col: 0
width: 12
height: 8
@ -367,255 +305,7 @@
]
filters:
mission_control_desktop_nightly_scalar.probe: gpu_crashes
row: 50
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Oom Crashes
name: Oom Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: oom_crashes
row: 60
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Oom Crashes - By build
name: Oom Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: oom_crashes
row: 60
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Plugin Crashes
name: Plugin Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: plugin_crashes
row: 70
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Plugin Crashes - By build
name: Plugin Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: plugin_crashes
row: 70
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: content_shutdown_crashes
row: 80
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Shutdown Crashes - By build
name: Content Shutdown Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: content_shutdown_crashes
row: 80
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: gmplugin_crashes
row: 90
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Gmplugin Crashes - By build
name: Gmplugin Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: gmplugin_crashes
row: 90
row: 40
col: 12
width: 12
height: 8
@ -646,7 +336,7 @@
]
filters:
mission_control_desktop_nightly_scalar.probe: shutdown_hangs
row: 100
row: 50
col: 0
width: 12
height: 8
@ -677,6 +367,316 @@
]
filters:
mission_control_desktop_nightly_scalar.probe: shutdown_hangs
row: 50
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: gmplugin_crashes
row: 60
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Gmplugin Crashes - By build
name: Gmplugin Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: gmplugin_crashes
row: 60
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: content_shutdown_crashes
row: 70
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Shutdown Crashes - By build
name: Content Shutdown Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: content_shutdown_crashes
row: 70
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Crashes
name: Content Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: content_crashes
row: 80
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Content Crashes - By build
name: Content Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: content_crashes
row: 80
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Oom Crashes
name: Oom Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: oom_crashes
row: 90
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Oom Crashes - By build
name: Oom Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: oom_crashes
row: 90
col: 12
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Plugin Crashes
name: Plugin Crashes
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch
]
filters:
mission_control_desktop_nightly_scalar.probe: plugin_crashes
row: 100
col: 0
width: 12
height: 8
field_x: mission_control_desktop_nightly_scalar.submission_date
field_y: mission_control_desktop_nightly_scalar.percentile
log_scale: false
ci_lower: mission_control_desktop_nightly_scalar.low
ci_upper: mission_control_desktop_nightly_scalar.high
show_grid: true
listen:
Percentile: mission_control_desktop_nightly_scalar.percentile_conf
Build: mission_control_desktop_nightly_scalar.build
Os: mission_control_desktop_nightly_scalar.os
active: "#3FE1B0"
- title: Plugin Crashes - By build
name: Plugin Crashes - By build
explore: mission_control_desktop_nightly_scalar
type: "ci-line-chart"
fields: [
mission_control_desktop_nightly_scalar.submission_date,
mission_control_desktop_nightly_scalar.branch,
mission_control_desktop_nightly_scalar.high,
mission_control_desktop_nightly_scalar.low,
mission_control_desktop_nightly_scalar.percentile
]
pivots: [
mission_control_desktop_nightly_scalar.branch, mission_control_desktop_nightly_scalar.build
]
filters:
mission_control_desktop_nightly_scalar.probe: plugin_crashes
row: 100
col: 12
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram
@ -57,7 +27,7 @@
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
@ -177,36 +147,6 @@
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
@ -326,6 +176,156 @@
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date
field_y: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
log_scale: false
ci_lower: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low
ci_upper: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar
type: "ci-line-chart"
fields: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.submission_date,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.high,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.low,
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile
]
pivots: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch
]
filters:
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram
@ -57,7 +27,7 @@
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
@ -177,36 +147,6 @@
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
@ -326,6 +176,156 @@
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date
field_y: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
log_scale: false
ci_lower: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low
ci_upper: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar
type: "ci-line-chart"
fields: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.submission_date,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.high,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.low,
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile
]
pivots: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch
]
filters:
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram
@ -57,7 +27,7 @@
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
@ -177,36 +147,6 @@
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
@ -326,6 +176,156 @@
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date
field_y: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
log_scale: false
ci_lower: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low
ci_upper: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high
show_grid: true
listen:
Percentile: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar
type: "ci-line-chart"
fields: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.submission_date,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.high,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.low,
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile
]
pivots: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch
]
filters:
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram
@ -57,7 +27,7 @@
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
@ -177,36 +147,6 @@
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
@ -326,6 +176,156 @@
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date
field_y: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
log_scale: false
ci_lower: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low
ci_upper: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high
show_grid: true
listen:
Percentile: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar
type: "ci-line-chart"
fields: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.submission_date,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.high,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.low,
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile
]
pivots: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch
]
filters:
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: task_continuity_sync_after_tab_change_rollout_35_histogram
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_histogram.submission_date,
task_continuity_sync_after_tab_change_rollout_35_histogram.branch,
task_continuity_sync_after_tab_change_rollout_35_histogram.high,
task_continuity_sync_after_tab_change_rollout_35_histogram.low,
task_continuity_sync_after_tab_change_rollout_35_histogram.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_histogram.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_histogram.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_histogram.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_histogram.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_histogram.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: task_continuity_sync_after_tab_change_rollout_35_histogram
@ -57,7 +27,7 @@
filters:
task_continuity_sync_after_tab_change_rollout_35_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
task_continuity_sync_after_tab_change_rollout_35_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_histogram.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_histogram.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_histogram.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_histogram.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: task_continuity_sync_after_tab_change_rollout_35_histogram
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_histogram.submission_date,
task_continuity_sync_after_tab_change_rollout_35_histogram.branch,
task_continuity_sync_after_tab_change_rollout_35_histogram.high,
task_continuity_sync_after_tab_change_rollout_35_histogram.low,
task_continuity_sync_after_tab_change_rollout_35_histogram.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_histogram.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
@ -177,36 +147,6 @@
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
@ -326,6 +176,156 @@
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date
field_y: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
log_scale: false
ci_lower: task_continuity_sync_after_tab_change_rollout_35_scalar.low
ci_upper: task_continuity_sync_after_tab_change_rollout_35_scalar.high
show_grid: true
listen:
Percentile: task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: task_continuity_sync_after_tab_change_rollout_35_scalar
type: "ci-line-chart"
fields: [
task_continuity_sync_after_tab_change_rollout_35_scalar.submission_date,
task_continuity_sync_after_tab_change_rollout_35_scalar.branch,
task_continuity_sync_after_tab_change_rollout_35_scalar.high,
task_continuity_sync_after_tab_change_rollout_35_scalar.low,
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile
]
pivots: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch
]
filters:
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -76,8 +76,8 @@
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Sap
name: Sap
- title: Gpu Crashes
name: Gpu Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
@ -91,7 +91,7 @@
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: sap
tcp_rollout_scalar.probe: gpu_crashes
row: 10
col: 0
width: 12
@ -109,39 +109,6 @@
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Tagged Follow On Search Count
name: Tagged Follow On Search Count
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: tagged_follow_on_search_count
row: 10
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Organic Search Count
name: Organic Search Count
explore: tcp_rollout_scalar
@ -158,172 +125,7 @@
]
filters:
tcp_rollout_scalar.probe: organic_search_count
row: 20
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Content Crashes
name: Content Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: content_crashes
row: 20
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Gpu Crashes
name: Gpu Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: gpu_crashes
row: 30
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Search With Ads
name: Search With Ads
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: search_with_ads
row: 30
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Oom Crashes
name: Oom Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: oom_crashes
row: 40
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Ad Click Organic
name: Ad Click Organic
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: ad_click_organic
row: 40
row: 10
col: 12
width: 12
height: 8
@ -356,7 +158,7 @@
]
filters:
tcp_rollout_scalar.probe: search_with_ads_organic
row: 50
row: 20
col: 0
width: 12
height: 8
@ -373,105 +175,6 @@
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Plugin Crashes
name: Plugin Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: plugin_crashes
row: 50
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: content_shutdown_crashes
row: 60
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: gmplugin_crashes
row: 60
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: tcp_rollout_scalar
@ -488,7 +191,40 @@
]
filters:
tcp_rollout_scalar.probe: shutdown_hangs
row: 70
row: 20
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Sap
name: Sap
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: sap
row: 30
col: 0
width: 12
height: 8
@ -521,7 +257,7 @@
]
filters:
tcp_rollout_scalar.probe: ad_click
row: 70
row: 30
col: 12
width: 12
height: 8
@ -538,8 +274,8 @@
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Startup Crashes
name: Startup Crashes
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
@ -553,8 +289,8 @@
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: startup_crashes
row: 80
tcp_rollout_scalar.probe: gmplugin_crashes
row: 40
col: 0
width: 12
height: 8
@ -587,6 +323,270 @@
]
filters:
tcp_rollout_scalar.probe: tagged_search_count
row: 40
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Tagged Follow On Search Count
name: Tagged Follow On Search Count
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: tagged_follow_on_search_count
row: 50
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: content_shutdown_crashes
row: 50
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Ad Click Organic
name: Ad Click Organic
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: ad_click_organic
row: 60
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Content Crashes
name: Content Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: content_crashes
row: 60
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Search With Ads
name: Search With Ads
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: search_with_ads
row: 70
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Oom Crashes
name: Oom Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: oom_crashes
row: 70
col: 12
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Plugin Crashes
name: Plugin Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: plugin_crashes
row: 80
col: 0
width: 12
height: 8
field_x: tcp_rollout_scalar.submission_date
field_y: tcp_rollout_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_scalar.low
ci_upper: tcp_rollout_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_scalar.percentile_conf
Country: tcp_rollout_scalar.country
Os: tcp_rollout_scalar.os
opt-in: "#3FE1B0"
opt-out: "#0060E0"
pref-does-not-exist: "#9059FF"
- title: Startup Crashes
name: Startup Crashes
explore: tcp_rollout_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_scalar.submission_date,
tcp_rollout_scalar.branch,
tcp_rollout_scalar.high,
tcp_rollout_scalar.low,
tcp_rollout_scalar.percentile
]
pivots: [
tcp_rollout_scalar.branch
]
filters:
tcp_rollout_scalar.probe: startup_crashes
row: 80
col: 12
width: 12

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

@ -74,8 +74,8 @@
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Sap
name: Sap
- title: Gpu Crashes
name: Gpu Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
@ -89,7 +89,7 @@
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: sap
tcp_rollout_phase_2_scalar.probe: gpu_crashes
row: 10
col: 0
width: 12
@ -106,38 +106,6 @@
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Tagged Follow On Search Count
name: Tagged Follow On Search Count
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: tagged_follow_on_search_count
row: 10
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Organic Search Count
name: Organic Search Count
explore: tcp_rollout_phase_2_scalar
@ -154,167 +122,7 @@
]
filters:
tcp_rollout_phase_2_scalar.probe: organic_search_count
row: 20
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: content_crashes
row: 20
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: gpu_crashes
row: 30
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Search With Ads
name: Search With Ads
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: search_with_ads
row: 30
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: oom_crashes
row: 40
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Ad Click Organic
name: Ad Click Organic
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: ad_click_organic
row: 40
row: 10
col: 12
width: 12
height: 8
@ -346,7 +154,7 @@
]
filters:
tcp_rollout_phase_2_scalar.probe: search_with_ads_organic
row: 50
row: 20
col: 0
width: 12
height: 8
@ -362,102 +170,6 @@
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: plugin_crashes
row: 50
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: content_shutdown_crashes
row: 60
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: gmplugin_crashes
row: 60
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: tcp_rollout_phase_2_scalar
@ -474,7 +186,39 @@
]
filters:
tcp_rollout_phase_2_scalar.probe: shutdown_hangs
row: 70
row: 20
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Sap
name: Sap
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: sap
row: 30
col: 0
width: 12
height: 8
@ -506,7 +250,7 @@
]
filters:
tcp_rollout_phase_2_scalar.probe: ad_click
row: 70
row: 30
col: 12
width: 12
height: 8
@ -522,8 +266,8 @@
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Startup Crashes
name: Startup Crashes
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
@ -537,8 +281,8 @@
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: startup_crashes
row: 80
tcp_rollout_phase_2_scalar.probe: gmplugin_crashes
row: 40
col: 0
width: 12
height: 8
@ -570,6 +314,262 @@
]
filters:
tcp_rollout_phase_2_scalar.probe: tagged_search_count
row: 40
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Tagged Follow On Search Count
name: Tagged Follow On Search Count
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: tagged_follow_on_search_count
row: 50
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: content_shutdown_crashes
row: 50
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Ad Click Organic
name: Ad Click Organic
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: ad_click_organic
row: 60
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: content_crashes
row: 60
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Search With Ads
name: Search With Ads
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: search_with_ads
row: 70
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: oom_crashes
row: 70
col: 12
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: plugin_crashes
row: 80
col: 0
width: 12
height: 8
field_x: tcp_rollout_phase_2_scalar.submission_date
field_y: tcp_rollout_phase_2_scalar.percentile
log_scale: false
ci_lower: tcp_rollout_phase_2_scalar.low
ci_upper: tcp_rollout_phase_2_scalar.high
show_grid: true
listen:
Percentile: tcp_rollout_phase_2_scalar.percentile_conf
Country: tcp_rollout_phase_2_scalar.country
Os: tcp_rollout_phase_2_scalar.os
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Startup Crashes
name: Startup Crashes
explore: tcp_rollout_phase_2_scalar
type: "ci-line-chart"
fields: [
tcp_rollout_phase_2_scalar.submission_date,
tcp_rollout_phase_2_scalar.branch,
tcp_rollout_phase_2_scalar.high,
tcp_rollout_phase_2_scalar.low,
tcp_rollout_phase_2_scalar.percentile
]
pivots: [
tcp_rollout_phase_2_scalar.branch
]
filters:
tcp_rollout_phase_2_scalar.probe: startup_crashes
row: 80
col: 12
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram
@ -57,7 +27,7 @@
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
@ -177,36 +147,6 @@
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
@ -326,6 +176,156 @@
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date
field_y: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low
ci_upper: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.submission_date,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.high,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.low,
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile
]
pivots: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch
]
filters:
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -10,36 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Memory Total
name: Memory Total
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.probe: memory_total
row: 0
col: 0
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gc Ms
name: Gc Ms
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram
@ -57,7 +27,7 @@
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.probe: gc_ms
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.submission_date
@ -86,6 +56,36 @@
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.probe: content_process_count
row: 0
col: 12
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Memory Total
name: Memory Total
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.probe: memory_total
row: 10
col: 0
width: 12
@ -130,36 +130,6 @@
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: content_crashes
row: 20
col: 0
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gpu Crashes
name: Gpu Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
@ -177,36 +147,6 @@
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: gpu_crashes
row: 20
col: 12
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: oom_crashes
row: 30
col: 0
width: 12
height: 8
@ -220,96 +160,6 @@
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: plugin_crashes
row: 30
col: 12
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: content_shutdown_crashes
row: 40
col: 0
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: gmplugin_crashes
row: 40
col: 12
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Shutdown Hangs
name: Shutdown Hangs
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
@ -326,6 +176,156 @@
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: shutdown_hangs
row: 20
col: 12
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Gmplugin Crashes
name: Gmplugin Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: gmplugin_crashes
row: 30
col: 0
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Shutdown Crashes
name: Content Shutdown Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: content_shutdown_crashes
row: 30
col: 12
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Content Crashes
name: Content Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: content_crashes
row: 40
col: 0
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Oom Crashes
name: Oom Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: oom_crashes
row: 40
col: 12
width: 12
height: 8
field_x: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date
field_y: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
log_scale: false
ci_lower: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low
ci_upper: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high
show_grid: true
listen:
Percentile: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf
enabled: "#3FE1B0"
disabled: "#0060E0"
- title: Plugin Crashes
name: Plugin Crashes
explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar
type: "ci-line-chart"
fields: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.submission_date,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.high,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.low,
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile
]
pivots: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch
]
filters:
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: plugin_crashes
row: 50
col: 0
width: 12

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

@ -13,22 +13,6 @@ explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram {
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar {
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar {
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar {
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.branch: "enabled, disabled",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.percentile_conf: "50",
bug_1759000_rollout_initial_rollout_of_tcp_release_91_99_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_hist
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_hist
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scal
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scal
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scal
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.branch: "enabled, disabled",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.percentile_conf: "50",
bug_1762636_rollout_disable_webassembly_code_caching_release_98_99_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: firefox_suggest_by_merino_nightly_histogram {
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_histogram.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_histogram.percentile_conf: "50",
firefox_suggest_by_merino_nightly_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: firefox_suggest_by_merino_nightly_histogram {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_histogram.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_histogram.percentile_conf: "50",
firefox_suggest_by_merino_nightly_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: firefox_suggest_by_merino_nightly_scalar {
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: firefox_suggest_by_merino_nightly_scalar {
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: firefox_suggest_by_merino_nightly_scalar {
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
firefox_suggest_by_merino_nightly_scalar.branch: "enabled, disabled",
firefox_suggest_by_merino_nightly_scalar.percentile_conf: "50",
firefox_suggest_by_merino_nightly_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,24 +13,6 @@ explore: mission_control_desktop_nightly_histogram {
]
}
aggregate_table: rollup_fx_tab_switch_composite_e10s_ms {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_histogram.branch: "active",
mission_control_desktop_nightly_histogram.percentile_conf: "50",
mission_control_desktop_nightly_histogram.build: "20211105",
mission_control_desktop_nightly_histogram.os: "Windows",
mission_control_desktop_nightly_histogram.probe: "fx_tab_switch_composite_e10s_ms",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -49,6 +31,24 @@ explore: mission_control_desktop_nightly_histogram {
}
}
aggregate_table: rollup_fx_tab_switch_composite_e10s_ms {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_histogram.branch: "active",
mission_control_desktop_nightly_histogram.percentile_conf: "50",
mission_control_desktop_nightly_histogram.build: "20211105",
mission_control_desktop_nightly_histogram.os: "Windows",
mission_control_desktop_nightly_histogram.probe: "fx_tab_switch_composite_e10s_ms",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_process_count {
query: {
dimensions: [submission_date, branch]

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

@ -31,24 +31,6 @@ explore: mission_control_desktop_nightly_scalar {
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -67,6 +49,78 @@ explore: mission_control_desktop_nightly_scalar {
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -103,60 +157,6 @@ explore: mission_control_desktop_nightly_scalar {
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
mission_control_desktop_nightly_scalar.branch: "active",
mission_control_desktop_nightly_scalar.percentile_conf: "50",
mission_control_desktop_nightly_scalar.build: "20211105",
mission_control_desktop_nightly_scalar.os: "Windows",
mission_control_desktop_nightly_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.branch: "enabled, disabled",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.percentile_conf: "50",
rollout_doh_beta_rollout_to_all_us_desktop_users_v2_beta_74_80_bug_1613489_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.branch: "enabled, disabled",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.percentile_conf: "50",
rollout_doh_nightly_rollout_to_all_us_desktop_users_nightly_74_80_bug_1613481_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.branch: "enabled, disabled",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.percentile_conf: "50",
rollout_doh_us_staged_rollout_to_all_us_desktop_users_release_73_77_bug_1586331_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_his
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_his
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_sca
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_sca
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_sca
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.branch: "enabled, disabled",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.percentile_conf: "50",
set_firefox_as_default_pdf_handler_on_windows_for_new_users_rollout_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: task_continuity_sync_after_tab_change_rollout_35_histogram {
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_histogram.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_histogram.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: task_continuity_sync_after_tab_change_rollout_35_histogram {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_histogram.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_histogram.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: task_continuity_sync_after_tab_change_rollout_35_scalar {
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: task_continuity_sync_after_tab_change_rollout_35_scalar {
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: task_continuity_sync_after_tab_change_rollout_35_scalar {
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
task_continuity_sync_after_tab_change_rollout_35_scalar.branch: "enabled, disabled",
task_continuity_sync_after_tab_change_rollout_35_scalar.percentile_conf: "50",
task_continuity_sync_after_tab_change_rollout_35_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -31,7 +31,7 @@ explore: tcp_rollout_phase_2_scalar {
}
}
aggregate_table: rollup_sap {
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
@ -40,25 +40,7 @@ explore: tcp_rollout_phase_2_scalar {
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "sap",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_follow_on_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "tagged_follow_on_search_count",
tcp_rollout_phase_2_scalar.probe: "gpu_crashes",
]
}
@ -85,6 +67,168 @@ explore: tcp_rollout_phase_2_scalar {
}
}
aggregate_table: rollup_search_with_ads_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "search_with_ads_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_sap {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "sap",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_ad_click {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "ad_click",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "tagged_search_count",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_follow_on_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "tagged_follow_on_search_count",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_ad_click_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "ad_click_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
@ -103,24 +247,6 @@ explore: tcp_rollout_phase_2_scalar {
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "gpu_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_search_with_ads {
query: {
dimensions: [submission_date, branch]
@ -157,42 +283,6 @@ explore: tcp_rollout_phase_2_scalar {
}
}
aggregate_table: rollup_ad_click_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "ad_click_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_search_with_ads_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "search_with_ads_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_plugin_crashes {
query: {
dimensions: [submission_date, branch]
@ -211,78 +301,6 @@ explore: tcp_rollout_phase_2_scalar {
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_ad_click {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "ad_click",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]
@ -300,22 +318,4 @@ explore: tcp_rollout_phase_2_scalar {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_phase_2_scalar.branch: "enabled, disabled",
tcp_rollout_phase_2_scalar.percentile_conf: "50",
tcp_rollout_phase_2_scalar.country: "CN",
tcp_rollout_phase_2_scalar.os: "Windows",
tcp_rollout_phase_2_scalar.probe: "tagged_search_count",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -31,7 +31,7 @@ explore: tcp_rollout_scalar {
}
}
aggregate_table: rollup_sap {
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
@ -40,25 +40,7 @@ explore: tcp_rollout_scalar {
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "sap",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_follow_on_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "tagged_follow_on_search_count",
tcp_rollout_scalar.probe: "gpu_crashes",
]
}
@ -85,6 +67,168 @@ explore: tcp_rollout_scalar {
}
}
aggregate_table: rollup_search_with_ads_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "search_with_ads_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_sap {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "sap",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_ad_click {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "ad_click",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "tagged_search_count",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_follow_on_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "tagged_follow_on_search_count",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_ad_click_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "ad_click_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
@ -103,24 +247,6 @@ explore: tcp_rollout_scalar {
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "gpu_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_search_with_ads {
query: {
dimensions: [submission_date, branch]
@ -157,42 +283,6 @@ explore: tcp_rollout_scalar {
}
}
aggregate_table: rollup_ad_click_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "ad_click_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_search_with_ads_organic {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "search_with_ads_organic",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_plugin_crashes {
query: {
dimensions: [submission_date, branch]
@ -211,78 +301,6 @@ explore: tcp_rollout_scalar {
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_ad_click {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "ad_click",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]
@ -300,22 +318,4 @@ explore: tcp_rollout_scalar {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_tagged_search_count {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
tcp_rollout_scalar.branch: "opt-in, opt-out, pref-does-not-exist",
tcp_rollout_scalar.percentile_conf: "50",
tcp_rollout_scalar.country: "US",
tcp_rollout_scalar.os: "Windows",
tcp_rollout_scalar.probe: "tagged_search_count",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -13,22 +13,6 @@ explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_h
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_h
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_s
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_s
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_s
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.branch: "enabled, disabled",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.percentile_conf: "50",
total_cookie_protection_beta_roll_out_phase_ii_switch_on_to_new_users_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]

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

@ -13,22 +13,6 @@ explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default
]
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gc_ms {
query: {
dimensions: [submission_date, branch]
@ -60,4 +44,20 @@ explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_memory_total {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_histogram.probe: "memory_total",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
}

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

@ -29,22 +29,6 @@ explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gpu_crashes {
query: {
dimensions: [submission_date, branch]
@ -61,6 +45,70 @@ explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_content_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "content_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_oom_crashes {
query: {
dimensions: [submission_date, branch]
@ -93,54 +141,6 @@ explore: total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default
}
}
aggregate_table: rollup_content_shutdown_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "content_shutdown_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_gmplugin_crashes {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "gmplugin_crashes",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_shutdown_hangs {
query: {
dimensions: [submission_date, branch]
measures: [low, high, percentile]
filters: [
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.branch: "enabled, disabled",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.percentile_conf: "50",
total_cookie_protection_roll_out_to_users_phase_ii_switch_on_by_default_scalar.probe: "shutdown_hangs",
]
}
materialization: {
sql_trigger_value: SELECT CAST(TIMESTAMP_SUB(CURRENT_TIMESTAMP, INTERVAL 9 HOUR) AS DATE) ;;
}
}
aggregate_table: rollup_startup_crashes {
query: {
dimensions: [submission_date, branch]