Auto-push from LookML generation

This commit is contained in:
Generated LookML Creator 2024-10-02 04:18:33 +00:00
Родитель dd3a0d67ec
Коммит 5a8f9dc701
91 изменённых файлов: 12839 добавлений и 10263 удалений

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

@ -7119,6 +7119,78 @@ To be used to validate GIFFT.
"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
label: "Ls Preparedatastore Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Ls Preparedatastore"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparedatastore Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_preparedatastore_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the parent process to prepare a Datastore. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. When a Datastore is already preloaded, the preparation is usually fast since it doesn't need to do any I/O. If an error occurs, the time is not recorded. In future, we might want to introduce additional separate metrics for different types of datastore preparations (data needs to be loaded from disk, data already available, etc.)
"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
label: "Ls Preparelsdatabase Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Ls Preparelsdatabase"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparelsdatabase Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_preparelsdatabase_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the content process to fully prepare a new LSDatabase, including any time required to prepare a Datastore in the parent. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. If an error occurs, the time is not recorded.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
label: "Ls Request Recv Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Recv Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
label: "Ls Request Send Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Send Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__labeled_counter__media_audio_backend {
label: "Media Audio Backend"
hidden: yes
@ -8348,6 +8420,42 @@ To be used to validate GIFFT.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Received Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/networking_http_3_ecn_ce_ect0_ratio_received"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) received.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Sent Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/networking_http_3_ecn_ce_ect0_ratio_sent"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) sent.
"
}
dimension: metrics__labeled_counter__networking_http_3_ecn_path_capability {
label: "Networking Http 3 Ecn Path Capability"
hidden: yes
@ -15814,6 +15922,56 @@ Deprecated: `native_code_crash`, `fatal_native_code_crash` and `nonfatal_native_
}
}
measure: ls_request_recv_cancellation {
type: sum
sql: ${metrics__counter__ls_request_recv_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_recv_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_recv_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation {
type: sum
sql: ${metrics__counter__ls_request_send_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_send_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: netwerk_parent_connect_timeout {
type: sum
sql: ${metrics__counter__netwerk_parent_connect_timeout} ;;
@ -25114,6 +25272,30 @@ view: metrics__metrics__custom_distribution__networking_http_3_download_throughp
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -26946,6 +27128,30 @@ view: metrics__metrics__timing_distribution__logins_store_write_query_time__valu
}
}
view: metrics__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__metrics_search_page_load_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -1123,6 +1123,20 @@ view: metrics_table {
group_item_label: "Logins Store Write Query Count"
}
dimension: metrics__counter__ls_request_recv_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Recv Cancellation"
}
dimension: metrics__counter__ls_request_send_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Send Cancellation"
}
dimension: metrics__counter__metrics_credit_cards_autofill_count {
sql: ${TABLE}.metrics.counter.metrics_credit_cards_autofill_count ;;
type: number
@ -2397,6 +2411,44 @@ view: metrics_table {
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Count"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Count"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_loss_ratio__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_loss_ratio.count ;;
type: number
@ -9138,6 +9190,124 @@ view: metrics_table {
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__metrics_search_page_load_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.metrics_search_page_load_time.bucket_count ;;
type: number
@ -16987,6 +17157,30 @@ view: metrics_table__metrics__custom_distribution__networking_http_3_download_th
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -18819,6 +19013,30 @@ view: metrics_table__metrics__timing_distribution__logins_store_write_query_time
}
}
view: metrics_table__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__metrics_search_page_load_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -5571,6 +5571,78 @@ To be used to validate GIFFT.
"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
label: "Ls Preparedatastore Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Ls Preparedatastore"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparedatastore Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_preparedatastore_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the parent process to prepare a Datastore. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. When a Datastore is already preloaded, the preparation is usually fast since it doesn't need to do any I/O. If an error occurs, the time is not recorded. In future, we might want to introduce additional separate metrics for different types of datastore preparations (data needs to be loaded from disk, data already available, etc.)
"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
label: "Ls Preparelsdatabase Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Ls Preparelsdatabase"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparelsdatabase Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_preparelsdatabase_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the content process to fully prepare a new LSDatabase, including any time required to prepare a Datastore in the parent. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. If an error occurs, the time is not recorded.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
label: "Ls Request Recv Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Recv Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
label: "Ls Request Send Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Send Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__labeled_counter__media_audio_backend {
label: "Media Audio Backend"
hidden: yes
@ -6800,6 +6872,42 @@ To be used to validate GIFFT.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Received Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/networking_http_3_ecn_ce_ect0_ratio_received"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) received.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Sent Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/networking_http_3_ecn_ce_ect0_ratio_sent"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) sent.
"
}
dimension: metrics__labeled_counter__networking_http_3_ecn_path_capability {
label: "Networking Http 3 Ecn Path Capability"
hidden: yes
@ -12577,6 +12685,56 @@ documented in the ping's pings.yaml file.
}
}
measure: ls_request_recv_cancellation {
type: sum
sql: ${metrics__counter__ls_request_recv_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_recv_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_recv_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation {
type: sum
sql: ${metrics__counter__ls_request_send_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_send_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: netwerk_parent_connect_timeout {
type: sum
sql: ${metrics__counter__netwerk_parent_connect_timeout} ;;
@ -21186,6 +21344,30 @@ view: metrics__metrics__custom_distribution__networking_http_3_download_throughp
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -23131,6 +23313,30 @@ view: metrics__metrics__timing_distribution__javascript_pageload_xdr_encode_time
}
}
view: metrics__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -925,6 +925,24 @@ This does not include deletion-request pings.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Recv Cancellation"
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Send Cancellation"
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__counter__messaging_system_glean_ping_for_ping_failures {
sql: ${TABLE}.metrics.counter.messaging_system_glean_ping_for_ping_failures ;;
type: number
@ -2138,6 +2156,46 @@ of the shopping experiment.
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_loss_ratio__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_loss_ratio.count ;;
type: number
@ -8759,6 +8817,126 @@ default engine, and hence both versions of these fields will be filled in.
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__network_cache_hit_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.network_cache_hit_time.bucket_count ;;
type: number
@ -14566,6 +14744,30 @@ view: metrics_table__metrics__custom_distribution__networking_http_3_download_th
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -16511,6 +16713,30 @@ view: metrics_table__metrics__timing_distribution__javascript_pageload_xdr_encod
}
}
view: metrics_table__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -3837,6 +3837,78 @@ To be used to validate GIFFT.
"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
label: "Ls Preparedatastore Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Ls Preparedatastore"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparedatastore Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_preparedatastore_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the parent process to prepare a Datastore. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. When a Datastore is already preloaded, the preparation is usually fast since it doesn't need to do any I/O. If an error occurs, the time is not recorded. In future, we might want to introduce additional separate metrics for different types of datastore preparations (data needs to be loaded from disk, data already available, etc.)
"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
label: "Ls Preparelsdatabase Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Ls Preparelsdatabase"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparelsdatabase Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_preparelsdatabase_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the content process to fully prepare a new LSDatabase, including any time required to prepare a Datastore in the parent. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. If an error occurs, the time is not recorded.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
label: "Ls Request Recv Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Recv Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
label: "Ls Request Send Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Send Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__labeled_counter__media_audio_backend {
label: "Media Audio Backend"
hidden: yes
@ -5066,6 +5138,42 @@ To be used to validate GIFFT.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Received Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/networking_http_3_ecn_ce_ect0_ratio_received"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) received.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Sent Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/networking_http_3_ecn_ce_ect0_ratio_sent"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) sent.
"
}
dimension: metrics__labeled_counter__networking_http_3_ecn_path_capability {
label: "Networking Http 3 Ecn Path Capability"
hidden: yes
@ -10599,6 +10707,56 @@ documented in the ping's pings.yaml file.
}
}
measure: ls_request_recv_cancellation {
type: sum
sql: ${metrics__counter__ls_request_recv_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_recv_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_recv_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation {
type: sum
sql: ${metrics__counter__ls_request_send_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_send_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/firefox_desktop_background_update/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: netwerk_parent_connect_timeout {
type: sum
sql: ${metrics__counter__netwerk_parent_connect_timeout} ;;
@ -18666,6 +18824,30 @@ view: metrics__metrics__custom_distribution__networking_http_3_download_throughp
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -20290,6 +20472,30 @@ view: metrics__metrics__timing_distribution__javascript_pageload_xdr_encode_time
}
}
view: metrics__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -686,6 +686,24 @@ This does not include deletion-request pings.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Recv Cancellation"
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Send Cancellation"
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__counter__netwerk_parent_connect_timeout {
sql: ${TABLE}.metrics.counter.netwerk_parent_connect_timeout ;;
type: number
@ -1851,6 +1869,46 @@ This does not include deletion-request pings.
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_loss_ratio__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_loss_ratio.count ;;
type: number
@ -7711,6 +7769,126 @@ documented in the ping's pings.yaml file.
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__network_cache_hit_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.network_cache_hit_time.bucket_count ;;
type: number
@ -13139,6 +13317,30 @@ view: metrics_table__metrics__custom_distribution__networking_http_3_download_th
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -14763,6 +14965,30 @@ view: metrics_table__metrics__timing_distribution__javascript_pageload_xdr_encod
}
}
view: metrics_table__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -4471,6 +4471,78 @@ To be used to validate GIFFT.
"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
label: "Ls Preparedatastore Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Ls Preparedatastore"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparedatastore Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_preparedatastore_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the parent process to prepare a Datastore. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. When a Datastore is already preloaded, the preparation is usually fast since it doesn't need to do any I/O. If an error occurs, the time is not recorded. In future, we might want to introduce additional separate metrics for different types of datastore preparations (data needs to be loaded from disk, data already available, etc.)
"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
label: "Ls Preparelsdatabase Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Ls Preparelsdatabase"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparelsdatabase Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_preparelsdatabase_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the content process to fully prepare a new LSDatabase, including any time required to prepare a Datastore in the parent. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. If an error occurs, the time is not recorded.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
label: "Ls Request Recv Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Recv Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
label: "Ls Request Send Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Send Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__labeled_counter__media_audio_backend {
label: "Media Audio Backend"
hidden: yes
@ -5700,6 +5772,42 @@ To be used to validate GIFFT.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Received Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/networking_http_3_ecn_ce_ect0_ratio_received"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) received.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Sent Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/networking_http_3_ecn_ce_ect0_ratio_sent"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) sent.
"
}
dimension: metrics__labeled_counter__networking_http_3_ecn_path_capability {
label: "Networking Http 3 Ecn Path Capability"
hidden: yes
@ -11482,6 +11590,56 @@ Deprecated: `native_code_crash`, `fatal_native_code_crash` and `nonfatal_native_
}
}
measure: ls_request_recv_cancellation {
type: sum
sql: ${metrics__counter__ls_request_recv_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_recv_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_recv_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation {
type: sum
sql: ${metrics__counter__ls_request_send_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_send_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/focus_android/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: netwerk_parent_connect_timeout {
type: sum
sql: ${metrics__counter__netwerk_parent_connect_timeout} ;;
@ -19812,6 +19970,30 @@ view: metrics__metrics__custom_distribution__networking_http_3_download_throughp
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -21440,6 +21622,30 @@ view: metrics__metrics__timing_distribution__javascript_pageload_xdr_encode_time
}
}
view: metrics__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -668,6 +668,20 @@ view: metrics_table {
group_item_label: "Httpsfirst Upgraded Schemeless"
}
dimension: metrics__counter__ls_request_recv_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Recv Cancellation"
}
dimension: metrics__counter__ls_request_send_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Send Cancellation"
}
dimension: metrics__counter__netwerk_parent_connect_timeout {
sql: ${TABLE}.metrics.counter.netwerk_parent_connect_timeout ;;
type: number
@ -1768,6 +1782,44 @@ view: metrics_table {
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Count"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Count"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_loss_ratio__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_loss_ratio.count ;;
type: number
@ -7200,6 +7252,124 @@ view: metrics_table {
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__network_cache_hit_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.network_cache_hit_time.bucket_count ;;
type: number
@ -12676,6 +12846,30 @@ view: metrics_table__metrics__custom_distribution__networking_http_3_download_th
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -14304,6 +14498,30 @@ view: metrics_table__metrics__timing_distribution__javascript_pageload_xdr_encod
}
}
view: metrics_table__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -4471,6 +4471,78 @@ To be used to validate GIFFT.
"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
label: "Ls Preparedatastore Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Ls Preparedatastore"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparedatastore Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_preparedatastore_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the parent process to prepare a Datastore. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. When a Datastore is already preloaded, the preparation is usually fast since it doesn't need to do any I/O. If an error occurs, the time is not recorded. In future, we might want to introduce additional separate metrics for different types of datastore preparations (data needs to be loaded from disk, data already available, etc.)
"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
label: "Ls Preparelsdatabase Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Ls Preparelsdatabase"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparelsdatabase Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_preparelsdatabase_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the content process to fully prepare a new LSDatabase, including any time required to prepare a Datastore in the parent. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. If an error occurs, the time is not recorded.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
label: "Ls Request Recv Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Recv Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
label: "Ls Request Send Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Send Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__labeled_counter__media_audio_backend {
label: "Media Audio Backend"
hidden: yes
@ -5700,6 +5772,42 @@ To be used to validate GIFFT.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Received Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/networking_http_3_ecn_ce_ect0_ratio_received"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) received.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Sent Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/networking_http_3_ecn_ce_ect0_ratio_sent"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) sent.
"
}
dimension: metrics__labeled_counter__networking_http_3_ecn_path_capability {
label: "Networking Http 3 Ecn Path Capability"
hidden: yes
@ -11515,6 +11623,56 @@ Deprecated: `native_code_crash`, `fatal_native_code_crash` and `nonfatal_native_
}
}
measure: ls_request_recv_cancellation {
type: sum
sql: ${metrics__counter__ls_request_recv_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_recv_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_recv_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation {
type: sum
sql: ${metrics__counter__ls_request_send_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_send_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/klar_android/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: netwerk_parent_connect_timeout {
type: sum
sql: ${metrics__counter__netwerk_parent_connect_timeout} ;;
@ -19837,6 +19995,30 @@ view: metrics__metrics__custom_distribution__networking_http_3_download_throughp
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -21473,6 +21655,30 @@ view: metrics__metrics__timing_distribution__javascript_pageload_xdr_encode_time
}
}
view: metrics__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -858,6 +858,24 @@ This does not include deletion-request pings.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Recv Cancellation"
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Send Cancellation"
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__counter__netwerk_parent_connect_timeout {
sql: ${TABLE}.metrics.counter.netwerk_parent_connect_timeout ;;
type: number
@ -2073,6 +2091,46 @@ the tracking protection settings panel from the toolbar.
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_loss_ratio__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_loss_ratio.count ;;
type: number
@ -8096,6 +8154,126 @@ documented in the ping's pings.yaml file.
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__network_cache_hit_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.network_cache_hit_time.bucket_count ;;
type: number
@ -13643,6 +13821,30 @@ view: metrics_table__metrics__custom_distribution__networking_http_3_download_th
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -15279,6 +15481,30 @@ view: metrics_table__metrics__timing_distribution__javascript_pageload_xdr_encod
}
}
view: metrics_table__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

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

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

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

@ -41,108 +41,6 @@
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'retained'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'ad_clicks'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'days_of_use'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'qualified_cumulative_days_of_use'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
@ -198,8 +96,8 @@
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'active_hours'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
@ -234,8 +132,8 @@
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'memory_total'
add_an_image_to_pdf_with_alt_text_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
@ -248,6 +146,40 @@
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
Percentile: add_an_image_to_pdf_with_alt_text_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'ad_clicks'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'search_count'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'retained'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: add_an_image_to_pdf_with_alt_text_rollout.submission_date
field_y: add_an_image_to_pdf_with_alt_text_rollout.point
log_scale: false
ci_lower: add_an_image_to_pdf_with_alt_text_rollout.lower
ci_upper: add_an_image_to_pdf_with_alt_text_rollout.upper
show_grid: true
listen:
Date: add_an_image_to_pdf_with_alt_text_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: add_an_image_to_pdf_with_alt_text_rollout
type: looker_line
fields: [
add_an_image_to_pdf_with_alt_text_rollout.submission_date,
add_an_image_to_pdf_with_alt_text_rollout.branch,
add_an_image_to_pdf_with_alt_text_rollout.point
]
pivots: [
add_an_image_to_pdf_with_alt_text_rollout.branch
]
filters:
add_an_image_to_pdf_with_alt_text_rollout.metric: 'days_of_use'
add_an_image_to_pdf_with_alt_text_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'retained'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
@ -198,8 +96,8 @@
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'active_hours'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
@ -234,8 +132,8 @@
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'memory_total'
address_autofill_desktop_pref_beta_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
@ -248,6 +146,40 @@
Date: address_autofill_desktop_pref_beta_rollout.submission_date
Percentile: address_autofill_desktop_pref_beta_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'search_count'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'retained'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_beta_rollout.submission_date
field_y: address_autofill_desktop_pref_beta_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_beta_rollout.lower
ci_upper: address_autofill_desktop_pref_beta_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_beta_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_beta_rollout.submission_date,
address_autofill_desktop_pref_beta_rollout.branch,
address_autofill_desktop_pref_beta_rollout.point
]
pivots: [
address_autofill_desktop_pref_beta_rollout.branch
]
filters:
address_autofill_desktop_pref_beta_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_beta_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'retained'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
@ -198,8 +96,8 @@
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'active_hours'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
@ -234,8 +132,8 @@
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'memory_total'
address_autofill_desktop_pref_nightly_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
@ -248,6 +146,40 @@
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
Percentile: address_autofill_desktop_pref_nightly_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'search_count'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'retained'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_nightly_rollout.submission_date
field_y: address_autofill_desktop_pref_nightly_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_nightly_rollout.lower
ci_upper: address_autofill_desktop_pref_nightly_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_nightly_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_nightly_rollout.submission_date,
address_autofill_desktop_pref_nightly_rollout.branch,
address_autofill_desktop_pref_nightly_rollout.point
]
pivots: [
address_autofill_desktop_pref_nightly_rollout.branch
]
filters:
address_autofill_desktop_pref_nightly_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_nightly_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'retained'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
address_autofill_desktop_pref_release_rollout.metric: 'qualified_cumulative_days_of_use'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
@ -198,8 +96,8 @@
filters:
address_autofill_desktop_pref_release_rollout.metric: 'active_hours'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
@ -234,8 +132,8 @@
filters:
address_autofill_desktop_pref_release_rollout.metric: 'memory_total'
address_autofill_desktop_pref_release_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
@ -248,6 +146,40 @@
Date: address_autofill_desktop_pref_release_rollout.submission_date
Percentile: address_autofill_desktop_pref_release_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'ad_clicks'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
address_autofill_desktop_pref_release_rollout.metric: 'search_count'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'retained'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: address_autofill_desktop_pref_release_rollout.submission_date
field_y: address_autofill_desktop_pref_release_rollout.point
log_scale: false
ci_lower: address_autofill_desktop_pref_release_rollout.lower
ci_upper: address_autofill_desktop_pref_release_rollout.upper
show_grid: true
listen:
Date: address_autofill_desktop_pref_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: address_autofill_desktop_pref_release_rollout
type: looker_line
fields: [
address_autofill_desktop_pref_release_rollout.submission_date,
address_autofill_desktop_pref_release_rollout.branch,
address_autofill_desktop_pref_release_rollout.point
]
pivots: [
address_autofill_desktop_pref_release_rollout.branch
]
filters:
address_autofill_desktop_pref_release_rollout.metric: 'days_of_use'
address_autofill_desktop_pref_release_rollout.statistic: mean
row: 30
col: 12
width: 12

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

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

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

@ -10,39 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Focus Android Daily Active Users V2
name: Focus Android Daily Active Users V2_sum
note_state: expanded
note_display: above
note_text: Sum
explore: all_browsers_dau
type: looker_line
fields: [
all_browsers_dau.submission_date,
all_browsers_dau.branch,
all_browsers_dau.point
]
pivots: [
all_browsers_dau.branch
]
filters:
all_browsers_dau.metric: 'focus_android_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: all_browsers_dau.submission_date
field_y: all_browsers_dau.point
log_scale: false
ci_lower: all_browsers_dau.lower
ci_upper: all_browsers_dau.upper
show_grid: true
listen:
Date: all_browsers_dau.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Focus Ios Daily Active Users V2
name: Focus Ios Daily Active Users V2_sum
note_state: expanded
@ -62,7 +29,7 @@
all_browsers_dau.metric: 'focus_ios_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 0
col: 12
col: 0
width: 12
height: 8
field_x: all_browsers_dau.submission_date
@ -94,6 +61,39 @@
filters:
all_browsers_dau.metric: 'firefox_ios_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 0
col: 12
width: 12
height: 8
field_x: all_browsers_dau.submission_date
field_y: all_browsers_dau.point
log_scale: false
ci_lower: all_browsers_dau.lower
ci_upper: all_browsers_dau.upper
show_grid: true
listen:
Date: all_browsers_dau.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Focus Android Daily Active Users V2
name: Focus Android Daily Active Users V2_sum
note_state: expanded
note_display: above
note_text: Sum
explore: all_browsers_dau
type: looker_line
fields: [
all_browsers_dau.submission_date,
all_browsers_dau.branch,
all_browsers_dau.point
]
pivots: [
all_browsers_dau.branch
]
filters:
all_browsers_dau.metric: 'focus_android_daily_active_users_v2'
all_browsers_dau.statistic: sum
row: 10
col: 0
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'tagged_sap_searches'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
android_default_toolbar_placement_treatment_a_rollout.metric: 'uri_count'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'active_hours'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'ad_clicks'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'retained'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'tagged_sap_searches'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'days_of_use'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'active_hours'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'search_count'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'retained'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: android_default_toolbar_placement_treatment_a_rollout.submission_date
field_y: android_default_toolbar_placement_treatment_a_rollout.point
log_scale: false
ci_lower: android_default_toolbar_placement_treatment_a_rollout.lower
ci_upper: android_default_toolbar_placement_treatment_a_rollout.upper
show_grid: true
listen:
Date: android_default_toolbar_placement_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_default_toolbar_placement_treatment_a_rollout
type: looker_line
fields: [
android_default_toolbar_placement_treatment_a_rollout.submission_date,
android_default_toolbar_placement_treatment_a_rollout.branch,
android_default_toolbar_placement_treatment_a_rollout.point
]
pivots: [
android_default_toolbar_placement_treatment_a_rollout.branch
]
filters:
android_default_toolbar_placement_treatment_a_rollout.metric: 'days_of_use'
android_default_toolbar_placement_treatment_a_rollout.statistic: mean
row: 30
col: 0
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'tagged_sap_searches'
android_navbar_nightly_experiment.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
android_navbar_nightly_experiment.metric: 'uri_count'
android_navbar_nightly_experiment.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'active_hours'
android_navbar_nightly_experiment.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
android_navbar_nightly_experiment.metric: 'ad_clicks'
android_navbar_nightly_experiment.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'retained'
android_navbar_nightly_experiment.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'tagged_sap_searches'
android_navbar_nightly_experiment.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'days_of_use'
android_navbar_nightly_experiment.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'active_hours'
android_navbar_nightly_experiment.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
android_navbar_nightly_experiment.metric: 'search_count'
android_navbar_nightly_experiment.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'retained'
android_navbar_nightly_experiment.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: android_navbar_nightly_experiment.submission_date
field_y: android_navbar_nightly_experiment.point
log_scale: false
ci_lower: android_navbar_nightly_experiment.lower
ci_upper: android_navbar_nightly_experiment.upper
show_grid: true
listen:
Date: android_navbar_nightly_experiment.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_navbar_nightly_experiment
type: looker_line
fields: [
android_navbar_nightly_experiment.submission_date,
android_navbar_nightly_experiment.branch,
android_navbar_nightly_experiment.point
]
pivots: [
android_navbar_nightly_experiment.branch
]
filters:
android_navbar_nightly_experiment.metric: 'days_of_use'
android_navbar_nightly_experiment.statistic: mean
row: 30
col: 0
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'tagged_sap_searches'
android_ship_nightly_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
android_ship_nightly_rollout.metric: 'uri_count'
android_ship_nightly_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'active_hours'
android_ship_nightly_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
android_ship_nightly_rollout.metric: 'ad_clicks'
android_ship_nightly_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'retained'
android_ship_nightly_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'tagged_sap_searches'
android_ship_nightly_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'days_of_use'
android_ship_nightly_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'active_hours'
android_ship_nightly_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
android_ship_nightly_rollout.metric: 'search_count'
android_ship_nightly_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'retained'
android_ship_nightly_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: android_ship_nightly_rollout.submission_date
field_y: android_ship_nightly_rollout.point
log_scale: false
ci_lower: android_ship_nightly_rollout.lower
ci_upper: android_ship_nightly_rollout.upper
show_grid: true
listen:
Date: android_ship_nightly_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: android_ship_nightly_rollout
type: looker_line
fields: [
android_ship_nightly_rollout.submission_date,
android_ship_nightly_rollout.branch,
android_ship_nightly_rollout.point
]
pivots: [
android_ship_nightly_rollout.branch
]
filters:
android_ship_nightly_rollout.metric: 'days_of_use'
android_ship_nightly_rollout.statistic: mean
row: 30
col: 0
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
@ -198,8 +96,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
@ -234,8 +132,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'memory_total'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
@ -248,6 +146,40 @@
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
Percentile: backgroundupdate_enable_unelevated_installations_rollout_3.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3.branch,
backgroundupdate_enable_unelevated_installations_rollout_3.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
@ -198,8 +96,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
@ -234,8 +132,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'memory_total'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
@ -248,6 +146,40 @@
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
Percentile: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_nightly
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_nightly.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'qualified_cumulative_days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
@ -198,8 +96,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'active_hours'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
@ -234,8 +132,8 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'memory_total'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
@ -248,6 +146,40 @@
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
Percentile: backgroundupdate_enable_unelevated_installations_rollout_3_release.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'ad_clicks'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'search_count'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'retained'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
field_y: backgroundupdate_enable_unelevated_installations_rollout_3_release.point
log_scale: false
ci_lower: backgroundupdate_enable_unelevated_installations_rollout_3_release.lower
ci_upper: backgroundupdate_enable_unelevated_installations_rollout_3_release.upper
show_grid: true
listen:
Date: backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: backgroundupdate_enable_unelevated_installations_rollout_3_release
type: looker_line
fields: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.submission_date,
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch,
backgroundupdate_enable_unelevated_installations_rollout_3_release.point
]
pivots: [
backgroundupdate_enable_unelevated_installations_rollout_3_release.branch
]
filters:
backgroundupdate_enable_unelevated_installations_rollout_3_release.metric: 'days_of_use'
backgroundupdate_enable_unelevated_installations_rollout_3_release.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: consolidated_search_configuration_row_desktop_relaunch
type: looker_line
fields: [
consolidated_search_configuration_row_desktop_relaunch.submission_date,
consolidated_search_configuration_row_desktop_relaunch.branch,
consolidated_search_configuration_row_desktop_relaunch.point
]
pivots: [
consolidated_search_configuration_row_desktop_relaunch.branch
]
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'retained'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
field_y: consolidated_search_configuration_row_desktop_relaunch.point
log_scale: false
ci_lower: consolidated_search_configuration_row_desktop_relaunch.lower
ci_upper: consolidated_search_configuration_row_desktop_relaunch.upper
show_grid: true
listen:
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: consolidated_search_configuration_row_desktop_relaunch
type: looker_line
fields: [
consolidated_search_configuration_row_desktop_relaunch.submission_date,
consolidated_search_configuration_row_desktop_relaunch.branch,
consolidated_search_configuration_row_desktop_relaunch.point
]
pivots: [
consolidated_search_configuration_row_desktop_relaunch.branch
]
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'ad_clicks'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
field_y: consolidated_search_configuration_row_desktop_relaunch.point
log_scale: false
ci_lower: consolidated_search_configuration_row_desktop_relaunch.lower
ci_upper: consolidated_search_configuration_row_desktop_relaunch.upper
show_grid: true
listen:
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: consolidated_search_configuration_row_desktop_relaunch
type: looker_line
fields: [
consolidated_search_configuration_row_desktop_relaunch.submission_date,
consolidated_search_configuration_row_desktop_relaunch.branch,
consolidated_search_configuration_row_desktop_relaunch.point
]
pivots: [
consolidated_search_configuration_row_desktop_relaunch.branch
]
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'days_of_use'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
field_y: consolidated_search_configuration_row_desktop_relaunch.point
log_scale: false
ci_lower: consolidated_search_configuration_row_desktop_relaunch.lower
ci_upper: consolidated_search_configuration_row_desktop_relaunch.upper
show_grid: true
listen:
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'qualified_cumulative_days_of_use'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
@ -198,8 +96,8 @@
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'active_hours'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
@ -234,8 +132,8 @@
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'memory_total'
consolidated_search_configuration_row_desktop_relaunch.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
@ -248,6 +146,40 @@
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
Percentile: consolidated_search_configuration_row_desktop_relaunch.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: consolidated_search_configuration_row_desktop_relaunch
type: looker_line
fields: [
consolidated_search_configuration_row_desktop_relaunch.submission_date,
consolidated_search_configuration_row_desktop_relaunch.branch,
consolidated_search_configuration_row_desktop_relaunch.point
]
pivots: [
consolidated_search_configuration_row_desktop_relaunch.branch
]
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'ad_clicks'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
field_y: consolidated_search_configuration_row_desktop_relaunch.point
log_scale: false
ci_lower: consolidated_search_configuration_row_desktop_relaunch.lower
ci_upper: consolidated_search_configuration_row_desktop_relaunch.upper
show_grid: true
listen:
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'search_count'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
field_y: consolidated_search_configuration_row_desktop_relaunch.point
log_scale: false
ci_lower: consolidated_search_configuration_row_desktop_relaunch.lower
ci_upper: consolidated_search_configuration_row_desktop_relaunch.upper
show_grid: true
listen:
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: consolidated_search_configuration_row_desktop_relaunch
type: looker_line
fields: [
consolidated_search_configuration_row_desktop_relaunch.submission_date,
consolidated_search_configuration_row_desktop_relaunch.branch,
consolidated_search_configuration_row_desktop_relaunch.point
]
pivots: [
consolidated_search_configuration_row_desktop_relaunch.branch
]
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'retained'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: consolidated_search_configuration_row_desktop_relaunch.submission_date
field_y: consolidated_search_configuration_row_desktop_relaunch.point
log_scale: false
ci_lower: consolidated_search_configuration_row_desktop_relaunch.lower
ci_upper: consolidated_search_configuration_row_desktop_relaunch.upper
show_grid: true
listen:
Date: consolidated_search_configuration_row_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: consolidated_search_configuration_row_desktop_relaunch
type: looker_line
fields: [
consolidated_search_configuration_row_desktop_relaunch.submission_date,
consolidated_search_configuration_row_desktop_relaunch.branch,
consolidated_search_configuration_row_desktop_relaunch.point
]
pivots: [
consolidated_search_configuration_row_desktop_relaunch.branch
]
filters:
consolidated_search_configuration_row_desktop_relaunch.metric: 'days_of_use'
consolidated_search_configuration_row_desktop_relaunch.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: deprecate_ipaddrany_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: deprecate_ipaddrany_rollout
type: looker_line
fields: [
deprecate_ipaddrany_rollout.submission_date,
deprecate_ipaddrany_rollout.branch,
deprecate_ipaddrany_rollout.point
]
pivots: [
deprecate_ipaddrany_rollout.branch
]
filters:
deprecate_ipaddrany_rollout.metric: 'retained'
deprecate_ipaddrany_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
field_y: deprecate_ipaddrany_rollout.point
log_scale: false
ci_lower: deprecate_ipaddrany_rollout.lower
ci_upper: deprecate_ipaddrany_rollout.upper
show_grid: true
listen:
Date: deprecate_ipaddrany_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: deprecate_ipaddrany_rollout
type: looker_line
fields: [
deprecate_ipaddrany_rollout.submission_date,
deprecate_ipaddrany_rollout.branch,
deprecate_ipaddrany_rollout.point
]
pivots: [
deprecate_ipaddrany_rollout.branch
]
filters:
deprecate_ipaddrany_rollout.metric: 'ad_clicks'
deprecate_ipaddrany_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
field_y: deprecate_ipaddrany_rollout.point
log_scale: false
ci_lower: deprecate_ipaddrany_rollout.lower
ci_upper: deprecate_ipaddrany_rollout.upper
show_grid: true
listen:
Date: deprecate_ipaddrany_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: deprecate_ipaddrany_rollout
type: looker_line
fields: [
deprecate_ipaddrany_rollout.submission_date,
deprecate_ipaddrany_rollout.branch,
deprecate_ipaddrany_rollout.point
]
pivots: [
deprecate_ipaddrany_rollout.branch
]
filters:
deprecate_ipaddrany_rollout.metric: 'days_of_use'
deprecate_ipaddrany_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
field_y: deprecate_ipaddrany_rollout.point
log_scale: false
ci_lower: deprecate_ipaddrany_rollout.lower
ci_upper: deprecate_ipaddrany_rollout.upper
show_grid: true
listen:
Date: deprecate_ipaddrany_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
deprecate_ipaddrany_rollout.metric: 'qualified_cumulative_days_of_use'
deprecate_ipaddrany_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
@ -198,8 +96,8 @@
filters:
deprecate_ipaddrany_rollout.metric: 'active_hours'
deprecate_ipaddrany_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
@ -234,8 +132,8 @@
filters:
deprecate_ipaddrany_rollout.metric: 'memory_total'
deprecate_ipaddrany_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
@ -248,6 +146,40 @@
Date: deprecate_ipaddrany_rollout.submission_date
Percentile: deprecate_ipaddrany_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: deprecate_ipaddrany_rollout
type: looker_line
fields: [
deprecate_ipaddrany_rollout.submission_date,
deprecate_ipaddrany_rollout.branch,
deprecate_ipaddrany_rollout.point
]
pivots: [
deprecate_ipaddrany_rollout.branch
]
filters:
deprecate_ipaddrany_rollout.metric: 'ad_clicks'
deprecate_ipaddrany_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
field_y: deprecate_ipaddrany_rollout.point
log_scale: false
ci_lower: deprecate_ipaddrany_rollout.lower
ci_upper: deprecate_ipaddrany_rollout.upper
show_grid: true
listen:
Date: deprecate_ipaddrany_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
deprecate_ipaddrany_rollout.metric: 'search_count'
deprecate_ipaddrany_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
field_y: deprecate_ipaddrany_rollout.point
log_scale: false
ci_lower: deprecate_ipaddrany_rollout.lower
ci_upper: deprecate_ipaddrany_rollout.upper
show_grid: true
listen:
Date: deprecate_ipaddrany_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: deprecate_ipaddrany_rollout
type: looker_line
fields: [
deprecate_ipaddrany_rollout.submission_date,
deprecate_ipaddrany_rollout.branch,
deprecate_ipaddrany_rollout.point
]
pivots: [
deprecate_ipaddrany_rollout.branch
]
filters:
deprecate_ipaddrany_rollout.metric: 'retained'
deprecate_ipaddrany_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: deprecate_ipaddrany_rollout.submission_date
field_y: deprecate_ipaddrany_rollout.point
log_scale: false
ci_lower: deprecate_ipaddrany_rollout.lower
ci_upper: deprecate_ipaddrany_rollout.upper
show_grid: true
listen:
Date: deprecate_ipaddrany_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: deprecate_ipaddrany_rollout
type: looker_line
fields: [
deprecate_ipaddrany_rollout.submission_date,
deprecate_ipaddrany_rollout.branch,
deprecate_ipaddrany_rollout.point
]
pivots: [
deprecate_ipaddrany_rollout.branch
]
filters:
deprecate_ipaddrany_rollout.metric: 'days_of_use'
deprecate_ipaddrany_rollout.statistic: mean
row: 30
col: 12
width: 12

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

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

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

@ -41,108 +41,6 @@
listen:
Date: disable_redirects_for_authretries.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: disable_redirects_for_authretries
type: looker_line
fields: [
disable_redirects_for_authretries.submission_date,
disable_redirects_for_authretries.branch,
disable_redirects_for_authretries.point
]
pivots: [
disable_redirects_for_authretries.branch
]
filters:
disable_redirects_for_authretries.metric: 'retained'
disable_redirects_for_authretries.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
field_y: disable_redirects_for_authretries.point
log_scale: false
ci_lower: disable_redirects_for_authretries.lower
ci_upper: disable_redirects_for_authretries.upper
show_grid: true
listen:
Date: disable_redirects_for_authretries.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: disable_redirects_for_authretries
type: looker_line
fields: [
disable_redirects_for_authretries.submission_date,
disable_redirects_for_authretries.branch,
disable_redirects_for_authretries.point
]
pivots: [
disable_redirects_for_authretries.branch
]
filters:
disable_redirects_for_authretries.metric: 'ad_clicks'
disable_redirects_for_authretries.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
field_y: disable_redirects_for_authretries.point
log_scale: false
ci_lower: disable_redirects_for_authretries.lower
ci_upper: disable_redirects_for_authretries.upper
show_grid: true
listen:
Date: disable_redirects_for_authretries.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: disable_redirects_for_authretries
type: looker_line
fields: [
disable_redirects_for_authretries.submission_date,
disable_redirects_for_authretries.branch,
disable_redirects_for_authretries.point
]
pivots: [
disable_redirects_for_authretries.branch
]
filters:
disable_redirects_for_authretries.metric: 'days_of_use'
disable_redirects_for_authretries.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
field_y: disable_redirects_for_authretries.point
log_scale: false
ci_lower: disable_redirects_for_authretries.lower
ci_upper: disable_redirects_for_authretries.upper
show_grid: true
listen:
Date: disable_redirects_for_authretries.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
disable_redirects_for_authretries.metric: 'qualified_cumulative_days_of_use'
disable_redirects_for_authretries.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
@ -198,8 +96,8 @@
filters:
disable_redirects_for_authretries.metric: 'active_hours'
disable_redirects_for_authretries.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
@ -234,8 +132,8 @@
filters:
disable_redirects_for_authretries.metric: 'memory_total'
disable_redirects_for_authretries.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
@ -248,6 +146,40 @@
Date: disable_redirects_for_authretries.submission_date
Percentile: disable_redirects_for_authretries.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: disable_redirects_for_authretries
type: looker_line
fields: [
disable_redirects_for_authretries.submission_date,
disable_redirects_for_authretries.branch,
disable_redirects_for_authretries.point
]
pivots: [
disable_redirects_for_authretries.branch
]
filters:
disable_redirects_for_authretries.metric: 'ad_clicks'
disable_redirects_for_authretries.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
field_y: disable_redirects_for_authretries.point
log_scale: false
ci_lower: disable_redirects_for_authretries.lower
ci_upper: disable_redirects_for_authretries.upper
show_grid: true
listen:
Date: disable_redirects_for_authretries.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
disable_redirects_for_authretries.metric: 'search_count'
disable_redirects_for_authretries.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
field_y: disable_redirects_for_authretries.point
log_scale: false
ci_lower: disable_redirects_for_authretries.lower
ci_upper: disable_redirects_for_authretries.upper
show_grid: true
listen:
Date: disable_redirects_for_authretries.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: disable_redirects_for_authretries
type: looker_line
fields: [
disable_redirects_for_authretries.submission_date,
disable_redirects_for_authretries.branch,
disable_redirects_for_authretries.point
]
pivots: [
disable_redirects_for_authretries.branch
]
filters:
disable_redirects_for_authretries.metric: 'retained'
disable_redirects_for_authretries.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: disable_redirects_for_authretries.submission_date
field_y: disable_redirects_for_authretries.point
log_scale: false
ci_lower: disable_redirects_for_authretries.lower
ci_upper: disable_redirects_for_authretries.upper
show_grid: true
listen:
Date: disable_redirects_for_authretries.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: disable_redirects_for_authretries
type: looker_line
fields: [
disable_redirects_for_authretries.submission_date,
disable_redirects_for_authretries.branch,
disable_redirects_for_authretries.point
]
pivots: [
disable_redirects_for_authretries.branch
]
filters:
disable_redirects_for_authretries.metric: 'days_of_use'
disable_redirects_for_authretries.statistic: mean
row: 30
col: 12
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'tagged_sap_searches'
enable_activation_telemetry_android.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
enable_activation_telemetry_android.metric: 'uri_count'
enable_activation_telemetry_android.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'active_hours'
enable_activation_telemetry_android.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
enable_activation_telemetry_android.metric: 'ad_clicks'
enable_activation_telemetry_android.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'retained'
enable_activation_telemetry_android.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'tagged_sap_searches'
enable_activation_telemetry_android.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'days_of_use'
enable_activation_telemetry_android.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'active_hours'
enable_activation_telemetry_android.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
enable_activation_telemetry_android.metric: 'search_count'
enable_activation_telemetry_android.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'retained'
enable_activation_telemetry_android.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android.submission_date
field_y: enable_activation_telemetry_android.point
log_scale: false
ci_lower: enable_activation_telemetry_android.lower
ci_upper: enable_activation_telemetry_android.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android
type: looker_line
fields: [
enable_activation_telemetry_android.submission_date,
enable_activation_telemetry_android.branch,
enable_activation_telemetry_android.point
]
pivots: [
enable_activation_telemetry_android.branch
]
filters:
enable_activation_telemetry_android.metric: 'days_of_use'
enable_activation_telemetry_android.statistic: mean
row: 30
col: 0
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'tagged_sap_searches'
enable_activation_telemetry_android_beta.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
enable_activation_telemetry_android_beta.metric: 'uri_count'
enable_activation_telemetry_android_beta.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'active_hours'
enable_activation_telemetry_android_beta.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
enable_activation_telemetry_android_beta.metric: 'ad_clicks'
enable_activation_telemetry_android_beta.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'retained'
enable_activation_telemetry_android_beta.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'tagged_sap_searches'
enable_activation_telemetry_android_beta.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'days_of_use'
enable_activation_telemetry_android_beta.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'active_hours'
enable_activation_telemetry_android_beta.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
enable_activation_telemetry_android_beta.metric: 'search_count'
enable_activation_telemetry_android_beta.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'retained'
enable_activation_telemetry_android_beta.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: enable_activation_telemetry_android_beta.submission_date
field_y: enable_activation_telemetry_android_beta.point
log_scale: false
ci_lower: enable_activation_telemetry_android_beta.lower
ci_upper: enable_activation_telemetry_android_beta.upper
show_grid: true
listen:
Date: enable_activation_telemetry_android_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enable_activation_telemetry_android_beta
type: looker_line
fields: [
enable_activation_telemetry_android_beta.submission_date,
enable_activation_telemetry_android_beta.branch,
enable_activation_telemetry_android_beta.point
]
pivots: [
enable_activation_telemetry_android_beta.branch
]
filters:
enable_activation_telemetry_android_beta.metric: 'days_of_use'
enable_activation_telemetry_android_beta.statistic: mean
row: 30
col: 0
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: encrypted_client_hello_fallback_mechanism.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: encrypted_client_hello_fallback_mechanism
type: looker_line
fields: [
encrypted_client_hello_fallback_mechanism.submission_date,
encrypted_client_hello_fallback_mechanism.branch,
encrypted_client_hello_fallback_mechanism.point
]
pivots: [
encrypted_client_hello_fallback_mechanism.branch
]
filters:
encrypted_client_hello_fallback_mechanism.metric: 'retained'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
field_y: encrypted_client_hello_fallback_mechanism.point
log_scale: false
ci_lower: encrypted_client_hello_fallback_mechanism.lower
ci_upper: encrypted_client_hello_fallback_mechanism.upper
show_grid: true
listen:
Date: encrypted_client_hello_fallback_mechanism.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: encrypted_client_hello_fallback_mechanism
type: looker_line
fields: [
encrypted_client_hello_fallback_mechanism.submission_date,
encrypted_client_hello_fallback_mechanism.branch,
encrypted_client_hello_fallback_mechanism.point
]
pivots: [
encrypted_client_hello_fallback_mechanism.branch
]
filters:
encrypted_client_hello_fallback_mechanism.metric: 'ad_clicks'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
field_y: encrypted_client_hello_fallback_mechanism.point
log_scale: false
ci_lower: encrypted_client_hello_fallback_mechanism.lower
ci_upper: encrypted_client_hello_fallback_mechanism.upper
show_grid: true
listen:
Date: encrypted_client_hello_fallback_mechanism.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: encrypted_client_hello_fallback_mechanism
type: looker_line
fields: [
encrypted_client_hello_fallback_mechanism.submission_date,
encrypted_client_hello_fallback_mechanism.branch,
encrypted_client_hello_fallback_mechanism.point
]
pivots: [
encrypted_client_hello_fallback_mechanism.branch
]
filters:
encrypted_client_hello_fallback_mechanism.metric: 'days_of_use'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
field_y: encrypted_client_hello_fallback_mechanism.point
log_scale: false
ci_lower: encrypted_client_hello_fallback_mechanism.lower
ci_upper: encrypted_client_hello_fallback_mechanism.upper
show_grid: true
listen:
Date: encrypted_client_hello_fallback_mechanism.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
encrypted_client_hello_fallback_mechanism.metric: 'qualified_cumulative_days_of_use'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
@ -198,8 +96,8 @@
filters:
encrypted_client_hello_fallback_mechanism.metric: 'active_hours'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
@ -234,8 +132,8 @@
filters:
encrypted_client_hello_fallback_mechanism.metric: 'memory_total'
encrypted_client_hello_fallback_mechanism.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
@ -248,6 +146,40 @@
Date: encrypted_client_hello_fallback_mechanism.submission_date
Percentile: encrypted_client_hello_fallback_mechanism.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: encrypted_client_hello_fallback_mechanism
type: looker_line
fields: [
encrypted_client_hello_fallback_mechanism.submission_date,
encrypted_client_hello_fallback_mechanism.branch,
encrypted_client_hello_fallback_mechanism.point
]
pivots: [
encrypted_client_hello_fallback_mechanism.branch
]
filters:
encrypted_client_hello_fallback_mechanism.metric: 'ad_clicks'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
field_y: encrypted_client_hello_fallback_mechanism.point
log_scale: false
ci_lower: encrypted_client_hello_fallback_mechanism.lower
ci_upper: encrypted_client_hello_fallback_mechanism.upper
show_grid: true
listen:
Date: encrypted_client_hello_fallback_mechanism.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
encrypted_client_hello_fallback_mechanism.metric: 'search_count'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
field_y: encrypted_client_hello_fallback_mechanism.point
log_scale: false
ci_lower: encrypted_client_hello_fallback_mechanism.lower
ci_upper: encrypted_client_hello_fallback_mechanism.upper
show_grid: true
listen:
Date: encrypted_client_hello_fallback_mechanism.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: encrypted_client_hello_fallback_mechanism
type: looker_line
fields: [
encrypted_client_hello_fallback_mechanism.submission_date,
encrypted_client_hello_fallback_mechanism.branch,
encrypted_client_hello_fallback_mechanism.point
]
pivots: [
encrypted_client_hello_fallback_mechanism.branch
]
filters:
encrypted_client_hello_fallback_mechanism.metric: 'retained'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: encrypted_client_hello_fallback_mechanism.submission_date
field_y: encrypted_client_hello_fallback_mechanism.point
log_scale: false
ci_lower: encrypted_client_hello_fallback_mechanism.lower
ci_upper: encrypted_client_hello_fallback_mechanism.upper
show_grid: true
listen:
Date: encrypted_client_hello_fallback_mechanism.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: encrypted_client_hello_fallback_mechanism
type: looker_line
fields: [
encrypted_client_hello_fallback_mechanism.submission_date,
encrypted_client_hello_fallback_mechanism.branch,
encrypted_client_hello_fallback_mechanism.point
]
pivots: [
encrypted_client_hello_fallback_mechanism.branch
]
filters:
encrypted_client_hello_fallback_mechanism.metric: 'days_of_use'
encrypted_client_hello_fallback_mechanism.statistic: mean
row: 30
col: 12
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'tagged_sap_searches'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'uri_count'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'active_hours'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'ad_clicks'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'retained'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'tagged_sap_searches'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'days_of_use'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'active_hours'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'search_count'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'retained'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
field_y: enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
log_scale: false
ci_lower: enhanced_cross_platform_suggest_android_relaunch_2_rollout.lower
ci_upper: enhanced_cross_platform_suggest_android_relaunch_2_rollout.upper
show_grid: true
listen:
Date: enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: enhanced_cross_platform_suggest_android_relaunch_2_rollout
type: looker_line
fields: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.submission_date,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch,
enhanced_cross_platform_suggest_android_relaunch_2_rollout.point
]
pivots: [
enhanced_cross_platform_suggest_android_relaunch_2_rollout.branch
]
filters:
enhanced_cross_platform_suggest_android_relaunch_2_rollout.metric: 'days_of_use'
enhanced_cross_platform_suggest_android_relaunch_2_rollout.statistic: mean
row: 30
col: 0
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'retained'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'ad_clicks'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'days_of_use'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'qualified_cumulative_days_of_use'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
@ -198,8 +96,8 @@
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'active_hours'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
@ -234,8 +132,8 @@
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'memory_total'
extensions_migration_in_import_wizard_116_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
@ -248,6 +146,40 @@
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
Percentile: extensions_migration_in_import_wizard_116_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'ad_clicks'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'search_count'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'retained'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: extensions_migration_in_import_wizard_116_rollout.submission_date
field_y: extensions_migration_in_import_wizard_116_rollout.point
log_scale: false
ci_lower: extensions_migration_in_import_wizard_116_rollout.lower
ci_upper: extensions_migration_in_import_wizard_116_rollout.upper
show_grid: true
listen:
Date: extensions_migration_in_import_wizard_116_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: extensions_migration_in_import_wizard_116_rollout
type: looker_line
fields: [
extensions_migration_in_import_wizard_116_rollout.submission_date,
extensions_migration_in_import_wizard_116_rollout.branch,
extensions_migration_in_import_wizard_116_rollout.point
]
pivots: [
extensions_migration_in_import_wizard_116_rollout.branch
]
filters:
extensions_migration_in_import_wizard_116_rollout.metric: 'days_of_use'
extensions_migration_in_import_wizard_116_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'tagged_sap_searches'
fenix_homescreen_activation_event_validation.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
fenix_homescreen_activation_event_validation.metric: 'uri_count'
fenix_homescreen_activation_event_validation.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'active_hours'
fenix_homescreen_activation_event_validation.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
fenix_homescreen_activation_event_validation.metric: 'ad_clicks'
fenix_homescreen_activation_event_validation.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'retained'
fenix_homescreen_activation_event_validation.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'tagged_sap_searches'
fenix_homescreen_activation_event_validation.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'days_of_use'
fenix_homescreen_activation_event_validation.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'active_hours'
fenix_homescreen_activation_event_validation.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
fenix_homescreen_activation_event_validation.metric: 'search_count'
fenix_homescreen_activation_event_validation.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'retained'
fenix_homescreen_activation_event_validation.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: fenix_homescreen_activation_event_validation.submission_date
field_y: fenix_homescreen_activation_event_validation.point
log_scale: false
ci_lower: fenix_homescreen_activation_event_validation.lower
ci_upper: fenix_homescreen_activation_event_validation.upper
show_grid: true
listen:
Date: fenix_homescreen_activation_event_validation.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fenix_homescreen_activation_event_validation
type: looker_line
fields: [
fenix_homescreen_activation_event_validation.submission_date,
fenix_homescreen_activation_event_validation.branch,
fenix_homescreen_activation_event_validation.point
]
pivots: [
fenix_homescreen_activation_event_validation.branch
]
filters:
fenix_homescreen_activation_event_validation.metric: 'days_of_use'
fenix_homescreen_activation_event_validation.statistic: mean
row: 30
col: 0
width: 12

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

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

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

@ -10,76 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Ping Volume
name: Ping Volume_sum
note_state: expanded
@ -98,6 +28,76 @@
filters:
firefox_default_browser_agent.metric: 'ping_volume'
firefox_default_browser_agent.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.statistic: sum
row: 0
col: 12
width: 12
height: 8
field_x: firefox_default_browser_agent.submission_date
field_y: firefox_default_browser_agent.point
log_scale: false
ci_lower: firefox_default_browser_agent.lower
ci_upper: firefox_default_browser_agent.upper
show_grid: true
listen:
Date: firefox_default_browser_agent.submission_date
Normalized Channel: firefox_default_browser_agent.normalized_channel
Windows Version: firefox_default_browser_agent.windows_version
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_mean
note_state: expanded
note_display: above
note_text: Mean
explore: firefox_default_browser_agent
type: looker_line
fields: [
firefox_default_browser_agent.submission_date,
firefox_default_browser_agent.branch,
firefox_default_browser_agent.point
]
pivots: [
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.statistic: mean
row: 10
col: 0
width: 12
@ -185,8 +185,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_sum
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_sum
note_state: expanded
note_display: above
note_text: Sum
@ -201,7 +201,7 @@
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: sum
row: 20
col: 12
@ -220,8 +220,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Firefox Default Changed Volume
name: Firefox Default Changed Volume_mean
- title: Firefox Is Default Volume
name: Firefox Is Default Volume_mean
note_state: expanded
note_display: above
note_text: Mean
@ -236,7 +236,7 @@
firefox_default_browser_agent.branch
]
filters:
firefox_default_browser_agent.metric: 'firefox_default_changed_volume'
firefox_default_browser_agent.metric: 'firefox_is_default_volume'
firefox_default_browser_agent.statistic: mean
row: 30
col: 0

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

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

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

@ -10,41 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Dirty Startup
name: Dirty Startup_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
explore: firefox_ios_beta_health
type: looker_line
fields: [
firefox_ios_beta_health.submission_date,
firefox_ios_beta_health.branch,
firefox_ios_beta_health.point
]
pivots: [
firefox_ios_beta_health.branch
]
filters:
firefox_ios_beta_health.metric: 'dirty_startup'
firefox_ios_beta_health.statistic: total_ratio
row: 0
col: 0
width: 12
height: 8
field_x: firefox_ios_beta_health.submission_date
field_y: firefox_ios_beta_health.point
log_scale: false
ci_lower: firefox_ios_beta_health.lower
ci_upper: firefox_ios_beta_health.upper
show_grid: true
listen:
Date: firefox_ios_beta_health.submission_date
Channel: firefox_ios_beta_health.channel
Release: firefox_ios_beta_health.release
active: "#3FE1B0"
defaults_version: 0
- title: Total Baseline Pings
name: Total Baseline Pings_sum
note_state: expanded
@ -64,6 +29,41 @@
firefox_ios_beta_health.metric: 'total_baseline_pings'
firefox_ios_beta_health.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_ios_beta_health.submission_date
field_y: firefox_ios_beta_health.point
log_scale: false
ci_lower: firefox_ios_beta_health.lower
ci_upper: firefox_ios_beta_health.upper
show_grid: true
listen:
Date: firefox_ios_beta_health.submission_date
Channel: firefox_ios_beta_health.channel
Release: firefox_ios_beta_health.release
active: "#3FE1B0"
defaults_version: 0
- title: Hang Exception
name: Hang Exception_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
explore: firefox_ios_beta_health
type: looker_line
fields: [
firefox_ios_beta_health.submission_date,
firefox_ios_beta_health.branch,
firefox_ios_beta_health.point
]
pivots: [
firefox_ios_beta_health.branch
]
filters:
firefox_ios_beta_health.metric: 'hang_exception'
firefox_ios_beta_health.statistic: total_ratio
row: 0
col: 12
width: 12
height: 8
@ -115,8 +115,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Hang Exception
name: Hang Exception_total_ratio
- title: Dirty Startup
name: Dirty Startup_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
@ -131,7 +131,7 @@
firefox_ios_beta_health.branch
]
filters:
firefox_ios_beta_health.metric: 'hang_exception'
firefox_ios_beta_health.metric: 'dirty_startup'
firefox_ios_beta_health.statistic: total_ratio
row: 10
col: 12

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

@ -10,39 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Dirty Startup
name: Dirty Startup_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
explore: firefox_ios_health
type: looker_line
fields: [
firefox_ios_health.submission_date,
firefox_ios_health.branch,
firefox_ios_health.point
]
pivots: [
firefox_ios_health.branch
]
filters:
firefox_ios_health.metric: 'dirty_startup'
firefox_ios_health.statistic: total_ratio
row: 0
col: 0
width: 12
height: 8
field_x: firefox_ios_health.submission_date
field_y: firefox_ios_health.point
log_scale: false
ci_lower: firefox_ios_health.lower
ci_upper: firefox_ios_health.upper
show_grid: true
listen:
Date: firefox_ios_health.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Total Baseline Pings
name: Total Baseline Pings_sum
note_state: expanded
@ -62,6 +29,39 @@
firefox_ios_health.metric: 'total_baseline_pings'
firefox_ios_health.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_ios_health.submission_date
field_y: firefox_ios_health.point
log_scale: false
ci_lower: firefox_ios_health.lower
ci_upper: firefox_ios_health.upper
show_grid: true
listen:
Date: firefox_ios_health.submission_date
active: "#3FE1B0"
defaults_version: 0
- title: Hang Exception
name: Hang Exception_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
explore: firefox_ios_health
type: looker_line
fields: [
firefox_ios_health.submission_date,
firefox_ios_health.branch,
firefox_ios_health.point
]
pivots: [
firefox_ios_health.branch
]
filters:
firefox_ios_health.metric: 'hang_exception'
firefox_ios_health.statistic: total_ratio
row: 0
col: 12
width: 12
height: 8
@ -109,8 +109,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Hang Exception
name: Hang Exception_total_ratio
- title: Dirty Startup
name: Dirty Startup_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
@ -125,7 +125,7 @@
firefox_ios_health.branch
]
filters:
firefox_ios_health.metric: 'hang_exception'
firefox_ios_health.metric: 'dirty_startup'
firefox_ios_health.statistic: total_ratio
row: 10
col: 12

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

@ -10,76 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Unexpected Data
name: Unexpected Data_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_messaging_system
type: looker_line
fields: [
firefox_messaging_system.submission_date,
firefox_messaging_system.branch,
firefox_messaging_system.point
]
pivots: [
firefox_messaging_system.branch, firefox_messaging_system.metric
]
filters:
firefox_messaging_system.metric: '"unknown_keys_volume", "invalid_nested_data_volume"'
firefox_messaging_system.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: firefox_messaging_system.submission_date
field_y: firefox_messaging_system.point
log_scale: false
ci_lower: firefox_messaging_system.lower
ci_upper: firefox_messaging_system.upper
show_grid: true
listen:
Date: firefox_messaging_system.submission_date
Normalized Channel: firefox_messaging_system.normalized_channel
Normalized Os: firefox_messaging_system.normalized_os
active: "#3FE1B0"
defaults_version: 0
- title: Undesired Events Ping Volume
name: Undesired Events Ping Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_messaging_system
type: looker_line
fields: [
firefox_messaging_system.submission_date,
firefox_messaging_system.branch,
firefox_messaging_system.point
]
pivots: [
firefox_messaging_system.branch
]
filters:
firefox_messaging_system.metric: 'undesired_events_ping_volume'
firefox_messaging_system.statistic: sum
row: 0
col: 12
width: 12
height: 8
field_x: firefox_messaging_system.submission_date
field_y: firefox_messaging_system.point
log_scale: false
ci_lower: firefox_messaging_system.lower
ci_upper: firefox_messaging_system.upper
show_grid: true
listen:
Date: firefox_messaging_system.submission_date
Normalized Channel: firefox_messaging_system.normalized_channel
Normalized Os: firefox_messaging_system.normalized_os
active: "#3FE1B0"
defaults_version: 0
- title: Ping Volume By Ping Type
name: Ping Volume By Ping Type_sum
note_state: expanded
@ -96,9 +26,9 @@
firefox_messaging_system.branch, firefox_messaging_system.metric
]
filters:
firefox_messaging_system.metric: '"toolbar_badge_ping_volume", "spotlight_ping_volume", "toast_notification_ping_volume", "infobar_ping_volume", "whats_new_panel_ping_volume", "cfr_ping_volume", "moments_ping_volume", "other_ping_volume", "null_ping_volume"'
firefox_messaging_system.metric: '"toolbar_badge_ping_volume", "infobar_ping_volume", "spotlight_ping_volume", "whats_new_panel_ping_volume", "toast_notification_ping_volume", "cfr_ping_volume", "other_ping_volume", "null_ping_volume", "moments_ping_volume"'
firefox_messaging_system.statistic: sum
row: 10
row: 0
col: 0
width: 12
height: 8
@ -133,6 +63,76 @@
filters:
firefox_messaging_system.metric: 'ping_volume'
firefox_messaging_system.statistic: sum
row: 0
col: 12
width: 12
height: 8
field_x: firefox_messaging_system.submission_date
field_y: firefox_messaging_system.point
log_scale: false
ci_lower: firefox_messaging_system.lower
ci_upper: firefox_messaging_system.upper
show_grid: true
listen:
Date: firefox_messaging_system.submission_date
Normalized Channel: firefox_messaging_system.normalized_channel
Normalized Os: firefox_messaging_system.normalized_os
active: "#3FE1B0"
defaults_version: 0
- title: Undesired Events Ping Volume
name: Undesired Events Ping Volume_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_messaging_system
type: looker_line
fields: [
firefox_messaging_system.submission_date,
firefox_messaging_system.branch,
firefox_messaging_system.point
]
pivots: [
firefox_messaging_system.branch
]
filters:
firefox_messaging_system.metric: 'undesired_events_ping_volume'
firefox_messaging_system.statistic: sum
row: 10
col: 0
width: 12
height: 8
field_x: firefox_messaging_system.submission_date
field_y: firefox_messaging_system.point
log_scale: false
ci_lower: firefox_messaging_system.lower
ci_upper: firefox_messaging_system.upper
show_grid: true
listen:
Date: firefox_messaging_system.submission_date
Normalized Channel: firefox_messaging_system.normalized_channel
Normalized Os: firefox_messaging_system.normalized_os
active: "#3FE1B0"
defaults_version: 0
- title: Unexpected Data
name: Unexpected Data_sum
note_state: expanded
note_display: above
note_text: Sum
explore: firefox_messaging_system
type: looker_line
fields: [
firefox_messaging_system.submission_date,
firefox_messaging_system.branch,
firefox_messaging_system.point
]
pivots: [
firefox_messaging_system.branch, firefox_messaging_system.metric
]
filters:
firefox_messaging_system.metric: '"unknown_keys_volume", "invalid_nested_data_volume"'
firefox_messaging_system.statistic: sum
row: 10
col: 12
width: 12
@ -284,8 +284,8 @@
display: inline
options:
- 'nightly'
- 'beta'
- 'aurora'
- 'beta'
- 'release'
- 'esr'
- 'Other'

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

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

@ -41,108 +41,6 @@
listen:
Date: fpp_floating_point_protection_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout
type: looker_line
fields: [
fpp_floating_point_protection_rollout.submission_date,
fpp_floating_point_protection_rollout.branch,
fpp_floating_point_protection_rollout.point
]
pivots: [
fpp_floating_point_protection_rollout.branch
]
filters:
fpp_floating_point_protection_rollout.metric: 'retained'
fpp_floating_point_protection_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
field_y: fpp_floating_point_protection_rollout.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout.lower
ci_upper: fpp_floating_point_protection_rollout.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout
type: looker_line
fields: [
fpp_floating_point_protection_rollout.submission_date,
fpp_floating_point_protection_rollout.branch,
fpp_floating_point_protection_rollout.point
]
pivots: [
fpp_floating_point_protection_rollout.branch
]
filters:
fpp_floating_point_protection_rollout.metric: 'ad_clicks'
fpp_floating_point_protection_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
field_y: fpp_floating_point_protection_rollout.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout.lower
ci_upper: fpp_floating_point_protection_rollout.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout
type: looker_line
fields: [
fpp_floating_point_protection_rollout.submission_date,
fpp_floating_point_protection_rollout.branch,
fpp_floating_point_protection_rollout.point
]
pivots: [
fpp_floating_point_protection_rollout.branch
]
filters:
fpp_floating_point_protection_rollout.metric: 'days_of_use'
fpp_floating_point_protection_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
field_y: fpp_floating_point_protection_rollout.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout.lower
ci_upper: fpp_floating_point_protection_rollout.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
fpp_floating_point_protection_rollout.metric: 'qualified_cumulative_days_of_use'
fpp_floating_point_protection_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
@ -198,8 +96,8 @@
filters:
fpp_floating_point_protection_rollout.metric: 'active_hours'
fpp_floating_point_protection_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
@ -234,8 +132,8 @@
filters:
fpp_floating_point_protection_rollout.metric: 'memory_total'
fpp_floating_point_protection_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
@ -248,6 +146,40 @@
Date: fpp_floating_point_protection_rollout.submission_date
Percentile: fpp_floating_point_protection_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout
type: looker_line
fields: [
fpp_floating_point_protection_rollout.submission_date,
fpp_floating_point_protection_rollout.branch,
fpp_floating_point_protection_rollout.point
]
pivots: [
fpp_floating_point_protection_rollout.branch
]
filters:
fpp_floating_point_protection_rollout.metric: 'ad_clicks'
fpp_floating_point_protection_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
field_y: fpp_floating_point_protection_rollout.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout.lower
ci_upper: fpp_floating_point_protection_rollout.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
fpp_floating_point_protection_rollout.metric: 'search_count'
fpp_floating_point_protection_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
field_y: fpp_floating_point_protection_rollout.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout.lower
ci_upper: fpp_floating_point_protection_rollout.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout
type: looker_line
fields: [
fpp_floating_point_protection_rollout.submission_date,
fpp_floating_point_protection_rollout.branch,
fpp_floating_point_protection_rollout.point
]
pivots: [
fpp_floating_point_protection_rollout.branch
]
filters:
fpp_floating_point_protection_rollout.metric: 'retained'
fpp_floating_point_protection_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout.submission_date
field_y: fpp_floating_point_protection_rollout.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout.lower
ci_upper: fpp_floating_point_protection_rollout.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout
type: looker_line
fields: [
fpp_floating_point_protection_rollout.submission_date,
fpp_floating_point_protection_rollout.branch,
fpp_floating_point_protection_rollout.point
]
pivots: [
fpp_floating_point_protection_rollout.branch
]
filters:
fpp_floating_point_protection_rollout.metric: 'days_of_use'
fpp_floating_point_protection_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout_linux_only
type: looker_line
fields: [
fpp_floating_point_protection_rollout_linux_only.submission_date,
fpp_floating_point_protection_rollout_linux_only.branch,
fpp_floating_point_protection_rollout_linux_only.point
]
pivots: [
fpp_floating_point_protection_rollout_linux_only.branch
]
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'retained'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
field_y: fpp_floating_point_protection_rollout_linux_only.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout_linux_only.lower
ci_upper: fpp_floating_point_protection_rollout_linux_only.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout_linux_only
type: looker_line
fields: [
fpp_floating_point_protection_rollout_linux_only.submission_date,
fpp_floating_point_protection_rollout_linux_only.branch,
fpp_floating_point_protection_rollout_linux_only.point
]
pivots: [
fpp_floating_point_protection_rollout_linux_only.branch
]
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'ad_clicks'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
field_y: fpp_floating_point_protection_rollout_linux_only.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout_linux_only.lower
ci_upper: fpp_floating_point_protection_rollout_linux_only.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout_linux_only
type: looker_line
fields: [
fpp_floating_point_protection_rollout_linux_only.submission_date,
fpp_floating_point_protection_rollout_linux_only.branch,
fpp_floating_point_protection_rollout_linux_only.point
]
pivots: [
fpp_floating_point_protection_rollout_linux_only.branch
]
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'days_of_use'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
field_y: fpp_floating_point_protection_rollout_linux_only.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout_linux_only.lower
ci_upper: fpp_floating_point_protection_rollout_linux_only.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'qualified_cumulative_days_of_use'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
@ -198,8 +96,8 @@
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'active_hours'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
@ -234,8 +132,8 @@
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'memory_total'
fpp_floating_point_protection_rollout_linux_only.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
@ -248,6 +146,40 @@
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
Percentile: fpp_floating_point_protection_rollout_linux_only.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout_linux_only
type: looker_line
fields: [
fpp_floating_point_protection_rollout_linux_only.submission_date,
fpp_floating_point_protection_rollout_linux_only.branch,
fpp_floating_point_protection_rollout_linux_only.point
]
pivots: [
fpp_floating_point_protection_rollout_linux_only.branch
]
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'ad_clicks'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
field_y: fpp_floating_point_protection_rollout_linux_only.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout_linux_only.lower
ci_upper: fpp_floating_point_protection_rollout_linux_only.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'search_count'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
field_y: fpp_floating_point_protection_rollout_linux_only.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout_linux_only.lower
ci_upper: fpp_floating_point_protection_rollout_linux_only.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout_linux_only
type: looker_line
fields: [
fpp_floating_point_protection_rollout_linux_only.submission_date,
fpp_floating_point_protection_rollout_linux_only.branch,
fpp_floating_point_protection_rollout_linux_only.point
]
pivots: [
fpp_floating_point_protection_rollout_linux_only.branch
]
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'retained'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: fpp_floating_point_protection_rollout_linux_only.submission_date
field_y: fpp_floating_point_protection_rollout_linux_only.point
log_scale: false
ci_lower: fpp_floating_point_protection_rollout_linux_only.lower
ci_upper: fpp_floating_point_protection_rollout_linux_only.upper
show_grid: true
listen:
Date: fpp_floating_point_protection_rollout_linux_only.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fpp_floating_point_protection_rollout_linux_only
type: looker_line
fields: [
fpp_floating_point_protection_rollout_linux_only.submission_date,
fpp_floating_point_protection_rollout_linux_only.branch,
fpp_floating_point_protection_rollout_linux_only.point
]
pivots: [
fpp_floating_point_protection_rollout_linux_only.branch
]
filters:
fpp_floating_point_protection_rollout_linux_only.metric: 'days_of_use'
fpp_floating_point_protection_rollout_linux_only.statistic: mean
row: 30
col: 12
width: 12

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

@ -10,6 +10,40 @@
preferred_viewer: dashboards-next
elements:
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'tagged_sap_searches'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 0
col: 0
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Uri Count
name: Uri Count_mean
note_state: expanded
@ -29,6 +63,40 @@
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'uri_count'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'active_hours'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
@ -62,143 +130,7 @@
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'ad_clicks'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'retained'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Tagged Sap Searches
name: Tagged Sap Searches_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'tagged_sap_searches'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'days_of_use'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Active Hours
name: Active Hours_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'active_hours'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
@ -232,6 +164,74 @@
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'search_count'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'retained'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
field_y: full_page_translations_on_android_basic_translations_enabled_rollout.point
log_scale: false
ci_lower: full_page_translations_on_android_basic_translations_enabled_rollout.lower
ci_upper: full_page_translations_on_android_basic_translations_enabled_rollout.upper
show_grid: true
listen:
Date: full_page_translations_on_android_basic_translations_enabled_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: full_page_translations_on_android_basic_translations_enabled_rollout
type: looker_line
fields: [
full_page_translations_on_android_basic_translations_enabled_rollout.submission_date,
full_page_translations_on_android_basic_translations_enabled_rollout.branch,
full_page_translations_on_android_basic_translations_enabled_rollout.point
]
pivots: [
full_page_translations_on_android_basic_translations_enabled_rollout.branch
]
filters:
full_page_translations_on_android_basic_translations_enabled_rollout.metric: 'days_of_use'
full_page_translations_on_android_basic_translations_enabled_rollout.statistic: mean
row: 30
col: 0
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: fx_accounts_ping_release_rollout_2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_accounts_ping_release_rollout_2
type: looker_line
fields: [
fx_accounts_ping_release_rollout_2.submission_date,
fx_accounts_ping_release_rollout_2.branch,
fx_accounts_ping_release_rollout_2.point
]
pivots: [
fx_accounts_ping_release_rollout_2.branch
]
filters:
fx_accounts_ping_release_rollout_2.metric: 'retained'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
field_y: fx_accounts_ping_release_rollout_2.point
log_scale: false
ci_lower: fx_accounts_ping_release_rollout_2.lower
ci_upper: fx_accounts_ping_release_rollout_2.upper
show_grid: true
listen:
Date: fx_accounts_ping_release_rollout_2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_accounts_ping_release_rollout_2
type: looker_line
fields: [
fx_accounts_ping_release_rollout_2.submission_date,
fx_accounts_ping_release_rollout_2.branch,
fx_accounts_ping_release_rollout_2.point
]
pivots: [
fx_accounts_ping_release_rollout_2.branch
]
filters:
fx_accounts_ping_release_rollout_2.metric: 'ad_clicks'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
field_y: fx_accounts_ping_release_rollout_2.point
log_scale: false
ci_lower: fx_accounts_ping_release_rollout_2.lower
ci_upper: fx_accounts_ping_release_rollout_2.upper
show_grid: true
listen:
Date: fx_accounts_ping_release_rollout_2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_accounts_ping_release_rollout_2
type: looker_line
fields: [
fx_accounts_ping_release_rollout_2.submission_date,
fx_accounts_ping_release_rollout_2.branch,
fx_accounts_ping_release_rollout_2.point
]
pivots: [
fx_accounts_ping_release_rollout_2.branch
]
filters:
fx_accounts_ping_release_rollout_2.metric: 'days_of_use'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
field_y: fx_accounts_ping_release_rollout_2.point
log_scale: false
ci_lower: fx_accounts_ping_release_rollout_2.lower
ci_upper: fx_accounts_ping_release_rollout_2.upper
show_grid: true
listen:
Date: fx_accounts_ping_release_rollout_2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
fx_accounts_ping_release_rollout_2.metric: 'qualified_cumulative_days_of_use'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
@ -198,8 +96,8 @@
filters:
fx_accounts_ping_release_rollout_2.metric: 'active_hours'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
@ -234,8 +132,8 @@
filters:
fx_accounts_ping_release_rollout_2.metric: 'memory_total'
fx_accounts_ping_release_rollout_2.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
@ -248,6 +146,40 @@
Date: fx_accounts_ping_release_rollout_2.submission_date
Percentile: fx_accounts_ping_release_rollout_2.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_accounts_ping_release_rollout_2
type: looker_line
fields: [
fx_accounts_ping_release_rollout_2.submission_date,
fx_accounts_ping_release_rollout_2.branch,
fx_accounts_ping_release_rollout_2.point
]
pivots: [
fx_accounts_ping_release_rollout_2.branch
]
filters:
fx_accounts_ping_release_rollout_2.metric: 'ad_clicks'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
field_y: fx_accounts_ping_release_rollout_2.point
log_scale: false
ci_lower: fx_accounts_ping_release_rollout_2.lower
ci_upper: fx_accounts_ping_release_rollout_2.upper
show_grid: true
listen:
Date: fx_accounts_ping_release_rollout_2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
fx_accounts_ping_release_rollout_2.metric: 'search_count'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
field_y: fx_accounts_ping_release_rollout_2.point
log_scale: false
ci_lower: fx_accounts_ping_release_rollout_2.lower
ci_upper: fx_accounts_ping_release_rollout_2.upper
show_grid: true
listen:
Date: fx_accounts_ping_release_rollout_2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_accounts_ping_release_rollout_2
type: looker_line
fields: [
fx_accounts_ping_release_rollout_2.submission_date,
fx_accounts_ping_release_rollout_2.branch,
fx_accounts_ping_release_rollout_2.point
]
pivots: [
fx_accounts_ping_release_rollout_2.branch
]
filters:
fx_accounts_ping_release_rollout_2.metric: 'retained'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: fx_accounts_ping_release_rollout_2.submission_date
field_y: fx_accounts_ping_release_rollout_2.point
log_scale: false
ci_lower: fx_accounts_ping_release_rollout_2.lower
ci_upper: fx_accounts_ping_release_rollout_2.upper
show_grid: true
listen:
Date: fx_accounts_ping_release_rollout_2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_accounts_ping_release_rollout_2
type: looker_line
fields: [
fx_accounts_ping_release_rollout_2.submission_date,
fx_accounts_ping_release_rollout_2.branch,
fx_accounts_ping_release_rollout_2.point
]
pivots: [
fx_accounts_ping_release_rollout_2.branch
]
filters:
fx_accounts_ping_release_rollout_2.metric: 'days_of_use'
fx_accounts_ping_release_rollout_2.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: fx_view_discoverability_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_view_discoverability_rollout
type: looker_line
fields: [
fx_view_discoverability_rollout.submission_date,
fx_view_discoverability_rollout.branch,
fx_view_discoverability_rollout.point
]
pivots: [
fx_view_discoverability_rollout.branch
]
filters:
fx_view_discoverability_rollout.metric: 'retained'
fx_view_discoverability_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
field_y: fx_view_discoverability_rollout.point
log_scale: false
ci_lower: fx_view_discoverability_rollout.lower
ci_upper: fx_view_discoverability_rollout.upper
show_grid: true
listen:
Date: fx_view_discoverability_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_view_discoverability_rollout
type: looker_line
fields: [
fx_view_discoverability_rollout.submission_date,
fx_view_discoverability_rollout.branch,
fx_view_discoverability_rollout.point
]
pivots: [
fx_view_discoverability_rollout.branch
]
filters:
fx_view_discoverability_rollout.metric: 'ad_clicks'
fx_view_discoverability_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
field_y: fx_view_discoverability_rollout.point
log_scale: false
ci_lower: fx_view_discoverability_rollout.lower
ci_upper: fx_view_discoverability_rollout.upper
show_grid: true
listen:
Date: fx_view_discoverability_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_view_discoverability_rollout
type: looker_line
fields: [
fx_view_discoverability_rollout.submission_date,
fx_view_discoverability_rollout.branch,
fx_view_discoverability_rollout.point
]
pivots: [
fx_view_discoverability_rollout.branch
]
filters:
fx_view_discoverability_rollout.metric: 'days_of_use'
fx_view_discoverability_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
field_y: fx_view_discoverability_rollout.point
log_scale: false
ci_lower: fx_view_discoverability_rollout.lower
ci_upper: fx_view_discoverability_rollout.upper
show_grid: true
listen:
Date: fx_view_discoverability_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
fx_view_discoverability_rollout.metric: 'qualified_cumulative_days_of_use'
fx_view_discoverability_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
@ -198,8 +96,8 @@
filters:
fx_view_discoverability_rollout.metric: 'active_hours'
fx_view_discoverability_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
@ -234,8 +132,8 @@
filters:
fx_view_discoverability_rollout.metric: 'memory_total'
fx_view_discoverability_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
@ -248,6 +146,40 @@
Date: fx_view_discoverability_rollout.submission_date
Percentile: fx_view_discoverability_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_view_discoverability_rollout
type: looker_line
fields: [
fx_view_discoverability_rollout.submission_date,
fx_view_discoverability_rollout.branch,
fx_view_discoverability_rollout.point
]
pivots: [
fx_view_discoverability_rollout.branch
]
filters:
fx_view_discoverability_rollout.metric: 'ad_clicks'
fx_view_discoverability_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
field_y: fx_view_discoverability_rollout.point
log_scale: false
ci_lower: fx_view_discoverability_rollout.lower
ci_upper: fx_view_discoverability_rollout.upper
show_grid: true
listen:
Date: fx_view_discoverability_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
fx_view_discoverability_rollout.metric: 'search_count'
fx_view_discoverability_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
field_y: fx_view_discoverability_rollout.point
log_scale: false
ci_lower: fx_view_discoverability_rollout.lower
ci_upper: fx_view_discoverability_rollout.upper
show_grid: true
listen:
Date: fx_view_discoverability_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_view_discoverability_rollout
type: looker_line
fields: [
fx_view_discoverability_rollout.submission_date,
fx_view_discoverability_rollout.branch,
fx_view_discoverability_rollout.point
]
pivots: [
fx_view_discoverability_rollout.branch
]
filters:
fx_view_discoverability_rollout.metric: 'retained'
fx_view_discoverability_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: fx_view_discoverability_rollout.submission_date
field_y: fx_view_discoverability_rollout.point
log_scale: false
ci_lower: fx_view_discoverability_rollout.lower
ci_upper: fx_view_discoverability_rollout.upper
show_grid: true
listen:
Date: fx_view_discoverability_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: fx_view_discoverability_rollout
type: looker_line
fields: [
fx_view_discoverability_rollout.submission_date,
fx_view_discoverability_rollout.branch,
fx_view_discoverability_rollout.point
]
pivots: [
fx_view_discoverability_rollout.branch
]
filters:
fx_view_discoverability_rollout.metric: 'days_of_use'
fx_view_discoverability_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -219,8 +219,8 @@
display: inline
options:
- 'Linux'
- 'Mac'
- 'Windows'
- 'Mac'
- 'Other'

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

@ -41,108 +41,6 @@
listen:
Date: highlighting_in_pdfs_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: highlighting_in_pdfs_rollout
type: looker_line
fields: [
highlighting_in_pdfs_rollout.submission_date,
highlighting_in_pdfs_rollout.branch,
highlighting_in_pdfs_rollout.point
]
pivots: [
highlighting_in_pdfs_rollout.branch
]
filters:
highlighting_in_pdfs_rollout.metric: 'retained'
highlighting_in_pdfs_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
field_y: highlighting_in_pdfs_rollout.point
log_scale: false
ci_lower: highlighting_in_pdfs_rollout.lower
ci_upper: highlighting_in_pdfs_rollout.upper
show_grid: true
listen:
Date: highlighting_in_pdfs_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: highlighting_in_pdfs_rollout
type: looker_line
fields: [
highlighting_in_pdfs_rollout.submission_date,
highlighting_in_pdfs_rollout.branch,
highlighting_in_pdfs_rollout.point
]
pivots: [
highlighting_in_pdfs_rollout.branch
]
filters:
highlighting_in_pdfs_rollout.metric: 'ad_clicks'
highlighting_in_pdfs_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
field_y: highlighting_in_pdfs_rollout.point
log_scale: false
ci_lower: highlighting_in_pdfs_rollout.lower
ci_upper: highlighting_in_pdfs_rollout.upper
show_grid: true
listen:
Date: highlighting_in_pdfs_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: highlighting_in_pdfs_rollout
type: looker_line
fields: [
highlighting_in_pdfs_rollout.submission_date,
highlighting_in_pdfs_rollout.branch,
highlighting_in_pdfs_rollout.point
]
pivots: [
highlighting_in_pdfs_rollout.branch
]
filters:
highlighting_in_pdfs_rollout.metric: 'days_of_use'
highlighting_in_pdfs_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
field_y: highlighting_in_pdfs_rollout.point
log_scale: false
ci_lower: highlighting_in_pdfs_rollout.lower
ci_upper: highlighting_in_pdfs_rollout.upper
show_grid: true
listen:
Date: highlighting_in_pdfs_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
highlighting_in_pdfs_rollout.metric: 'qualified_cumulative_days_of_use'
highlighting_in_pdfs_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
@ -198,8 +96,8 @@
filters:
highlighting_in_pdfs_rollout.metric: 'active_hours'
highlighting_in_pdfs_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
@ -234,8 +132,8 @@
filters:
highlighting_in_pdfs_rollout.metric: 'memory_total'
highlighting_in_pdfs_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
@ -248,6 +146,40 @@
Date: highlighting_in_pdfs_rollout.submission_date
Percentile: highlighting_in_pdfs_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: highlighting_in_pdfs_rollout
type: looker_line
fields: [
highlighting_in_pdfs_rollout.submission_date,
highlighting_in_pdfs_rollout.branch,
highlighting_in_pdfs_rollout.point
]
pivots: [
highlighting_in_pdfs_rollout.branch
]
filters:
highlighting_in_pdfs_rollout.metric: 'ad_clicks'
highlighting_in_pdfs_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
field_y: highlighting_in_pdfs_rollout.point
log_scale: false
ci_lower: highlighting_in_pdfs_rollout.lower
ci_upper: highlighting_in_pdfs_rollout.upper
show_grid: true
listen:
Date: highlighting_in_pdfs_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
highlighting_in_pdfs_rollout.metric: 'search_count'
highlighting_in_pdfs_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
field_y: highlighting_in_pdfs_rollout.point
log_scale: false
ci_lower: highlighting_in_pdfs_rollout.lower
ci_upper: highlighting_in_pdfs_rollout.upper
show_grid: true
listen:
Date: highlighting_in_pdfs_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: highlighting_in_pdfs_rollout
type: looker_line
fields: [
highlighting_in_pdfs_rollout.submission_date,
highlighting_in_pdfs_rollout.branch,
highlighting_in_pdfs_rollout.point
]
pivots: [
highlighting_in_pdfs_rollout.branch
]
filters:
highlighting_in_pdfs_rollout.metric: 'retained'
highlighting_in_pdfs_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: highlighting_in_pdfs_rollout.submission_date
field_y: highlighting_in_pdfs_rollout.point
log_scale: false
ci_lower: highlighting_in_pdfs_rollout.lower
ci_upper: highlighting_in_pdfs_rollout.upper
show_grid: true
listen:
Date: highlighting_in_pdfs_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: highlighting_in_pdfs_rollout
type: looker_line
fields: [
highlighting_in_pdfs_rollout.submission_date,
highlighting_in_pdfs_rollout.branch,
highlighting_in_pdfs_rollout.point
]
pivots: [
highlighting_in_pdfs_rollout.branch
]
filters:
highlighting_in_pdfs_rollout.metric: 'days_of_use'
highlighting_in_pdfs_rollout.statistic: mean
row: 30
col: 12
width: 12

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -41,108 +41,6 @@
listen:
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: launch_firefox_on_os_restart_treatment_a_rollout
type: looker_line
fields: [
launch_firefox_on_os_restart_treatment_a_rollout.submission_date,
launch_firefox_on_os_restart_treatment_a_rollout.branch,
launch_firefox_on_os_restart_treatment_a_rollout.point
]
pivots: [
launch_firefox_on_os_restart_treatment_a_rollout.branch
]
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'retained'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
field_y: launch_firefox_on_os_restart_treatment_a_rollout.point
log_scale: false
ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower
ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper
show_grid: true
listen:
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: launch_firefox_on_os_restart_treatment_a_rollout
type: looker_line
fields: [
launch_firefox_on_os_restart_treatment_a_rollout.submission_date,
launch_firefox_on_os_restart_treatment_a_rollout.branch,
launch_firefox_on_os_restart_treatment_a_rollout.point
]
pivots: [
launch_firefox_on_os_restart_treatment_a_rollout.branch
]
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'ad_clicks'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
field_y: launch_firefox_on_os_restart_treatment_a_rollout.point
log_scale: false
ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower
ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper
show_grid: true
listen:
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: launch_firefox_on_os_restart_treatment_a_rollout
type: looker_line
fields: [
launch_firefox_on_os_restart_treatment_a_rollout.submission_date,
launch_firefox_on_os_restart_treatment_a_rollout.branch,
launch_firefox_on_os_restart_treatment_a_rollout.point
]
pivots: [
launch_firefox_on_os_restart_treatment_a_rollout.branch
]
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'days_of_use'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
field_y: launch_firefox_on_os_restart_treatment_a_rollout.point
log_scale: false
ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower
ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper
show_grid: true
listen:
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
@ -198,8 +96,8 @@
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'active_hours'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
@ -234,8 +132,8 @@
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'memory_total'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
@ -248,6 +146,40 @@
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
Percentile: launch_firefox_on_os_restart_treatment_a_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: launch_firefox_on_os_restart_treatment_a_rollout
type: looker_line
fields: [
launch_firefox_on_os_restart_treatment_a_rollout.submission_date,
launch_firefox_on_os_restart_treatment_a_rollout.branch,
launch_firefox_on_os_restart_treatment_a_rollout.point
]
pivots: [
launch_firefox_on_os_restart_treatment_a_rollout.branch
]
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'ad_clicks'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
field_y: launch_firefox_on_os_restart_treatment_a_rollout.point
log_scale: false
ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower
ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper
show_grid: true
listen:
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'search_count'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
field_y: launch_firefox_on_os_restart_treatment_a_rollout.point
log_scale: false
ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower
ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper
show_grid: true
listen:
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: launch_firefox_on_os_restart_treatment_a_rollout
type: looker_line
fields: [
launch_firefox_on_os_restart_treatment_a_rollout.submission_date,
launch_firefox_on_os_restart_treatment_a_rollout.branch,
launch_firefox_on_os_restart_treatment_a_rollout.point
]
pivots: [
launch_firefox_on_os_restart_treatment_a_rollout.branch
]
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'retained'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
field_y: launch_firefox_on_os_restart_treatment_a_rollout.point
log_scale: false
ci_lower: launch_firefox_on_os_restart_treatment_a_rollout.lower
ci_upper: launch_firefox_on_os_restart_treatment_a_rollout.upper
show_grid: true
listen:
Date: launch_firefox_on_os_restart_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: launch_firefox_on_os_restart_treatment_a_rollout
type: looker_line
fields: [
launch_firefox_on_os_restart_treatment_a_rollout.submission_date,
launch_firefox_on_os_restart_treatment_a_rollout.branch,
launch_firefox_on_os_restart_treatment_a_rollout.point
]
pivots: [
launch_firefox_on_os_restart_treatment_a_rollout.branch
]
filters:
launch_firefox_on_os_restart_treatment_a_rollout.metric: 'days_of_use'
launch_firefox_on_os_restart_treatment_a_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: microsurvey_sync_csat_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: microsurvey_sync_csat_2024
type: looker_line
fields: [
microsurvey_sync_csat_2024.submission_date,
microsurvey_sync_csat_2024.branch,
microsurvey_sync_csat_2024.point
]
pivots: [
microsurvey_sync_csat_2024.branch
]
filters:
microsurvey_sync_csat_2024.metric: 'retained'
microsurvey_sync_csat_2024.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
field_y: microsurvey_sync_csat_2024.point
log_scale: false
ci_lower: microsurvey_sync_csat_2024.lower
ci_upper: microsurvey_sync_csat_2024.upper
show_grid: true
listen:
Date: microsurvey_sync_csat_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: microsurvey_sync_csat_2024
type: looker_line
fields: [
microsurvey_sync_csat_2024.submission_date,
microsurvey_sync_csat_2024.branch,
microsurvey_sync_csat_2024.point
]
pivots: [
microsurvey_sync_csat_2024.branch
]
filters:
microsurvey_sync_csat_2024.metric: 'ad_clicks'
microsurvey_sync_csat_2024.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
field_y: microsurvey_sync_csat_2024.point
log_scale: false
ci_lower: microsurvey_sync_csat_2024.lower
ci_upper: microsurvey_sync_csat_2024.upper
show_grid: true
listen:
Date: microsurvey_sync_csat_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: microsurvey_sync_csat_2024
type: looker_line
fields: [
microsurvey_sync_csat_2024.submission_date,
microsurvey_sync_csat_2024.branch,
microsurvey_sync_csat_2024.point
]
pivots: [
microsurvey_sync_csat_2024.branch
]
filters:
microsurvey_sync_csat_2024.metric: 'days_of_use'
microsurvey_sync_csat_2024.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
field_y: microsurvey_sync_csat_2024.point
log_scale: false
ci_lower: microsurvey_sync_csat_2024.lower
ci_upper: microsurvey_sync_csat_2024.upper
show_grid: true
listen:
Date: microsurvey_sync_csat_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
microsurvey_sync_csat_2024.metric: 'qualified_cumulative_days_of_use'
microsurvey_sync_csat_2024.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
@ -198,8 +96,8 @@
filters:
microsurvey_sync_csat_2024.metric: 'active_hours'
microsurvey_sync_csat_2024.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
@ -234,8 +132,8 @@
filters:
microsurvey_sync_csat_2024.metric: 'memory_total'
microsurvey_sync_csat_2024.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
@ -248,6 +146,40 @@
Date: microsurvey_sync_csat_2024.submission_date
Percentile: microsurvey_sync_csat_2024.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: microsurvey_sync_csat_2024
type: looker_line
fields: [
microsurvey_sync_csat_2024.submission_date,
microsurvey_sync_csat_2024.branch,
microsurvey_sync_csat_2024.point
]
pivots: [
microsurvey_sync_csat_2024.branch
]
filters:
microsurvey_sync_csat_2024.metric: 'ad_clicks'
microsurvey_sync_csat_2024.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
field_y: microsurvey_sync_csat_2024.point
log_scale: false
ci_lower: microsurvey_sync_csat_2024.lower
ci_upper: microsurvey_sync_csat_2024.upper
show_grid: true
listen:
Date: microsurvey_sync_csat_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
microsurvey_sync_csat_2024.metric: 'search_count'
microsurvey_sync_csat_2024.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
field_y: microsurvey_sync_csat_2024.point
log_scale: false
ci_lower: microsurvey_sync_csat_2024.lower
ci_upper: microsurvey_sync_csat_2024.upper
show_grid: true
listen:
Date: microsurvey_sync_csat_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: microsurvey_sync_csat_2024
type: looker_line
fields: [
microsurvey_sync_csat_2024.submission_date,
microsurvey_sync_csat_2024.branch,
microsurvey_sync_csat_2024.point
]
pivots: [
microsurvey_sync_csat_2024.branch
]
filters:
microsurvey_sync_csat_2024.metric: 'retained'
microsurvey_sync_csat_2024.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: microsurvey_sync_csat_2024.submission_date
field_y: microsurvey_sync_csat_2024.point
log_scale: false
ci_lower: microsurvey_sync_csat_2024.lower
ci_upper: microsurvey_sync_csat_2024.upper
show_grid: true
listen:
Date: microsurvey_sync_csat_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: microsurvey_sync_csat_2024
type: looker_line
fields: [
microsurvey_sync_csat_2024.submission_date,
microsurvey_sync_csat_2024.branch,
microsurvey_sync_csat_2024.point
]
pivots: [
microsurvey_sync_csat_2024.branch
]
filters:
microsurvey_sync_csat_2024.metric: 'days_of_use'
microsurvey_sync_csat_2024.statistic: mean
row: 30
col: 12
width: 12

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

@ -10,6 +10,142 @@
preferred_viewer: dashboards-next
elements:
- title: Cnt Session Ends - By app
name: Cnt Session Ends - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'cnt_session_ends'
mozilla_vpn.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Cnt Sessions Start And End - By app
name: Cnt Sessions Start And End - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'cnt_sessions_start_and_end'
mozilla_vpn.statistic: sum
row: 0
col: 12
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Cnt Negative Session Lengths - By app
name: Cnt Negative Session Lengths - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'cnt_negative_session_lengths'
mozilla_vpn.statistic: sum
row: 10
col: 0
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Session Count - By app
name: Session Count - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'session_count'
mozilla_vpn.statistic: sum
row: 10
col: 12
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Avg Session Duration - By app
name: Avg Session Duration - By app_mean
note_state: expanded
@ -28,7 +164,7 @@
filters:
mozilla_vpn.metric: 'avg_session_duration'
mozilla_vpn.statistic: mean
row: 0
row: 20
col: 0
width: 12
height: 8
@ -64,7 +200,7 @@
filters:
mozilla_vpn.metric: 'avg_session_duration'
mozilla_vpn.statistic: percentile
row: 0
row: 20
col: 12
width: 12
height: 8
@ -99,7 +235,7 @@
filters:
mozilla_vpn.metric: 'avg_sum_session_duration'
mozilla_vpn.statistic: mean
row: 10
row: 30
col: 0
width: 12
height: 8
@ -135,7 +271,7 @@
filters:
mozilla_vpn.metric: 'avg_sum_session_duration'
mozilla_vpn.statistic: percentile
row: 10
row: 30
col: 12
width: 12
height: 8
@ -150,40 +286,6 @@
Percentile: mozilla_vpn.parameter
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Active Subscribers - By app
name: Active Subscribers - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'active_subscribers'
mozilla_vpn.statistic: sum
row: 20
col: 0
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Cnt Session Starts - By app
@ -204,108 +306,6 @@
filters:
mozilla_vpn.metric: 'cnt_session_starts'
mozilla_vpn.statistic: sum
row: 20
col: 12
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Cnt Negative Session Lengths - By app
name: Cnt Negative Session Lengths - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'cnt_negative_session_lengths'
mozilla_vpn.statistic: sum
row: 30
col: 0
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Session Count - By app
name: Session Count - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'session_count'
mozilla_vpn.statistic: sum
row: 30
col: 12
width: 12
height: 8
field_x: mozilla_vpn.submission_date
field_y: mozilla_vpn.point
log_scale: false
ci_lower: mozilla_vpn.lower
ci_upper: mozilla_vpn.upper
show_grid: true
listen:
Date: mozilla_vpn.submission_date
App: mozilla_vpn.app
active: "#3FE1B0"
defaults_version: 0
- title: Cnt Sessions Start And End - By app
name: Cnt Sessions Start And End - By app_sum
note_state: expanded
note_display: above
note_text: Sum
explore: mozilla_vpn
type: looker_line
fields: [
mozilla_vpn.submission_date,
mozilla_vpn.branch,
mozilla_vpn.point
]
pivots: [
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'cnt_sessions_start_and_end'
mozilla_vpn.statistic: sum
row: 40
col: 0
width: 12
@ -322,8 +322,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Cnt Session Ends - By app
name: Cnt Session Ends - By app_sum
- title: Active Subscribers - By app
name: Active Subscribers - By app_sum
note_state: expanded
note_display: above
note_text: Sum
@ -338,7 +338,7 @@
mozilla_vpn.branch, mozilla_vpn.app
]
filters:
mozilla_vpn.metric: 'cnt_session_ends'
mozilla_vpn.metric: 'active_subscribers'
mozilla_vpn.statistic: sum
row: 40
col: 12

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

@ -10,6 +10,80 @@
preferred_viewer: dashboards-next
elements:
- title: Http Page Tls Handshake
name: Http Page Tls Handshake_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: network_performance_desktop_build_by_build
type: "ci-line-chart"
fields: [
network_performance_desktop_build_by_build.build_id,
network_performance_desktop_build_by_build.branch,
network_performance_desktop_build_by_build.upper,
network_performance_desktop_build_by_build.lower,
network_performance_desktop_build_by_build.point
]
pivots: [
network_performance_desktop_build_by_build.branch
]
filters:
network_performance_desktop_build_by_build.metric: 'http_page_tls_handshake'
network_performance_desktop_build_by_build.statistic: percentile
row: 0
col: 0
width: 12
height: 8
field_x: network_performance_desktop_build_by_build.build_id
field_y: network_performance_desktop_build_by_build.point
log_scale: false
ci_lower: network_performance_desktop_build_by_build.lower
ci_upper: network_performance_desktop_build_by_build.upper
show_grid: true
listen:
Date: network_performance_desktop_build_by_build.build_id
Percentile: network_performance_desktop_build_by_build.parameter
Os: network_performance_desktop_build_by_build.os
active: "#3FE1B0"
defaults_version: 0
- title: Time To Response Start Ms
name: Time To Response Start Ms_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: network_performance_desktop_build_by_build
type: "ci-line-chart"
fields: [
network_performance_desktop_build_by_build.build_id,
network_performance_desktop_build_by_build.branch,
network_performance_desktop_build_by_build.upper,
network_performance_desktop_build_by_build.lower,
network_performance_desktop_build_by_build.point
]
pivots: [
network_performance_desktop_build_by_build.branch
]
filters:
network_performance_desktop_build_by_build.metric: 'time_to_response_start_ms'
network_performance_desktop_build_by_build.statistic: percentile
row: 0
col: 12
width: 12
height: 8
field_x: network_performance_desktop_build_by_build.build_id
field_y: network_performance_desktop_build_by_build.point
log_scale: false
ci_lower: network_performance_desktop_build_by_build.lower
ci_upper: network_performance_desktop_build_by_build.upper
show_grid: true
listen:
Date: network_performance_desktop_build_by_build.build_id
Percentile: network_performance_desktop_build_by_build.parameter
Os: network_performance_desktop_build_by_build.os
active: "#3FE1B0"
defaults_version: 0
- title: Http Page Open To First Sent
name: Http Page Open To First Sent_percentile
note_state: expanded
@ -30,7 +104,7 @@
filters:
network_performance_desktop_build_by_build.metric: 'http_page_open_to_first_sent'
network_performance_desktop_build_by_build.statistic: percentile
row: 0
row: 10
col: 0
width: 12
height: 8
@ -67,45 +141,8 @@
filters:
network_performance_desktop_build_by_build.metric: 'dns_lookup_time'
network_performance_desktop_build_by_build.statistic: percentile
row: 0
col: 12
width: 12
height: 8
field_x: network_performance_desktop_build_by_build.build_id
field_y: network_performance_desktop_build_by_build.point
log_scale: false
ci_lower: network_performance_desktop_build_by_build.lower
ci_upper: network_performance_desktop_build_by_build.upper
show_grid: true
listen:
Date: network_performance_desktop_build_by_build.build_id
Percentile: network_performance_desktop_build_by_build.parameter
Os: network_performance_desktop_build_by_build.os
active: "#3FE1B0"
defaults_version: 0
- title: Http Page Tls Handshake
name: Http Page Tls Handshake_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: network_performance_desktop_build_by_build
type: "ci-line-chart"
fields: [
network_performance_desktop_build_by_build.build_id,
network_performance_desktop_build_by_build.branch,
network_performance_desktop_build_by_build.upper,
network_performance_desktop_build_by_build.lower,
network_performance_desktop_build_by_build.point
]
pivots: [
network_performance_desktop_build_by_build.branch
]
filters:
network_performance_desktop_build_by_build.metric: 'http_page_tls_handshake'
network_performance_desktop_build_by_build.statistic: percentile
row: 10
col: 0
col: 12
width: 12
height: 8
field_x: network_performance_desktop_build_by_build.build_id
@ -141,43 +178,6 @@
filters:
network_performance_desktop_build_by_build.metric: 'http_sub_tls_handshake'
network_performance_desktop_build_by_build.statistic: percentile
row: 10
col: 12
width: 12
height: 8
field_x: network_performance_desktop_build_by_build.build_id
field_y: network_performance_desktop_build_by_build.point
log_scale: false
ci_lower: network_performance_desktop_build_by_build.lower
ci_upper: network_performance_desktop_build_by_build.upper
show_grid: true
listen:
Date: network_performance_desktop_build_by_build.build_id
Percentile: network_performance_desktop_build_by_build.parameter
Os: network_performance_desktop_build_by_build.os
active: "#3FE1B0"
defaults_version: 0
- title: Time To Response Start Ms
name: Time To Response Start Ms_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: network_performance_desktop_build_by_build
type: "ci-line-chart"
fields: [
network_performance_desktop_build_by_build.build_id,
network_performance_desktop_build_by_build.branch,
network_performance_desktop_build_by_build.upper,
network_performance_desktop_build_by_build.lower,
network_performance_desktop_build_by_build.point
]
pivots: [
network_performance_desktop_build_by_build.branch
]
filters:
network_performance_desktop_build_by_build.metric: 'time_to_response_start_ms'
network_performance_desktop_build_by_build.statistic: percentile
row: 20
col: 0
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: newtab_recommendations_merino_migration.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration
type: looker_line
fields: [
newtab_recommendations_merino_migration.submission_date,
newtab_recommendations_merino_migration.branch,
newtab_recommendations_merino_migration.point
]
pivots: [
newtab_recommendations_merino_migration.branch
]
filters:
newtab_recommendations_merino_migration.metric: 'retained'
newtab_recommendations_merino_migration.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
field_y: newtab_recommendations_merino_migration.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration.lower
ci_upper: newtab_recommendations_merino_migration.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration
type: looker_line
fields: [
newtab_recommendations_merino_migration.submission_date,
newtab_recommendations_merino_migration.branch,
newtab_recommendations_merino_migration.point
]
pivots: [
newtab_recommendations_merino_migration.branch
]
filters:
newtab_recommendations_merino_migration.metric: 'ad_clicks'
newtab_recommendations_merino_migration.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
field_y: newtab_recommendations_merino_migration.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration.lower
ci_upper: newtab_recommendations_merino_migration.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration
type: looker_line
fields: [
newtab_recommendations_merino_migration.submission_date,
newtab_recommendations_merino_migration.branch,
newtab_recommendations_merino_migration.point
]
pivots: [
newtab_recommendations_merino_migration.branch
]
filters:
newtab_recommendations_merino_migration.metric: 'days_of_use'
newtab_recommendations_merino_migration.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
field_y: newtab_recommendations_merino_migration.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration.lower
ci_upper: newtab_recommendations_merino_migration.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
newtab_recommendations_merino_migration.metric: 'qualified_cumulative_days_of_use'
newtab_recommendations_merino_migration.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
@ -198,8 +96,8 @@
filters:
newtab_recommendations_merino_migration.metric: 'active_hours'
newtab_recommendations_merino_migration.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
@ -234,8 +132,8 @@
filters:
newtab_recommendations_merino_migration.metric: 'memory_total'
newtab_recommendations_merino_migration.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
@ -248,6 +146,40 @@
Date: newtab_recommendations_merino_migration.submission_date
Percentile: newtab_recommendations_merino_migration.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration
type: looker_line
fields: [
newtab_recommendations_merino_migration.submission_date,
newtab_recommendations_merino_migration.branch,
newtab_recommendations_merino_migration.point
]
pivots: [
newtab_recommendations_merino_migration.branch
]
filters:
newtab_recommendations_merino_migration.metric: 'ad_clicks'
newtab_recommendations_merino_migration.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
field_y: newtab_recommendations_merino_migration.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration.lower
ci_upper: newtab_recommendations_merino_migration.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
newtab_recommendations_merino_migration.metric: 'search_count'
newtab_recommendations_merino_migration.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
field_y: newtab_recommendations_merino_migration.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration.lower
ci_upper: newtab_recommendations_merino_migration.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration
type: looker_line
fields: [
newtab_recommendations_merino_migration.submission_date,
newtab_recommendations_merino_migration.branch,
newtab_recommendations_merino_migration.point
]
pivots: [
newtab_recommendations_merino_migration.branch
]
filters:
newtab_recommendations_merino_migration.metric: 'retained'
newtab_recommendations_merino_migration.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration.submission_date
field_y: newtab_recommendations_merino_migration.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration.lower
ci_upper: newtab_recommendations_merino_migration.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration
type: looker_line
fields: [
newtab_recommendations_merino_migration.submission_date,
newtab_recommendations_merino_migration.branch,
newtab_recommendations_merino_migration.point
]
pivots: [
newtab_recommendations_merino_migration.branch
]
filters:
newtab_recommendations_merino_migration.metric: 'days_of_use'
newtab_recommendations_merino_migration.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: newtab_recommendations_merino_migration_global.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration_global
type: looker_line
fields: [
newtab_recommendations_merino_migration_global.submission_date,
newtab_recommendations_merino_migration_global.branch,
newtab_recommendations_merino_migration_global.point
]
pivots: [
newtab_recommendations_merino_migration_global.branch
]
filters:
newtab_recommendations_merino_migration_global.metric: 'retained'
newtab_recommendations_merino_migration_global.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
field_y: newtab_recommendations_merino_migration_global.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration_global.lower
ci_upper: newtab_recommendations_merino_migration_global.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration_global.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration_global
type: looker_line
fields: [
newtab_recommendations_merino_migration_global.submission_date,
newtab_recommendations_merino_migration_global.branch,
newtab_recommendations_merino_migration_global.point
]
pivots: [
newtab_recommendations_merino_migration_global.branch
]
filters:
newtab_recommendations_merino_migration_global.metric: 'ad_clicks'
newtab_recommendations_merino_migration_global.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
field_y: newtab_recommendations_merino_migration_global.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration_global.lower
ci_upper: newtab_recommendations_merino_migration_global.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration_global.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration_global
type: looker_line
fields: [
newtab_recommendations_merino_migration_global.submission_date,
newtab_recommendations_merino_migration_global.branch,
newtab_recommendations_merino_migration_global.point
]
pivots: [
newtab_recommendations_merino_migration_global.branch
]
filters:
newtab_recommendations_merino_migration_global.metric: 'days_of_use'
newtab_recommendations_merino_migration_global.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
field_y: newtab_recommendations_merino_migration_global.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration_global.lower
ci_upper: newtab_recommendations_merino_migration_global.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration_global.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
newtab_recommendations_merino_migration_global.metric: 'qualified_cumulative_days_of_use'
newtab_recommendations_merino_migration_global.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
@ -198,8 +96,8 @@
filters:
newtab_recommendations_merino_migration_global.metric: 'active_hours'
newtab_recommendations_merino_migration_global.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
@ -234,8 +132,8 @@
filters:
newtab_recommendations_merino_migration_global.metric: 'memory_total'
newtab_recommendations_merino_migration_global.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
@ -248,6 +146,40 @@
Date: newtab_recommendations_merino_migration_global.submission_date
Percentile: newtab_recommendations_merino_migration_global.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration_global
type: looker_line
fields: [
newtab_recommendations_merino_migration_global.submission_date,
newtab_recommendations_merino_migration_global.branch,
newtab_recommendations_merino_migration_global.point
]
pivots: [
newtab_recommendations_merino_migration_global.branch
]
filters:
newtab_recommendations_merino_migration_global.metric: 'ad_clicks'
newtab_recommendations_merino_migration_global.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
field_y: newtab_recommendations_merino_migration_global.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration_global.lower
ci_upper: newtab_recommendations_merino_migration_global.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration_global.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
newtab_recommendations_merino_migration_global.metric: 'search_count'
newtab_recommendations_merino_migration_global.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
field_y: newtab_recommendations_merino_migration_global.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration_global.lower
ci_upper: newtab_recommendations_merino_migration_global.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration_global.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration_global
type: looker_line
fields: [
newtab_recommendations_merino_migration_global.submission_date,
newtab_recommendations_merino_migration_global.branch,
newtab_recommendations_merino_migration_global.point
]
pivots: [
newtab_recommendations_merino_migration_global.branch
]
filters:
newtab_recommendations_merino_migration_global.metric: 'retained'
newtab_recommendations_merino_migration_global.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: newtab_recommendations_merino_migration_global.submission_date
field_y: newtab_recommendations_merino_migration_global.point
log_scale: false
ci_lower: newtab_recommendations_merino_migration_global.lower
ci_upper: newtab_recommendations_merino_migration_global.upper
show_grid: true
listen:
Date: newtab_recommendations_merino_migration_global.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: newtab_recommendations_merino_migration_global
type: looker_line
fields: [
newtab_recommendations_merino_migration_global.submission_date,
newtab_recommendations_merino_migration_global.branch,
newtab_recommendations_merino_migration_global.point
]
pivots: [
newtab_recommendations_merino_migration_global.branch
]
filters:
newtab_recommendations_merino_migration_global.metric: 'days_of_use'
newtab_recommendations_merino_migration_global.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: one_click_set_to_default_new_users_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: one_click_set_to_default_new_users_rollout
type: looker_line
fields: [
one_click_set_to_default_new_users_rollout.submission_date,
one_click_set_to_default_new_users_rollout.branch,
one_click_set_to_default_new_users_rollout.point
]
pivots: [
one_click_set_to_default_new_users_rollout.branch
]
filters:
one_click_set_to_default_new_users_rollout.metric: 'retained'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
field_y: one_click_set_to_default_new_users_rollout.point
log_scale: false
ci_lower: one_click_set_to_default_new_users_rollout.lower
ci_upper: one_click_set_to_default_new_users_rollout.upper
show_grid: true
listen:
Date: one_click_set_to_default_new_users_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: one_click_set_to_default_new_users_rollout
type: looker_line
fields: [
one_click_set_to_default_new_users_rollout.submission_date,
one_click_set_to_default_new_users_rollout.branch,
one_click_set_to_default_new_users_rollout.point
]
pivots: [
one_click_set_to_default_new_users_rollout.branch
]
filters:
one_click_set_to_default_new_users_rollout.metric: 'ad_clicks'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
field_y: one_click_set_to_default_new_users_rollout.point
log_scale: false
ci_lower: one_click_set_to_default_new_users_rollout.lower
ci_upper: one_click_set_to_default_new_users_rollout.upper
show_grid: true
listen:
Date: one_click_set_to_default_new_users_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: one_click_set_to_default_new_users_rollout
type: looker_line
fields: [
one_click_set_to_default_new_users_rollout.submission_date,
one_click_set_to_default_new_users_rollout.branch,
one_click_set_to_default_new_users_rollout.point
]
pivots: [
one_click_set_to_default_new_users_rollout.branch
]
filters:
one_click_set_to_default_new_users_rollout.metric: 'days_of_use'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
field_y: one_click_set_to_default_new_users_rollout.point
log_scale: false
ci_lower: one_click_set_to_default_new_users_rollout.lower
ci_upper: one_click_set_to_default_new_users_rollout.upper
show_grid: true
listen:
Date: one_click_set_to_default_new_users_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
one_click_set_to_default_new_users_rollout.metric: 'qualified_cumulative_days_of_use'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
@ -198,8 +96,8 @@
filters:
one_click_set_to_default_new_users_rollout.metric: 'active_hours'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
@ -234,8 +132,8 @@
filters:
one_click_set_to_default_new_users_rollout.metric: 'memory_total'
one_click_set_to_default_new_users_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
@ -248,6 +146,40 @@
Date: one_click_set_to_default_new_users_rollout.submission_date
Percentile: one_click_set_to_default_new_users_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: one_click_set_to_default_new_users_rollout
type: looker_line
fields: [
one_click_set_to_default_new_users_rollout.submission_date,
one_click_set_to_default_new_users_rollout.branch,
one_click_set_to_default_new_users_rollout.point
]
pivots: [
one_click_set_to_default_new_users_rollout.branch
]
filters:
one_click_set_to_default_new_users_rollout.metric: 'ad_clicks'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
field_y: one_click_set_to_default_new_users_rollout.point
log_scale: false
ci_lower: one_click_set_to_default_new_users_rollout.lower
ci_upper: one_click_set_to_default_new_users_rollout.upper
show_grid: true
listen:
Date: one_click_set_to_default_new_users_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
one_click_set_to_default_new_users_rollout.metric: 'search_count'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
field_y: one_click_set_to_default_new_users_rollout.point
log_scale: false
ci_lower: one_click_set_to_default_new_users_rollout.lower
ci_upper: one_click_set_to_default_new_users_rollout.upper
show_grid: true
listen:
Date: one_click_set_to_default_new_users_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: one_click_set_to_default_new_users_rollout
type: looker_line
fields: [
one_click_set_to_default_new_users_rollout.submission_date,
one_click_set_to_default_new_users_rollout.branch,
one_click_set_to_default_new_users_rollout.point
]
pivots: [
one_click_set_to_default_new_users_rollout.branch
]
filters:
one_click_set_to_default_new_users_rollout.metric: 'retained'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: one_click_set_to_default_new_users_rollout.submission_date
field_y: one_click_set_to_default_new_users_rollout.point
log_scale: false
ci_lower: one_click_set_to_default_new_users_rollout.lower
ci_upper: one_click_set_to_default_new_users_rollout.upper
show_grid: true
listen:
Date: one_click_set_to_default_new_users_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: one_click_set_to_default_new_users_rollout
type: looker_line
fields: [
one_click_set_to_default_new_users_rollout.submission_date,
one_click_set_to_default_new_users_rollout.branch,
one_click_set_to_default_new_users_rollout.point
]
pivots: [
one_click_set_to_default_new_users_rollout.branch
]
filters:
one_click_set_to_default_new_users_rollout.metric: 'days_of_use'
one_click_set_to_default_new_users_rollout.statistic: mean
row: 30
col: 12
width: 12

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

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

@ -10,8 +10,8 @@
preferred_viewer: dashboards-next
elements:
- title: Storage Stats Cache Bytes
name: Storage Stats Cache Bytes_percentile
- title: Performance Pageload Dcl
name: Performance Pageload Dcl_percentile
note_state: expanded
note_display: above
note_text: Percentile
@ -28,7 +28,7 @@
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'storage_stats_cache_bytes'
performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl'
performance_fenix_build_by_build_beta.statistic: percentile
row: 0
col: 0
@ -46,8 +46,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Req Anim Frame Callback
name: Performance Pageload Req Anim Frame Callback_percentile
- title: Perf Startup Cold Main App To First Frame
name: Perf Startup Cold Main App To First Frame_percentile
note_state: expanded
note_display: above
note_text: Percentile
@ -64,7 +64,7 @@
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_req_anim_frame_callback'
performance_fenix_build_by_build_beta.metric: 'perf_startup_cold_main_app_to_first_frame'
performance_fenix_build_by_build_beta.statistic: percentile
row: 0
col: 12
@ -80,78 +80,6 @@
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Load Time Responsestart
name: Performance Pageload Load Time Responsestart_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time_responsestart'
performance_fenix_build_by_build_beta.statistic: percentile
row: 10
col: 0
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Fcp
name: Performance Pageload Fcp_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_fcp'
performance_fenix_build_by_build_beta.statistic: percentile
row: 10
col: 12
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Fcp Responsestart
@ -174,7 +102,7 @@
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_fcp_responsestart'
performance_fenix_build_by_build_beta.statistic: percentile
row: 20
row: 10
col: 0
width: 12
height: 8
@ -188,114 +116,6 @@
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Dcl Responsestart
name: Performance Pageload Dcl Responsestart_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl_responsestart'
performance_fenix_build_by_build_beta.statistic: percentile
row: 20
col: 12
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold Main App To First Frame
name: Perf Startup Cold Main App To First Frame_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'perf_startup_cold_main_app_to_first_frame'
performance_fenix_build_by_build_beta.statistic: percentile
row: 30
col: 0
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Load Time
name: Performance Pageload Load Time_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time'
performance_fenix_build_by_build_beta.statistic: percentile
row: 30
col: 12
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold View App To First Frame
@ -318,43 +138,7 @@
filters:
performance_fenix_build_by_build_beta.metric: 'perf_startup_cold_view_app_to_first_frame'
performance_fenix_build_by_build_beta.statistic: percentile
row: 40
col: 0
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Dcl
name: Performance Pageload Dcl_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl'
performance_fenix_build_by_build_beta.statistic: percentile
row: 40
row: 10
col: 12
width: 12
height: 8
@ -390,7 +174,7 @@
filters:
performance_fenix_build_by_build_beta.metric: 'storage_stats_app_bytes'
performance_fenix_build_by_build_beta.statistic: percentile
row: 50
row: 20
col: 0
width: 12
height: 8
@ -404,6 +188,114 @@
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Fcp
name: Performance Pageload Fcp_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_fcp'
performance_fenix_build_by_build_beta.statistic: percentile
row: 20
col: 12
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Load Time
name: Performance Pageload Load Time_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time'
performance_fenix_build_by_build_beta.statistic: percentile
row: 30
col: 0
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Dcl Responsestart
name: Performance Pageload Dcl Responsestart_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_dcl_responsestart'
performance_fenix_build_by_build_beta.statistic: percentile
row: 30
col: 12
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Storage Stats Data Dir Bytes
@ -426,6 +318,114 @@
filters:
performance_fenix_build_by_build_beta.metric: 'storage_stats_data_dir_bytes'
performance_fenix_build_by_build_beta.statistic: percentile
row: 40
col: 0
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Storage Stats Cache Bytes
name: Storage Stats Cache Bytes_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'storage_stats_cache_bytes'
performance_fenix_build_by_build_beta.statistic: percentile
row: 40
col: 12
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Req Anim Frame Callback
name: Performance Pageload Req Anim Frame Callback_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_req_anim_frame_callback'
performance_fenix_build_by_build_beta.statistic: percentile
row: 50
col: 0
width: 12
height: 8
field_x: performance_fenix_build_by_build_beta.build_id
field_y: performance_fenix_build_by_build_beta.point
log_scale: false
ci_lower: performance_fenix_build_by_build_beta.lower
ci_upper: performance_fenix_build_by_build_beta.upper
show_grid: true
listen:
Date: performance_fenix_build_by_build_beta.build_id
Percentile: performance_fenix_build_by_build_beta.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Load Time Responsestart
name: Performance Pageload Load Time Responsestart_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_fenix_build_by_build_beta
type: "ci-line-chart"
fields: [
performance_fenix_build_by_build_beta.build_id,
performance_fenix_build_by_build_beta.branch,
performance_fenix_build_by_build_beta.upper,
performance_fenix_build_by_build_beta.lower,
performance_fenix_build_by_build_beta.point
]
pivots: [
performance_fenix_build_by_build_beta.branch
]
filters:
performance_fenix_build_by_build_beta.metric: 'performance_pageload_load_time_responsestart'
performance_fenix_build_by_build_beta.statistic: percentile
row: 50
col: 12
width: 12

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

@ -10,42 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Performance Time Response Start
name: Performance Time Response Start_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"performance_time_response_start_KE", "performance_time_response_start_US"'
performance_review_kenya.statistic: percentile
row: 0
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Dns Lookup Time
name: Networking Dns Lookup Time_percentile
note_state: expanded
@ -64,7 +28,43 @@
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_dns_lookup_time_KE", "networking_dns_lookup_time_US"'
performance_review_kenya.metric: '"networking_dns_lookup_time_US", "networking_dns_lookup_time_KE"'
performance_review_kenya.statistic: percentile
row: 0
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold View App To First Frame
name: Perf Startup Cold View App To First Frame_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"perf_startup_cold_view_app_to_first_frame_KE", "perf_startup_cold_view_app_to_first_frame_US"'
performance_review_kenya.statistic: percentile
row: 0
col: 12
@ -100,7 +100,7 @@
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"storage_stats_app_bytes_US", "storage_stats_app_bytes_KE"'
performance_review_kenya.metric: '"storage_stats_app_bytes_KE", "storage_stats_app_bytes_US"'
performance_review_kenya.statistic: percentile
row: 10
col: 0
@ -118,8 +118,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold Main App To First Frame
name: Perf Startup Cold Main App To First Frame_percentile
- title: Performance Pageload Load Time
name: Performance Pageload Load Time_percentile
note_state: expanded
note_display: above
note_text: Percentile
@ -136,7 +136,7 @@
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"perf_startup_cold_main_app_to_first_frame_KE", "perf_startup_cold_main_app_to_first_frame_US"'
performance_review_kenya.metric: '"performance_pageload_load_time_KE", "performance_pageload_load_time_US"'
performance_review_kenya.statistic: percentile
row: 10
col: 12
@ -154,8 +154,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold View App To First Frame
name: Perf Startup Cold View App To First Frame_percentile
- title: Networking Http 3 Upload Throughput
name: Networking Http 3 Upload Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
@ -172,7 +172,7 @@
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"perf_startup_cold_view_app_to_first_frame_KE", "perf_startup_cold_view_app_to_first_frame_US"'
performance_review_kenya.metric: '"networking_http_3_upload_throughput_US", "networking_http_3_upload_throughput_KE"'
performance_review_kenya.statistic: percentile
row: 20
col: 0
@ -188,6 +188,78 @@
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 3 Download Throughput
name: Networking Http 3 Download Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_http_3_download_throughput_KE", "networking_http_3_download_throughput_US"'
performance_review_kenya.statistic: percentile
row: 20
col: 12
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Storage Stats Data Dir Bytes
name: Storage Stats Data Dir Bytes_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"storage_stats_data_dir_bytes_US", "storage_stats_data_dir_bytes_KE"'
performance_review_kenya.statistic: percentile
row: 30
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 1 Upload Throughput
@ -210,7 +282,151 @@
filters:
performance_review_kenya.metric: '"networking_http_1_upload_throughput_US", "networking_http_1_upload_throughput_KE"'
performance_review_kenya.statistic: percentile
row: 20
row: 30
col: 12
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 2 Download Throughput
name: Networking Http 2 Download Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_http_2_download_throughput_US", "networking_http_2_download_throughput_KE"'
performance_review_kenya.statistic: percentile
row: 40
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Time Response Start
name: Performance Time Response Start_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"performance_time_response_start_KE", "performance_time_response_start_US"'
performance_review_kenya.statistic: percentile
row: 40
col: 12
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold Main App To First Frame
name: Perf Startup Cold Main App To First Frame_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"perf_startup_cold_main_app_to_first_frame_KE", "perf_startup_cold_main_app_to_first_frame_US"'
performance_review_kenya.statistic: percentile
row: 50
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 1 Download Throughput
name: Networking Http 1 Download Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_http_1_download_throughput_US", "networking_http_1_download_throughput_KE"'
performance_review_kenya.statistic: percentile
row: 50
col: 12
width: 12
height: 8
@ -246,222 +462,6 @@
filters:
performance_review_kenya.metric: '"networking_http_2_upload_throughput_KE", "networking_http_2_upload_throughput_US"'
performance_review_kenya.statistic: percentile
row: 30
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 1 Download Throughput
name: Networking Http 1 Download Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_http_1_download_throughput_KE", "networking_http_1_download_throughput_US"'
performance_review_kenya.statistic: percentile
row: 30
col: 12
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 3 Upload Throughput
name: Networking Http 3 Upload Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_http_3_upload_throughput_KE", "networking_http_3_upload_throughput_US"'
performance_review_kenya.statistic: percentile
row: 40
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 3 Download Throughput
name: Networking Http 3 Download Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_http_3_download_throughput_US", "networking_http_3_download_throughput_KE"'
performance_review_kenya.statistic: percentile
row: 40
col: 12
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Load Time
name: Performance Pageload Load Time_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"performance_pageload_load_time_US", "performance_pageload_load_time_KE"'
performance_review_kenya.statistic: percentile
row: 50
col: 0
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Storage Stats Data Dir Bytes
name: Storage Stats Data Dir Bytes_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"storage_stats_data_dir_bytes_KE", "storage_stats_data_dir_bytes_US"'
performance_review_kenya.statistic: percentile
row: 50
col: 12
width: 12
height: 8
field_x: performance_review_kenya.build_id
field_y: performance_review_kenya.point
log_scale: false
ci_lower: performance_review_kenya.lower
ci_upper: performance_review_kenya.upper
show_grid: true
listen:
Date: performance_review_kenya.build_id
Percentile: performance_review_kenya.parameter
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 2 Download Throughput
name: Networking Http 2 Download Throughput_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya
type: "ci-line-chart"
fields: [
performance_review_kenya.build_id,
performance_review_kenya.branch,
performance_review_kenya.upper,
performance_review_kenya.lower,
performance_review_kenya.point
]
pivots: [
performance_review_kenya.branch, performance_review_kenya.metric
]
filters:
performance_review_kenya.metric: '"networking_http_2_download_throughput_KE", "networking_http_2_download_throughput_US"'
performance_review_kenya.statistic: percentile
row: 60
col: 0
width: 12

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

@ -10,80 +10,6 @@
preferred_viewer: dashboards-next
elements:
- title: Networking Http 3 Download Throughput - By country
name: Networking Http 3 Download Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'networking_http_3_download_throughput'
performance_review_kenya_2.statistic: percentile
row: 0
col: 0
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 1 Upload Throughput - By country
name: Networking Http 1 Upload Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'networking_http_1_upload_throughput'
performance_review_kenya_2.statistic: percentile
row: 0
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold Main App To First Frame - By country
name: Perf Startup Cold Main App To First Frame - By country_percentile
note_state: expanded
@ -104,7 +30,7 @@
filters:
performance_review_kenya_2.metric: 'perf_startup_cold_main_app_to_first_frame'
performance_review_kenya_2.statistic: percentile
row: 10
row: 0
col: 0
width: 12
height: 8
@ -119,191 +45,6 @@
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 1 Download Throughput - By country
name: Networking Http 1 Download Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'networking_http_1_download_throughput'
performance_review_kenya_2.statistic: percentile
row: 10
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 2 Upload Throughput - By country
name: Networking Http 2 Upload Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'networking_http_2_upload_throughput'
performance_review_kenya_2.statistic: percentile
row: 20
col: 0
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Load Time - By country
name: Performance Pageload Load Time - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'performance_pageload_load_time'
performance_review_kenya_2.statistic: percentile
row: 20
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold View App To First Frame - By country
name: Perf Startup Cold View App To First Frame - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'perf_startup_cold_view_app_to_first_frame'
performance_review_kenya_2.statistic: percentile
row: 30
col: 0
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Performance Time Response Start - By country
name: Performance Time Response Start - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'performance_time_response_start'
performance_review_kenya_2.statistic: percentile
row: 30
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Networking Dns Lookup Time - By country
@ -326,7 +67,44 @@
filters:
performance_review_kenya_2.metric: 'networking_dns_lookup_time'
performance_review_kenya_2.statistic: percentile
row: 40
row: 0
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Storage Stats Data Dir Bytes - By country
name: Storage Stats Data Dir Bytes - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'storage_stats_data_dir_bytes'
performance_review_kenya_2.statistic: percentile
row: 10
col: 0
width: 12
height: 8
@ -363,7 +141,7 @@
filters:
performance_review_kenya_2.metric: 'networking_http_2_download_throughput'
performance_review_kenya_2.statistic: percentile
row: 40
row: 10
col: 12
width: 12
height: 8
@ -400,7 +178,7 @@
filters:
performance_review_kenya_2.metric: 'storage_stats_app_bytes'
performance_review_kenya_2.statistic: percentile
row: 50
row: 20
col: 0
width: 12
height: 8
@ -417,8 +195,8 @@
active: "#3FE1B0"
defaults_version: 0
- title: Storage Stats Data Dir Bytes - By country
name: Storage Stats Data Dir Bytes - By country_percentile
- title: Networking Http 1 Upload Throughput - By country
name: Networking Http 1 Upload Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
@ -435,9 +213,157 @@
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'storage_stats_data_dir_bytes'
performance_review_kenya_2.metric: 'networking_http_1_upload_throughput'
performance_review_kenya_2.statistic: percentile
row: 50
row: 20
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Performance Time Response Start - By country
name: Performance Time Response Start - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'performance_time_response_start'
performance_review_kenya_2.statistic: percentile
row: 30
col: 0
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Performance Pageload Load Time - By country
name: Performance Pageload Load Time - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'performance_pageload_load_time'
performance_review_kenya_2.statistic: percentile
row: 30
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 2 Upload Throughput - By country
name: Networking Http 2 Upload Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'networking_http_2_upload_throughput'
performance_review_kenya_2.statistic: percentile
row: 40
col: 0
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 3 Download Throughput - By country
name: Networking Http 3 Download Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'networking_http_3_download_throughput'
performance_review_kenya_2.statistic: percentile
row: 40
col: 12
width: 12
height: 8
@ -474,6 +400,80 @@
filters:
performance_review_kenya_2.metric: 'networking_http_3_upload_throughput'
performance_review_kenya_2.statistic: percentile
row: 50
col: 0
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Perf Startup Cold View App To First Frame - By country
name: Perf Startup Cold View App To First Frame - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'perf_startup_cold_view_app_to_first_frame'
performance_review_kenya_2.statistic: percentile
row: 50
col: 12
width: 12
height: 8
field_x: performance_review_kenya_2.build_id
field_y: performance_review_kenya_2.point
log_scale: false
ci_lower: performance_review_kenya_2.lower
ci_upper: performance_review_kenya_2.upper
show_grid: true
listen:
Date: performance_review_kenya_2.build_id
Percentile: performance_review_kenya_2.parameter
Country: performance_review_kenya_2.country
active: "#3FE1B0"
defaults_version: 0
- title: Networking Http 1 Download Throughput - By country
name: Networking Http 1 Download Throughput - By country_percentile
note_state: expanded
note_display: above
note_text: Percentile
explore: performance_review_kenya_2
type: "ci-line-chart"
fields: [
performance_review_kenya_2.build_id,
performance_review_kenya_2.branch,
performance_review_kenya_2.upper,
performance_review_kenya_2.lower,
performance_review_kenya_2.point
]
pivots: [
performance_review_kenya_2.branch, performance_review_kenya_2.country
]
filters:
performance_review_kenya_2.metric: 'networking_http_1_download_throughput'
performance_review_kenya_2.statistic: percentile
row: 60
col: 0
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: persist_search_term_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: persist_search_term_rollout_phase_1
type: looker_line
fields: [
persist_search_term_rollout_phase_1.submission_date,
persist_search_term_rollout_phase_1.branch,
persist_search_term_rollout_phase_1.point
]
pivots: [
persist_search_term_rollout_phase_1.branch
]
filters:
persist_search_term_rollout_phase_1.metric: 'retained'
persist_search_term_rollout_phase_1.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
field_y: persist_search_term_rollout_phase_1.point
log_scale: false
ci_lower: persist_search_term_rollout_phase_1.lower
ci_upper: persist_search_term_rollout_phase_1.upper
show_grid: true
listen:
Date: persist_search_term_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: persist_search_term_rollout_phase_1
type: looker_line
fields: [
persist_search_term_rollout_phase_1.submission_date,
persist_search_term_rollout_phase_1.branch,
persist_search_term_rollout_phase_1.point
]
pivots: [
persist_search_term_rollout_phase_1.branch
]
filters:
persist_search_term_rollout_phase_1.metric: 'ad_clicks'
persist_search_term_rollout_phase_1.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
field_y: persist_search_term_rollout_phase_1.point
log_scale: false
ci_lower: persist_search_term_rollout_phase_1.lower
ci_upper: persist_search_term_rollout_phase_1.upper
show_grid: true
listen:
Date: persist_search_term_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: persist_search_term_rollout_phase_1
type: looker_line
fields: [
persist_search_term_rollout_phase_1.submission_date,
persist_search_term_rollout_phase_1.branch,
persist_search_term_rollout_phase_1.point
]
pivots: [
persist_search_term_rollout_phase_1.branch
]
filters:
persist_search_term_rollout_phase_1.metric: 'days_of_use'
persist_search_term_rollout_phase_1.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
field_y: persist_search_term_rollout_phase_1.point
log_scale: false
ci_lower: persist_search_term_rollout_phase_1.lower
ci_upper: persist_search_term_rollout_phase_1.upper
show_grid: true
listen:
Date: persist_search_term_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
persist_search_term_rollout_phase_1.metric: 'qualified_cumulative_days_of_use'
persist_search_term_rollout_phase_1.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
@ -198,8 +96,8 @@
filters:
persist_search_term_rollout_phase_1.metric: 'active_hours'
persist_search_term_rollout_phase_1.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
@ -234,8 +132,8 @@
filters:
persist_search_term_rollout_phase_1.metric: 'memory_total'
persist_search_term_rollout_phase_1.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
@ -248,6 +146,40 @@
Date: persist_search_term_rollout_phase_1.submission_date
Percentile: persist_search_term_rollout_phase_1.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: persist_search_term_rollout_phase_1
type: looker_line
fields: [
persist_search_term_rollout_phase_1.submission_date,
persist_search_term_rollout_phase_1.branch,
persist_search_term_rollout_phase_1.point
]
pivots: [
persist_search_term_rollout_phase_1.branch
]
filters:
persist_search_term_rollout_phase_1.metric: 'ad_clicks'
persist_search_term_rollout_phase_1.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
field_y: persist_search_term_rollout_phase_1.point
log_scale: false
ci_lower: persist_search_term_rollout_phase_1.lower
ci_upper: persist_search_term_rollout_phase_1.upper
show_grid: true
listen:
Date: persist_search_term_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
persist_search_term_rollout_phase_1.metric: 'search_count'
persist_search_term_rollout_phase_1.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
field_y: persist_search_term_rollout_phase_1.point
log_scale: false
ci_lower: persist_search_term_rollout_phase_1.lower
ci_upper: persist_search_term_rollout_phase_1.upper
show_grid: true
listen:
Date: persist_search_term_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: persist_search_term_rollout_phase_1
type: looker_line
fields: [
persist_search_term_rollout_phase_1.submission_date,
persist_search_term_rollout_phase_1.branch,
persist_search_term_rollout_phase_1.point
]
pivots: [
persist_search_term_rollout_phase_1.branch
]
filters:
persist_search_term_rollout_phase_1.metric: 'retained'
persist_search_term_rollout_phase_1.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: persist_search_term_rollout_phase_1.submission_date
field_y: persist_search_term_rollout_phase_1.point
log_scale: false
ci_lower: persist_search_term_rollout_phase_1.lower
ci_upper: persist_search_term_rollout_phase_1.upper
show_grid: true
listen:
Date: persist_search_term_rollout_phase_1.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: persist_search_term_rollout_phase_1
type: looker_line
fields: [
persist_search_term_rollout_phase_1.submission_date,
persist_search_term_rollout_phase_1.branch,
persist_search_term_rollout_phase_1.point
]
pivots: [
persist_search_term_rollout_phase_1.branch
]
filters:
persist_search_term_rollout_phase_1.metric: 'days_of_use'
persist_search_term_rollout_phase_1.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: phc_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: phc_rollout
type: looker_line
fields: [
phc_rollout.submission_date,
phc_rollout.branch,
phc_rollout.point
]
pivots: [
phc_rollout.branch
]
filters:
phc_rollout.metric: 'retained'
phc_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: phc_rollout.submission_date
field_y: phc_rollout.point
log_scale: false
ci_lower: phc_rollout.lower
ci_upper: phc_rollout.upper
show_grid: true
listen:
Date: phc_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: phc_rollout
type: looker_line
fields: [
phc_rollout.submission_date,
phc_rollout.branch,
phc_rollout.point
]
pivots: [
phc_rollout.branch
]
filters:
phc_rollout.metric: 'ad_clicks'
phc_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: phc_rollout.submission_date
field_y: phc_rollout.point
log_scale: false
ci_lower: phc_rollout.lower
ci_upper: phc_rollout.upper
show_grid: true
listen:
Date: phc_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: phc_rollout
type: looker_line
fields: [
phc_rollout.submission_date,
phc_rollout.branch,
phc_rollout.point
]
pivots: [
phc_rollout.branch
]
filters:
phc_rollout.metric: 'days_of_use'
phc_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: phc_rollout.submission_date
field_y: phc_rollout.point
log_scale: false
ci_lower: phc_rollout.lower
ci_upper: phc_rollout.upper
show_grid: true
listen:
Date: phc_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
phc_rollout.metric: 'qualified_cumulative_days_of_use'
phc_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: phc_rollout.submission_date
@ -198,8 +96,8 @@
filters:
phc_rollout.metric: 'active_hours'
phc_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: phc_rollout.submission_date
@ -234,8 +132,8 @@
filters:
phc_rollout.metric: 'memory_total'
phc_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: phc_rollout.submission_date
@ -248,6 +146,40 @@
Date: phc_rollout.submission_date
Percentile: phc_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: phc_rollout
type: looker_line
fields: [
phc_rollout.submission_date,
phc_rollout.branch,
phc_rollout.point
]
pivots: [
phc_rollout.branch
]
filters:
phc_rollout.metric: 'ad_clicks'
phc_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: phc_rollout.submission_date
field_y: phc_rollout.point
log_scale: false
ci_lower: phc_rollout.lower
ci_upper: phc_rollout.upper
show_grid: true
listen:
Date: phc_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
phc_rollout.metric: 'search_count'
phc_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: phc_rollout.submission_date
field_y: phc_rollout.point
log_scale: false
ci_lower: phc_rollout.lower
ci_upper: phc_rollout.upper
show_grid: true
listen:
Date: phc_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: phc_rollout
type: looker_line
fields: [
phc_rollout.submission_date,
phc_rollout.branch,
phc_rollout.point
]
pivots: [
phc_rollout.branch
]
filters:
phc_rollout.metric: 'retained'
phc_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: phc_rollout.submission_date
field_y: phc_rollout.point
log_scale: false
ci_lower: phc_rollout.lower
ci_upper: phc_rollout.upper
show_grid: true
listen:
Date: phc_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: phc_rollout
type: looker_line
fields: [
phc_rollout.submission_date,
phc_rollout.branch,
phc_rollout.point
]
pivots: [
phc_rollout.branch
]
filters:
phc_rollout.metric: 'days_of_use'
phc_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: pref_flip_experiment_nimbus_diagnostic_v130_release
type: looker_line
fields: [
pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date,
pref_flip_experiment_nimbus_diagnostic_v130_release.branch,
pref_flip_experiment_nimbus_diagnostic_v130_release.point
]
pivots: [
pref_flip_experiment_nimbus_diagnostic_v130_release.branch
]
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'retained'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
field_y: pref_flip_experiment_nimbus_diagnostic_v130_release.point
log_scale: false
ci_lower: pref_flip_experiment_nimbus_diagnostic_v130_release.lower
ci_upper: pref_flip_experiment_nimbus_diagnostic_v130_release.upper
show_grid: true
listen:
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: pref_flip_experiment_nimbus_diagnostic_v130_release
type: looker_line
fields: [
pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date,
pref_flip_experiment_nimbus_diagnostic_v130_release.branch,
pref_flip_experiment_nimbus_diagnostic_v130_release.point
]
pivots: [
pref_flip_experiment_nimbus_diagnostic_v130_release.branch
]
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'ad_clicks'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
field_y: pref_flip_experiment_nimbus_diagnostic_v130_release.point
log_scale: false
ci_lower: pref_flip_experiment_nimbus_diagnostic_v130_release.lower
ci_upper: pref_flip_experiment_nimbus_diagnostic_v130_release.upper
show_grid: true
listen:
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: pref_flip_experiment_nimbus_diagnostic_v130_release
type: looker_line
fields: [
pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date,
pref_flip_experiment_nimbus_diagnostic_v130_release.branch,
pref_flip_experiment_nimbus_diagnostic_v130_release.point
]
pivots: [
pref_flip_experiment_nimbus_diagnostic_v130_release.branch
]
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'days_of_use'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
field_y: pref_flip_experiment_nimbus_diagnostic_v130_release.point
log_scale: false
ci_lower: pref_flip_experiment_nimbus_diagnostic_v130_release.lower
ci_upper: pref_flip_experiment_nimbus_diagnostic_v130_release.upper
show_grid: true
listen:
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'qualified_cumulative_days_of_use'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
@ -198,8 +96,8 @@
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'active_hours'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
@ -234,8 +132,8 @@
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'memory_total'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
@ -248,6 +146,40 @@
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
Percentile: pref_flip_experiment_nimbus_diagnostic_v130_release.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: pref_flip_experiment_nimbus_diagnostic_v130_release
type: looker_line
fields: [
pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date,
pref_flip_experiment_nimbus_diagnostic_v130_release.branch,
pref_flip_experiment_nimbus_diagnostic_v130_release.point
]
pivots: [
pref_flip_experiment_nimbus_diagnostic_v130_release.branch
]
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'ad_clicks'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
field_y: pref_flip_experiment_nimbus_diagnostic_v130_release.point
log_scale: false
ci_lower: pref_flip_experiment_nimbus_diagnostic_v130_release.lower
ci_upper: pref_flip_experiment_nimbus_diagnostic_v130_release.upper
show_grid: true
listen:
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'search_count'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
field_y: pref_flip_experiment_nimbus_diagnostic_v130_release.point
log_scale: false
ci_lower: pref_flip_experiment_nimbus_diagnostic_v130_release.lower
ci_upper: pref_flip_experiment_nimbus_diagnostic_v130_release.upper
show_grid: true
listen:
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: pref_flip_experiment_nimbus_diagnostic_v130_release
type: looker_line
fields: [
pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date,
pref_flip_experiment_nimbus_diagnostic_v130_release.branch,
pref_flip_experiment_nimbus_diagnostic_v130_release.point
]
pivots: [
pref_flip_experiment_nimbus_diagnostic_v130_release.branch
]
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'retained'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
field_y: pref_flip_experiment_nimbus_diagnostic_v130_release.point
log_scale: false
ci_lower: pref_flip_experiment_nimbus_diagnostic_v130_release.lower
ci_upper: pref_flip_experiment_nimbus_diagnostic_v130_release.upper
show_grid: true
listen:
Date: pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: pref_flip_experiment_nimbus_diagnostic_v130_release
type: looker_line
fields: [
pref_flip_experiment_nimbus_diagnostic_v130_release.submission_date,
pref_flip_experiment_nimbus_diagnostic_v130_release.branch,
pref_flip_experiment_nimbus_diagnostic_v130_release.point
]
pivots: [
pref_flip_experiment_nimbus_diagnostic_v130_release.branch
]
filters:
pref_flip_experiment_nimbus_diagnostic_v130_release.metric: 'days_of_use'
pref_flip_experiment_nimbus_diagnostic_v130_release.statistic: mean
row: 30
col: 12
width: 12

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

@ -10,6 +10,76 @@
preferred_viewer: dashboards-next
elements:
- title: Print Initiation Counts
name: Print Initiation Counts_sum
note_state: expanded
note_display: above
note_text: Sum
explore: print_background_task_times
type: looker_line
fields: [
print_background_task_times.submission_date,
print_background_task_times.branch,
print_background_task_times.point
]
pivots: [
print_background_task_times.branch, print_background_task_times.metric
]
filters:
print_background_task_times.metric: '"printing_dialog_opened_without_preview", "printing_dialog_opened_via_preview", "printing_preview_opened_tm", "printing_dialog_opened_via_preview_tm", "printing_preview_opened", "printing_silent_print"'
print_background_task_times.statistic: sum
row: 0
col: 0
width: 12
height: 8
field_x: print_background_task_times.submission_date
field_y: print_background_task_times.point
log_scale: false
ci_lower: print_background_task_times.lower
ci_upper: print_background_task_times.upper
show_grid: true
listen:
Date: print_background_task_times.submission_date
Channel: print_background_task_times.channel
Os: print_background_task_times.os
active: "#3FE1B0"
defaults_version: 0
- title: Print Cancel Ratios
name: Print Cancel Ratios_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
explore: print_background_task_times
type: looker_line
fields: [
print_background_task_times.submission_date,
print_background_task_times.branch,
print_background_task_times.point
]
pivots: [
print_background_task_times.branch, print_background_task_times.metric
]
filters:
print_background_task_times.metric: '"printing_dialog_via_preview_cancelled_tm", "printing_dialog_via_preview_cancelled", "printing_preview_cancelled_tm", "printing_dialog_without_preview_cancelled", "printing_preview_cancelled"'
print_background_task_times.statistic: total_ratio
row: 0
col: 12
width: 12
height: 8
field_x: print_background_task_times.submission_date
field_y: print_background_task_times.point
log_scale: false
ci_lower: print_background_task_times.lower
ci_upper: print_background_task_times.upper
show_grid: true
listen:
Date: print_background_task_times.submission_date
Channel: print_background_task_times.channel
Os: print_background_task_times.os
active: "#3FE1B0"
defaults_version: 0
- title: Print Count
name: Print Count_mean
note_state: expanded
@ -28,7 +98,7 @@
filters:
print_background_task_times.metric: 'print_count'
print_background_task_times.statistic: mean
row: 0
row: 10
col: 0
width: 12
height: 8
@ -65,7 +135,7 @@
filters:
print_background_task_times.metric: 'print_count'
print_background_task_times.statistic: percentile
row: 0
row: 10
col: 12
width: 12
height: 8
@ -83,76 +153,6 @@
active: "#3FE1B0"
defaults_version: 0
- title: Print Cancel Ratios
name: Print Cancel Ratios_total_ratio
note_state: expanded
note_display: above
note_text: Total_Ratio
explore: print_background_task_times
type: looker_line
fields: [
print_background_task_times.submission_date,
print_background_task_times.branch,
print_background_task_times.point
]
pivots: [
print_background_task_times.branch, print_background_task_times.metric
]
filters:
print_background_task_times.metric: '"printing_preview_cancelled", "printing_dialog_via_preview_cancelled", "printing_dialog_via_preview_cancelled_tm", "printing_dialog_without_preview_cancelled", "printing_preview_cancelled_tm"'
print_background_task_times.statistic: total_ratio
row: 10
col: 0
width: 12
height: 8
field_x: print_background_task_times.submission_date
field_y: print_background_task_times.point
log_scale: false
ci_lower: print_background_task_times.lower
ci_upper: print_background_task_times.upper
show_grid: true
listen:
Date: print_background_task_times.submission_date
Channel: print_background_task_times.channel
Os: print_background_task_times.os
active: "#3FE1B0"
defaults_version: 0
- title: Print Initiation Counts
name: Print Initiation Counts_sum
note_state: expanded
note_display: above
note_text: Sum
explore: print_background_task_times
type: looker_line
fields: [
print_background_task_times.submission_date,
print_background_task_times.branch,
print_background_task_times.point
]
pivots: [
print_background_task_times.branch, print_background_task_times.metric
]
filters:
print_background_task_times.metric: '"printing_dialog_opened_without_preview", "printing_silent_print", "printing_dialog_opened_via_preview", "printing_dialog_opened_via_preview_tm", "printing_preview_opened_tm", "printing_preview_opened"'
print_background_task_times.statistic: sum
row: 10
col: 12
width: 12
height: 8
field_x: print_background_task_times.submission_date
field_y: print_background_task_times.point
log_scale: false
ci_lower: print_background_task_times.lower
ci_upper: print_background_task_times.upper
show_grid: true
listen:
Date: print_background_task_times.submission_date
Channel: print_background_task_times.channel
Os: print_background_task_times.os
active: "#3FE1B0"
defaults_version: 0
filters:
- name: Date
@ -185,31 +185,31 @@
- title: Channel
name: Channel
type: string_filter
default_value: 'release'
default_value: 'nightly'
allow_multiple_values: false
required: true
ui_config:
type: dropdown_menu
display: inline
options:
- 'release'
- 'beta'
- 'nightly'
- 'beta'
- 'release'
- title: Os
name: Os
type: string_filter
default_value: 'Linux'
default_value: 'Windows_NT'
allow_multiple_values: false
required: true
ui_config:
type: dropdown_menu
display: inline
options:
- 'Linux'
- 'Windows_NT'
- 'Linux'
- 'Darwin'

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

@ -26,7 +26,7 @@
print_background_task_times_by_build.branch, print_background_task_times_by_build.metric
]
filters:
print_background_task_times_by_build.metric: '"total_printing_errors_new_ui", "total_printing_errors_old_ui"'
print_background_task_times_by_build.metric: '"total_printing_errors_old_ui", "total_printing_errors_new_ui"'
print_background_task_times_by_build.statistic: sum
row: 0
col: 0
@ -61,7 +61,7 @@
print_background_task_times_by_build.branch, print_background_task_times_by_build.metric
]
filters:
print_background_task_times_by_build.metric: '"name_not_found", "start_page", "oom", "gfx_printer_doc_is_busy", "no_printer", "startdoc", "enddoc", "print_failure", "unexpected", "not_available", "notimplemented", "cannot_open_file", "abort"'
print_background_task_times_by_build.metric: '"gfx_printer_doc_is_busy", "no_printer", "startdoc", "cannot_open_file", "print_failure", "start_page", "not_available", "oom", "enddoc", "abort", "unexpected", "notimplemented", "name_not_found"'
print_background_task_times_by_build.statistic: sum
row: 0
col: 12

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

@ -41,108 +41,6 @@
listen:
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_rollout_release
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_rollout_release.submission_date,
product_insight_telemetry_via_server_knobs_rollout_release.branch,
product_insight_telemetry_via_server_knobs_rollout_release.point
]
pivots: [
product_insight_telemetry_via_server_knobs_rollout_release.branch
]
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'retained'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
field_y: product_insight_telemetry_via_server_knobs_rollout_release.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower
ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_rollout_release
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_rollout_release.submission_date,
product_insight_telemetry_via_server_knobs_rollout_release.branch,
product_insight_telemetry_via_server_knobs_rollout_release.point
]
pivots: [
product_insight_telemetry_via_server_knobs_rollout_release.branch
]
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'ad_clicks'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
field_y: product_insight_telemetry_via_server_knobs_rollout_release.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower
ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_rollout_release
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_rollout_release.submission_date,
product_insight_telemetry_via_server_knobs_rollout_release.branch,
product_insight_telemetry_via_server_knobs_rollout_release.point
]
pivots: [
product_insight_telemetry_via_server_knobs_rollout_release.branch
]
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'days_of_use'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
field_y: product_insight_telemetry_via_server_knobs_rollout_release.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower
ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'qualified_cumulative_days_of_use'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
@ -198,8 +96,8 @@
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'active_hours'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
@ -234,8 +132,8 @@
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'memory_total'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
@ -248,6 +146,40 @@
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
Percentile: product_insight_telemetry_via_server_knobs_rollout_release.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_rollout_release
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_rollout_release.submission_date,
product_insight_telemetry_via_server_knobs_rollout_release.branch,
product_insight_telemetry_via_server_knobs_rollout_release.point
]
pivots: [
product_insight_telemetry_via_server_knobs_rollout_release.branch
]
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'ad_clicks'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
field_y: product_insight_telemetry_via_server_knobs_rollout_release.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower
ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'search_count'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
field_y: product_insight_telemetry_via_server_knobs_rollout_release.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower
ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_rollout_release
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_rollout_release.submission_date,
product_insight_telemetry_via_server_knobs_rollout_release.branch,
product_insight_telemetry_via_server_knobs_rollout_release.point
]
pivots: [
product_insight_telemetry_via_server_knobs_rollout_release.branch
]
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'retained'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
field_y: product_insight_telemetry_via_server_knobs_rollout_release.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_rollout_release.lower
ci_upper: product_insight_telemetry_via_server_knobs_rollout_release.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_rollout_release.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_rollout_release
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_rollout_release.submission_date,
product_insight_telemetry_via_server_knobs_rollout_release.branch,
product_insight_telemetry_via_server_knobs_rollout_release.point
]
pivots: [
product_insight_telemetry_via_server_knobs_rollout_release.branch
]
filters:
product_insight_telemetry_via_server_knobs_rollout_release.metric: 'days_of_use'
product_insight_telemetry_via_server_knobs_rollout_release.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_v123_and_earlier
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date,
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch,
product_insight_telemetry_via_server_knobs_v123_and_earlier.point
]
pivots: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch
]
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'retained'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower
ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_v123_and_earlier
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date,
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch,
product_insight_telemetry_via_server_knobs_v123_and_earlier.point
]
pivots: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch
]
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'ad_clicks'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower
ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_v123_and_earlier
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date,
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch,
product_insight_telemetry_via_server_knobs_v123_and_earlier.point
]
pivots: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch
]
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'days_of_use'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower
ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'qualified_cumulative_days_of_use'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
@ -198,8 +96,8 @@
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'active_hours'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
@ -234,8 +132,8 @@
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'memory_total'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
@ -248,6 +146,40 @@
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
Percentile: product_insight_telemetry_via_server_knobs_v123_and_earlier.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_v123_and_earlier
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date,
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch,
product_insight_telemetry_via_server_knobs_v123_and_earlier.point
]
pivots: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch
]
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'ad_clicks'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower
ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'search_count'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower
ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_v123_and_earlier
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date,
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch,
product_insight_telemetry_via_server_knobs_v123_and_earlier.point
]
pivots: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch
]
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'retained'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
field_y: product_insight_telemetry_via_server_knobs_v123_and_earlier.point
log_scale: false
ci_lower: product_insight_telemetry_via_server_knobs_v123_and_earlier.lower
ci_upper: product_insight_telemetry_via_server_knobs_v123_and_earlier.upper
show_grid: true
listen:
Date: product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: product_insight_telemetry_via_server_knobs_v123_and_earlier
type: looker_line
fields: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.submission_date,
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch,
product_insight_telemetry_via_server_knobs_v123_and_earlier.point
]
pivots: [
product_insight_telemetry_via_server_knobs_v123_and_earlier.branch
]
filters:
product_insight_telemetry_via_server_knobs_v123_and_earlier.metric: 'days_of_use'
product_insight_telemetry_via_server_knobs_v123_and_earlier.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout
type: looker_line
fields: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
]
pivots: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch
]
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'retained'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
field_y: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
log_scale: false
ci_lower: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.lower
ci_upper: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.upper
show_grid: true
listen:
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout
type: looker_line
fields: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
]
pivots: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch
]
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'ad_clicks'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
field_y: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
log_scale: false
ci_lower: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.lower
ci_upper: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.upper
show_grid: true
listen:
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout
type: looker_line
fields: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
]
pivots: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch
]
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'days_of_use'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
field_y: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
log_scale: false
ci_lower: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.lower
ci_upper: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.upper
show_grid: true
listen:
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'qualified_cumulative_days_of_use'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
@ -198,8 +96,8 @@
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'active_hours'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
@ -234,8 +132,8 @@
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'memory_total'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
@ -248,6 +146,40 @@
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
Percentile: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout
type: looker_line
fields: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
]
pivots: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch
]
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'ad_clicks'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
field_y: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
log_scale: false
ci_lower: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.lower
ci_upper: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.upper
show_grid: true
listen:
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'search_count'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
field_y: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
log_scale: false
ci_lower: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.lower
ci_upper: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.upper
show_grid: true
listen:
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout
type: looker_line
fields: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
]
pivots: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch
]
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'retained'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
field_y: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
log_scale: false
ci_lower: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.lower
ci_upper: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.upper
show_grid: true
listen:
Date: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: recommend_add_ons_staff_pick_relaunch_treatment_a_rollout
type: looker_line
fields: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.submission_date,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch,
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.point
]
pivots: [
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.branch
]
filters:
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.metric: 'days_of_use'
recommend_add_ons_staff_pick_relaunch_treatment_a_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users
type: looker_line
fields: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
]
pivots: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch
]
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'retained'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower
ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users
type: looker_line
fields: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
]
pivots: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch
]
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'ad_clicks'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower
ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users
type: looker_line
fields: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
]
pivots: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch
]
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'days_of_use'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower
ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'qualified_cumulative_days_of_use'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
@ -198,8 +96,8 @@
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'active_hours'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
@ -234,8 +132,8 @@
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'memory_total'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
@ -248,6 +146,40 @@
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
Percentile: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users
type: looker_line
fields: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
]
pivots: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch
]
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'ad_clicks'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower
ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'search_count'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower
ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users
type: looker_line
fields: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
]
pivots: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch
]
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'retained'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
field_y: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.lower
ci_upper: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users
type: looker_line
fields: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.submission_date,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch,
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.point
]
pivots: [
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.branch
]
filters:
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.metric: 'days_of_use'
relay_integration_into_firefox_118_release_for_all_fxa_and_autofill_users.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_beta_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_beta_for_all_fxa_users.submission_date,
relay_integration_into_firefox_beta_for_all_fxa_users.branch,
relay_integration_into_firefox_beta_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_beta_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'retained'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_beta_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_beta_for_all_fxa_users.submission_date,
relay_integration_into_firefox_beta_for_all_fxa_users.branch,
relay_integration_into_firefox_beta_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_beta_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'ad_clicks'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_beta_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_beta_for_all_fxa_users.submission_date,
relay_integration_into_firefox_beta_for_all_fxa_users.branch,
relay_integration_into_firefox_beta_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_beta_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'days_of_use'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
@ -198,8 +96,8 @@
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'active_hours'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
@ -234,8 +132,8 @@
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'memory_total'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
@ -248,6 +146,40 @@
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
Percentile: relay_integration_into_firefox_beta_for_all_fxa_users.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_beta_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_beta_for_all_fxa_users.submission_date,
relay_integration_into_firefox_beta_for_all_fxa_users.branch,
relay_integration_into_firefox_beta_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_beta_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'ad_clicks'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'search_count'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_beta_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_beta_for_all_fxa_users.submission_date,
relay_integration_into_firefox_beta_for_all_fxa_users.branch,
relay_integration_into_firefox_beta_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_beta_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'retained'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_beta_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_beta_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_beta_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_beta_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_beta_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_beta_for_all_fxa_users.submission_date,
relay_integration_into_firefox_beta_for_all_fxa_users.branch,
relay_integration_into_firefox_beta_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_beta_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_beta_for_all_fxa_users.metric: 'days_of_use'
relay_integration_into_firefox_beta_for_all_fxa_users.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_nightly_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date,
relay_integration_into_firefox_nightly_for_all_fxa_users.branch,
relay_integration_into_firefox_nightly_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_nightly_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'retained'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_nightly_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date,
relay_integration_into_firefox_nightly_for_all_fxa_users.branch,
relay_integration_into_firefox_nightly_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_nightly_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'ad_clicks'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_nightly_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date,
relay_integration_into_firefox_nightly_for_all_fxa_users.branch,
relay_integration_into_firefox_nightly_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_nightly_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'days_of_use'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
@ -198,8 +96,8 @@
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'active_hours'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
@ -234,8 +132,8 @@
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'memory_total'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
@ -248,6 +146,40 @@
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
Percentile: relay_integration_into_firefox_nightly_for_all_fxa_users.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_nightly_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date,
relay_integration_into_firefox_nightly_for_all_fxa_users.branch,
relay_integration_into_firefox_nightly_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_nightly_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'ad_clicks'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'search_count'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_nightly_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date,
relay_integration_into_firefox_nightly_for_all_fxa_users.branch,
relay_integration_into_firefox_nightly_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_nightly_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'retained'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_nightly_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_nightly_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_nightly_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_nightly_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_nightly_for_all_fxa_users.submission_date,
relay_integration_into_firefox_nightly_for_all_fxa_users.branch,
relay_integration_into_firefox_nightly_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_nightly_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_nightly_for_all_fxa_users.metric: 'days_of_use'
relay_integration_into_firefox_nightly_for_all_fxa_users.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_release_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_release_for_all_fxa_users.submission_date,
relay_integration_into_firefox_release_for_all_fxa_users.branch,
relay_integration_into_firefox_release_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_release_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'retained'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_release_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_release_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_release_for_all_fxa_users.submission_date,
relay_integration_into_firefox_release_for_all_fxa_users.branch,
relay_integration_into_firefox_release_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_release_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'ad_clicks'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_release_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_release_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_release_for_all_fxa_users.submission_date,
relay_integration_into_firefox_release_for_all_fxa_users.branch,
relay_integration_into_firefox_release_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_release_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'days_of_use'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_release_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'qualified_cumulative_days_of_use'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
@ -198,8 +96,8 @@
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'active_hours'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
@ -234,8 +132,8 @@
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'memory_total'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
@ -248,6 +146,40 @@
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
Percentile: relay_integration_into_firefox_release_for_all_fxa_users.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_release_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_release_for_all_fxa_users.submission_date,
relay_integration_into_firefox_release_for_all_fxa_users.branch,
relay_integration_into_firefox_release_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_release_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'ad_clicks'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_release_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'search_count'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_release_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_release_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_release_for_all_fxa_users.submission_date,
relay_integration_into_firefox_release_for_all_fxa_users.branch,
relay_integration_into_firefox_release_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_release_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'retained'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
field_y: relay_integration_into_firefox_release_for_all_fxa_users.point
log_scale: false
ci_lower: relay_integration_into_firefox_release_for_all_fxa_users.lower
ci_upper: relay_integration_into_firefox_release_for_all_fxa_users.upper
show_grid: true
listen:
Date: relay_integration_into_firefox_release_for_all_fxa_users.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: relay_integration_into_firefox_release_for_all_fxa_users
type: looker_line
fields: [
relay_integration_into_firefox_release_for_all_fxa_users.submission_date,
relay_integration_into_firefox_release_for_all_fxa_users.branch,
relay_integration_into_firefox_release_for_all_fxa_users.point
]
pivots: [
relay_integration_into_firefox_release_for_all_fxa_users.branch
]
filters:
relay_integration_into_firefox_release_for_all_fxa_users.metric: 'days_of_use'
relay_integration_into_firefox_release_for_all_fxa_users.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: review_checker_staged_rollout_no_survey_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: review_checker_staged_rollout_no_survey_beta
type: looker_line
fields: [
review_checker_staged_rollout_no_survey_beta.submission_date,
review_checker_staged_rollout_no_survey_beta.branch,
review_checker_staged_rollout_no_survey_beta.point
]
pivots: [
review_checker_staged_rollout_no_survey_beta.branch
]
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'retained'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
field_y: review_checker_staged_rollout_no_survey_beta.point
log_scale: false
ci_lower: review_checker_staged_rollout_no_survey_beta.lower
ci_upper: review_checker_staged_rollout_no_survey_beta.upper
show_grid: true
listen:
Date: review_checker_staged_rollout_no_survey_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: review_checker_staged_rollout_no_survey_beta
type: looker_line
fields: [
review_checker_staged_rollout_no_survey_beta.submission_date,
review_checker_staged_rollout_no_survey_beta.branch,
review_checker_staged_rollout_no_survey_beta.point
]
pivots: [
review_checker_staged_rollout_no_survey_beta.branch
]
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'ad_clicks'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
field_y: review_checker_staged_rollout_no_survey_beta.point
log_scale: false
ci_lower: review_checker_staged_rollout_no_survey_beta.lower
ci_upper: review_checker_staged_rollout_no_survey_beta.upper
show_grid: true
listen:
Date: review_checker_staged_rollout_no_survey_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: review_checker_staged_rollout_no_survey_beta
type: looker_line
fields: [
review_checker_staged_rollout_no_survey_beta.submission_date,
review_checker_staged_rollout_no_survey_beta.branch,
review_checker_staged_rollout_no_survey_beta.point
]
pivots: [
review_checker_staged_rollout_no_survey_beta.branch
]
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'days_of_use'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
field_y: review_checker_staged_rollout_no_survey_beta.point
log_scale: false
ci_lower: review_checker_staged_rollout_no_survey_beta.lower
ci_upper: review_checker_staged_rollout_no_survey_beta.upper
show_grid: true
listen:
Date: review_checker_staged_rollout_no_survey_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'qualified_cumulative_days_of_use'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
@ -198,8 +96,8 @@
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'active_hours'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
@ -234,8 +132,8 @@
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'memory_total'
review_checker_staged_rollout_no_survey_beta.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
@ -248,6 +146,40 @@
Date: review_checker_staged_rollout_no_survey_beta.submission_date
Percentile: review_checker_staged_rollout_no_survey_beta.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: review_checker_staged_rollout_no_survey_beta
type: looker_line
fields: [
review_checker_staged_rollout_no_survey_beta.submission_date,
review_checker_staged_rollout_no_survey_beta.branch,
review_checker_staged_rollout_no_survey_beta.point
]
pivots: [
review_checker_staged_rollout_no_survey_beta.branch
]
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'ad_clicks'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
field_y: review_checker_staged_rollout_no_survey_beta.point
log_scale: false
ci_lower: review_checker_staged_rollout_no_survey_beta.lower
ci_upper: review_checker_staged_rollout_no_survey_beta.upper
show_grid: true
listen:
Date: review_checker_staged_rollout_no_survey_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'search_count'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
field_y: review_checker_staged_rollout_no_survey_beta.point
log_scale: false
ci_lower: review_checker_staged_rollout_no_survey_beta.lower
ci_upper: review_checker_staged_rollout_no_survey_beta.upper
show_grid: true
listen:
Date: review_checker_staged_rollout_no_survey_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: review_checker_staged_rollout_no_survey_beta
type: looker_line
fields: [
review_checker_staged_rollout_no_survey_beta.submission_date,
review_checker_staged_rollout_no_survey_beta.branch,
review_checker_staged_rollout_no_survey_beta.point
]
pivots: [
review_checker_staged_rollout_no_survey_beta.branch
]
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'retained'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: review_checker_staged_rollout_no_survey_beta.submission_date
field_y: review_checker_staged_rollout_no_survey_beta.point
log_scale: false
ci_lower: review_checker_staged_rollout_no_survey_beta.lower
ci_upper: review_checker_staged_rollout_no_survey_beta.upper
show_grid: true
listen:
Date: review_checker_staged_rollout_no_survey_beta.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: review_checker_staged_rollout_no_survey_beta
type: looker_line
fields: [
review_checker_staged_rollout_no_survey_beta.submission_date,
review_checker_staged_rollout_no_survey_beta.branch,
review_checker_staged_rollout_no_survey_beta.point
]
pivots: [
review_checker_staged_rollout_no_survey_beta.branch
]
filters:
review_checker_staged_rollout_no_survey_beta.metric: 'days_of_use'
review_checker_staged_rollout_no_survey_beta.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_eu_regions
type: looker_line
fields: [
rollout_sponsored_topsites_in_eu_regions.submission_date,
rollout_sponsored_topsites_in_eu_regions.branch,
rollout_sponsored_topsites_in_eu_regions.point
]
pivots: [
rollout_sponsored_topsites_in_eu_regions.branch
]
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'retained'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
field_y: rollout_sponsored_topsites_in_eu_regions.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_eu_regions.lower
ci_upper: rollout_sponsored_topsites_in_eu_regions.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_eu_regions
type: looker_line
fields: [
rollout_sponsored_topsites_in_eu_regions.submission_date,
rollout_sponsored_topsites_in_eu_regions.branch,
rollout_sponsored_topsites_in_eu_regions.point
]
pivots: [
rollout_sponsored_topsites_in_eu_regions.branch
]
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'ad_clicks'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
field_y: rollout_sponsored_topsites_in_eu_regions.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_eu_regions.lower
ci_upper: rollout_sponsored_topsites_in_eu_regions.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_eu_regions
type: looker_line
fields: [
rollout_sponsored_topsites_in_eu_regions.submission_date,
rollout_sponsored_topsites_in_eu_regions.branch,
rollout_sponsored_topsites_in_eu_regions.point
]
pivots: [
rollout_sponsored_topsites_in_eu_regions.branch
]
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'days_of_use'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
field_y: rollout_sponsored_topsites_in_eu_regions.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_eu_regions.lower
ci_upper: rollout_sponsored_topsites_in_eu_regions.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'qualified_cumulative_days_of_use'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
@ -198,8 +96,8 @@
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'active_hours'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
@ -234,8 +132,8 @@
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'memory_total'
rollout_sponsored_topsites_in_eu_regions.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
@ -248,6 +146,40 @@
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
Percentile: rollout_sponsored_topsites_in_eu_regions.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_eu_regions
type: looker_line
fields: [
rollout_sponsored_topsites_in_eu_regions.submission_date,
rollout_sponsored_topsites_in_eu_regions.branch,
rollout_sponsored_topsites_in_eu_regions.point
]
pivots: [
rollout_sponsored_topsites_in_eu_regions.branch
]
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'ad_clicks'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
field_y: rollout_sponsored_topsites_in_eu_regions.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_eu_regions.lower
ci_upper: rollout_sponsored_topsites_in_eu_regions.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'search_count'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
field_y: rollout_sponsored_topsites_in_eu_regions.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_eu_regions.lower
ci_upper: rollout_sponsored_topsites_in_eu_regions.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_eu_regions
type: looker_line
fields: [
rollout_sponsored_topsites_in_eu_regions.submission_date,
rollout_sponsored_topsites_in_eu_regions.branch,
rollout_sponsored_topsites_in_eu_regions.point
]
pivots: [
rollout_sponsored_topsites_in_eu_regions.branch
]
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'retained'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_eu_regions.submission_date
field_y: rollout_sponsored_topsites_in_eu_regions.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_eu_regions.lower
ci_upper: rollout_sponsored_topsites_in_eu_regions.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_eu_regions.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_eu_regions
type: looker_line
fields: [
rollout_sponsored_topsites_in_eu_regions.submission_date,
rollout_sponsored_topsites_in_eu_regions.branch,
rollout_sponsored_topsites_in_eu_regions.point
]
pivots: [
rollout_sponsored_topsites_in_eu_regions.branch
]
filters:
rollout_sponsored_topsites_in_eu_regions.metric: 'days_of_use'
rollout_sponsored_topsites_in_eu_regions.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_se_and_sg
type: looker_line
fields: [
rollout_sponsored_topsites_in_se_and_sg.submission_date,
rollout_sponsored_topsites_in_se_and_sg.branch,
rollout_sponsored_topsites_in_se_and_sg.point
]
pivots: [
rollout_sponsored_topsites_in_se_and_sg.branch
]
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'retained'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
field_y: rollout_sponsored_topsites_in_se_and_sg.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_se_and_sg.lower
ci_upper: rollout_sponsored_topsites_in_se_and_sg.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_se_and_sg
type: looker_line
fields: [
rollout_sponsored_topsites_in_se_and_sg.submission_date,
rollout_sponsored_topsites_in_se_and_sg.branch,
rollout_sponsored_topsites_in_se_and_sg.point
]
pivots: [
rollout_sponsored_topsites_in_se_and_sg.branch
]
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'ad_clicks'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
field_y: rollout_sponsored_topsites_in_se_and_sg.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_se_and_sg.lower
ci_upper: rollout_sponsored_topsites_in_se_and_sg.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_se_and_sg
type: looker_line
fields: [
rollout_sponsored_topsites_in_se_and_sg.submission_date,
rollout_sponsored_topsites_in_se_and_sg.branch,
rollout_sponsored_topsites_in_se_and_sg.point
]
pivots: [
rollout_sponsored_topsites_in_se_and_sg.branch
]
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'days_of_use'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
field_y: rollout_sponsored_topsites_in_se_and_sg.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_se_and_sg.lower
ci_upper: rollout_sponsored_topsites_in_se_and_sg.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'qualified_cumulative_days_of_use'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
@ -198,8 +96,8 @@
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'active_hours'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
@ -234,8 +132,8 @@
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'memory_total'
rollout_sponsored_topsites_in_se_and_sg.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
@ -248,6 +146,40 @@
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
Percentile: rollout_sponsored_topsites_in_se_and_sg.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_se_and_sg
type: looker_line
fields: [
rollout_sponsored_topsites_in_se_and_sg.submission_date,
rollout_sponsored_topsites_in_se_and_sg.branch,
rollout_sponsored_topsites_in_se_and_sg.point
]
pivots: [
rollout_sponsored_topsites_in_se_and_sg.branch
]
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'ad_clicks'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
field_y: rollout_sponsored_topsites_in_se_and_sg.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_se_and_sg.lower
ci_upper: rollout_sponsored_topsites_in_se_and_sg.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'search_count'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
field_y: rollout_sponsored_topsites_in_se_and_sg.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_se_and_sg.lower
ci_upper: rollout_sponsored_topsites_in_se_and_sg.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_se_and_sg
type: looker_line
fields: [
rollout_sponsored_topsites_in_se_and_sg.submission_date,
rollout_sponsored_topsites_in_se_and_sg.branch,
rollout_sponsored_topsites_in_se_and_sg.point
]
pivots: [
rollout_sponsored_topsites_in_se_and_sg.branch
]
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'retained'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: rollout_sponsored_topsites_in_se_and_sg.submission_date
field_y: rollout_sponsored_topsites_in_se_and_sg.point
log_scale: false
ci_lower: rollout_sponsored_topsites_in_se_and_sg.lower
ci_upper: rollout_sponsored_topsites_in_se_and_sg.upper
show_grid: true
listen:
Date: rollout_sponsored_topsites_in_se_and_sg.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: rollout_sponsored_topsites_in_se_and_sg
type: looker_line
fields: [
rollout_sponsored_topsites_in_se_and_sg.submission_date,
rollout_sponsored_topsites_in_se_and_sg.branch,
rollout_sponsored_topsites_in_se_and_sg.point
]
pivots: [
rollout_sponsored_topsites_in_se_and_sg.branch
]
filters:
rollout_sponsored_topsites_in_se_and_sg.metric: 'days_of_use'
rollout_sponsored_topsites_in_se_and_sg.statistic: mean
row: 30
col: 12
width: 12

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

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

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

@ -41,108 +41,6 @@
listen:
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: serp_categorization_and_consolidated_search_config_us_desktop_relaunch
type: looker_line
fields: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
]
pivots: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch
]
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'retained'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
field_y: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
log_scale: false
ci_lower: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.lower
ci_upper: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.upper
show_grid: true
listen:
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: serp_categorization_and_consolidated_search_config_us_desktop_relaunch
type: looker_line
fields: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
]
pivots: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch
]
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'ad_clicks'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
field_y: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
log_scale: false
ci_lower: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.lower
ci_upper: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.upper
show_grid: true
listen:
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: serp_categorization_and_consolidated_search_config_us_desktop_relaunch
type: looker_line
fields: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
]
pivots: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch
]
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'days_of_use'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
field_y: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
log_scale: false
ci_lower: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.lower
ci_upper: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.upper
show_grid: true
listen:
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'qualified_cumulative_days_of_use'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
@ -198,8 +96,8 @@
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'active_hours'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
@ -234,8 +132,8 @@
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'memory_total'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
@ -248,6 +146,40 @@
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
Percentile: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: serp_categorization_and_consolidated_search_config_us_desktop_relaunch
type: looker_line
fields: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
]
pivots: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch
]
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'ad_clicks'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
field_y: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
log_scale: false
ci_lower: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.lower
ci_upper: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.upper
show_grid: true
listen:
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'search_count'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
field_y: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
log_scale: false
ci_lower: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.lower
ci_upper: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.upper
show_grid: true
listen:
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: serp_categorization_and_consolidated_search_config_us_desktop_relaunch
type: looker_line
fields: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
]
pivots: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch
]
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'retained'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
field_y: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
log_scale: false
ci_lower: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.lower
ci_upper: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.upper
show_grid: true
listen:
Date: serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: serp_categorization_and_consolidated_search_config_us_desktop_relaunch
type: looker_line
fields: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.submission_date,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch,
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.point
]
pivots: [
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.branch
]
filters:
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.metric: 'days_of_use'
serp_categorization_and_consolidated_search_config_us_desktop_relaunch.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: tab_hover_preview_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_beta_rollout
type: looker_line
fields: [
tab_hover_preview_beta_rollout.submission_date,
tab_hover_preview_beta_rollout.branch,
tab_hover_preview_beta_rollout.point
]
pivots: [
tab_hover_preview_beta_rollout.branch
]
filters:
tab_hover_preview_beta_rollout.metric: 'retained'
tab_hover_preview_beta_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
field_y: tab_hover_preview_beta_rollout.point
log_scale: false
ci_lower: tab_hover_preview_beta_rollout.lower
ci_upper: tab_hover_preview_beta_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_beta_rollout
type: looker_line
fields: [
tab_hover_preview_beta_rollout.submission_date,
tab_hover_preview_beta_rollout.branch,
tab_hover_preview_beta_rollout.point
]
pivots: [
tab_hover_preview_beta_rollout.branch
]
filters:
tab_hover_preview_beta_rollout.metric: 'ad_clicks'
tab_hover_preview_beta_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
field_y: tab_hover_preview_beta_rollout.point
log_scale: false
ci_lower: tab_hover_preview_beta_rollout.lower
ci_upper: tab_hover_preview_beta_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_beta_rollout
type: looker_line
fields: [
tab_hover_preview_beta_rollout.submission_date,
tab_hover_preview_beta_rollout.branch,
tab_hover_preview_beta_rollout.point
]
pivots: [
tab_hover_preview_beta_rollout.branch
]
filters:
tab_hover_preview_beta_rollout.metric: 'days_of_use'
tab_hover_preview_beta_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
field_y: tab_hover_preview_beta_rollout.point
log_scale: false
ci_lower: tab_hover_preview_beta_rollout.lower
ci_upper: tab_hover_preview_beta_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
tab_hover_preview_beta_rollout.metric: 'qualified_cumulative_days_of_use'
tab_hover_preview_beta_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
@ -198,8 +96,8 @@
filters:
tab_hover_preview_beta_rollout.metric: 'active_hours'
tab_hover_preview_beta_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
@ -234,8 +132,8 @@
filters:
tab_hover_preview_beta_rollout.metric: 'memory_total'
tab_hover_preview_beta_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
@ -248,6 +146,40 @@
Date: tab_hover_preview_beta_rollout.submission_date
Percentile: tab_hover_preview_beta_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_beta_rollout
type: looker_line
fields: [
tab_hover_preview_beta_rollout.submission_date,
tab_hover_preview_beta_rollout.branch,
tab_hover_preview_beta_rollout.point
]
pivots: [
tab_hover_preview_beta_rollout.branch
]
filters:
tab_hover_preview_beta_rollout.metric: 'ad_clicks'
tab_hover_preview_beta_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
field_y: tab_hover_preview_beta_rollout.point
log_scale: false
ci_lower: tab_hover_preview_beta_rollout.lower
ci_upper: tab_hover_preview_beta_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
tab_hover_preview_beta_rollout.metric: 'search_count'
tab_hover_preview_beta_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
field_y: tab_hover_preview_beta_rollout.point
log_scale: false
ci_lower: tab_hover_preview_beta_rollout.lower
ci_upper: tab_hover_preview_beta_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_beta_rollout
type: looker_line
fields: [
tab_hover_preview_beta_rollout.submission_date,
tab_hover_preview_beta_rollout.branch,
tab_hover_preview_beta_rollout.point
]
pivots: [
tab_hover_preview_beta_rollout.branch
]
filters:
tab_hover_preview_beta_rollout.metric: 'retained'
tab_hover_preview_beta_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: tab_hover_preview_beta_rollout.submission_date
field_y: tab_hover_preview_beta_rollout.point
log_scale: false
ci_lower: tab_hover_preview_beta_rollout.lower
ci_upper: tab_hover_preview_beta_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_beta_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_beta_rollout
type: looker_line
fields: [
tab_hover_preview_beta_rollout.submission_date,
tab_hover_preview_beta_rollout.branch,
tab_hover_preview_beta_rollout.point
]
pivots: [
tab_hover_preview_beta_rollout.branch
]
filters:
tab_hover_preview_beta_rollout.metric: 'days_of_use'
tab_hover_preview_beta_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: tab_hover_preview_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_release_rollout
type: looker_line
fields: [
tab_hover_preview_release_rollout.submission_date,
tab_hover_preview_release_rollout.branch,
tab_hover_preview_release_rollout.point
]
pivots: [
tab_hover_preview_release_rollout.branch
]
filters:
tab_hover_preview_release_rollout.metric: 'retained'
tab_hover_preview_release_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
field_y: tab_hover_preview_release_rollout.point
log_scale: false
ci_lower: tab_hover_preview_release_rollout.lower
ci_upper: tab_hover_preview_release_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_release_rollout
type: looker_line
fields: [
tab_hover_preview_release_rollout.submission_date,
tab_hover_preview_release_rollout.branch,
tab_hover_preview_release_rollout.point
]
pivots: [
tab_hover_preview_release_rollout.branch
]
filters:
tab_hover_preview_release_rollout.metric: 'ad_clicks'
tab_hover_preview_release_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
field_y: tab_hover_preview_release_rollout.point
log_scale: false
ci_lower: tab_hover_preview_release_rollout.lower
ci_upper: tab_hover_preview_release_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_release_rollout
type: looker_line
fields: [
tab_hover_preview_release_rollout.submission_date,
tab_hover_preview_release_rollout.branch,
tab_hover_preview_release_rollout.point
]
pivots: [
tab_hover_preview_release_rollout.branch
]
filters:
tab_hover_preview_release_rollout.metric: 'days_of_use'
tab_hover_preview_release_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
field_y: tab_hover_preview_release_rollout.point
log_scale: false
ci_lower: tab_hover_preview_release_rollout.lower
ci_upper: tab_hover_preview_release_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
tab_hover_preview_release_rollout.metric: 'qualified_cumulative_days_of_use'
tab_hover_preview_release_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
@ -198,8 +96,8 @@
filters:
tab_hover_preview_release_rollout.metric: 'active_hours'
tab_hover_preview_release_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
@ -234,8 +132,8 @@
filters:
tab_hover_preview_release_rollout.metric: 'memory_total'
tab_hover_preview_release_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
@ -248,6 +146,40 @@
Date: tab_hover_preview_release_rollout.submission_date
Percentile: tab_hover_preview_release_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_release_rollout
type: looker_line
fields: [
tab_hover_preview_release_rollout.submission_date,
tab_hover_preview_release_rollout.branch,
tab_hover_preview_release_rollout.point
]
pivots: [
tab_hover_preview_release_rollout.branch
]
filters:
tab_hover_preview_release_rollout.metric: 'ad_clicks'
tab_hover_preview_release_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
field_y: tab_hover_preview_release_rollout.point
log_scale: false
ci_lower: tab_hover_preview_release_rollout.lower
ci_upper: tab_hover_preview_release_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
tab_hover_preview_release_rollout.metric: 'search_count'
tab_hover_preview_release_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
field_y: tab_hover_preview_release_rollout.point
log_scale: false
ci_lower: tab_hover_preview_release_rollout.lower
ci_upper: tab_hover_preview_release_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_release_rollout
type: looker_line
fields: [
tab_hover_preview_release_rollout.submission_date,
tab_hover_preview_release_rollout.branch,
tab_hover_preview_release_rollout.point
]
pivots: [
tab_hover_preview_release_rollout.branch
]
filters:
tab_hover_preview_release_rollout.metric: 'retained'
tab_hover_preview_release_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: tab_hover_preview_release_rollout.submission_date
field_y: tab_hover_preview_release_rollout.point
log_scale: false
ci_lower: tab_hover_preview_release_rollout.lower
ci_upper: tab_hover_preview_release_rollout.upper
show_grid: true
listen:
Date: tab_hover_preview_release_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: tab_hover_preview_release_rollout
type: looker_line
fields: [
tab_hover_preview_release_rollout.submission_date,
tab_hover_preview_release_rollout.branch,
tab_hover_preview_release_rollout.point
]
pivots: [
tab_hover_preview_release_rollout.branch
]
filters:
tab_hover_preview_release_rollout.metric: 'days_of_use'
tab_hover_preview_release_rollout.statistic: mean
row: 30
col: 12
width: 12

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

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

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

@ -132,7 +132,7 @@
- name: Metric
title: Metric
type: field_filter
default_value: 'js_pageload_execution_ms'
default_value: 'subsession_length'
allow_multiple_values: false
required: true
ui_config:

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

@ -41,108 +41,6 @@
listen:
Date: upgrade_spotlight_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: upgrade_spotlight_rollout
type: looker_line
fields: [
upgrade_spotlight_rollout.submission_date,
upgrade_spotlight_rollout.branch,
upgrade_spotlight_rollout.point
]
pivots: [
upgrade_spotlight_rollout.branch
]
filters:
upgrade_spotlight_rollout.metric: 'retained'
upgrade_spotlight_rollout.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
field_y: upgrade_spotlight_rollout.point
log_scale: false
ci_lower: upgrade_spotlight_rollout.lower
ci_upper: upgrade_spotlight_rollout.upper
show_grid: true
listen:
Date: upgrade_spotlight_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: upgrade_spotlight_rollout
type: looker_line
fields: [
upgrade_spotlight_rollout.submission_date,
upgrade_spotlight_rollout.branch,
upgrade_spotlight_rollout.point
]
pivots: [
upgrade_spotlight_rollout.branch
]
filters:
upgrade_spotlight_rollout.metric: 'ad_clicks'
upgrade_spotlight_rollout.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
field_y: upgrade_spotlight_rollout.point
log_scale: false
ci_lower: upgrade_spotlight_rollout.lower
ci_upper: upgrade_spotlight_rollout.upper
show_grid: true
listen:
Date: upgrade_spotlight_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: upgrade_spotlight_rollout
type: looker_line
fields: [
upgrade_spotlight_rollout.submission_date,
upgrade_spotlight_rollout.branch,
upgrade_spotlight_rollout.point
]
pivots: [
upgrade_spotlight_rollout.branch
]
filters:
upgrade_spotlight_rollout.metric: 'days_of_use'
upgrade_spotlight_rollout.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
field_y: upgrade_spotlight_rollout.point
log_scale: false
ci_lower: upgrade_spotlight_rollout.lower
ci_upper: upgrade_spotlight_rollout.upper
show_grid: true
listen:
Date: upgrade_spotlight_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
upgrade_spotlight_rollout.metric: 'qualified_cumulative_days_of_use'
upgrade_spotlight_rollout.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
@ -198,8 +96,8 @@
filters:
upgrade_spotlight_rollout.metric: 'active_hours'
upgrade_spotlight_rollout.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
@ -234,8 +132,8 @@
filters:
upgrade_spotlight_rollout.metric: 'memory_total'
upgrade_spotlight_rollout.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
@ -248,6 +146,40 @@
Date: upgrade_spotlight_rollout.submission_date
Percentile: upgrade_spotlight_rollout.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: upgrade_spotlight_rollout
type: looker_line
fields: [
upgrade_spotlight_rollout.submission_date,
upgrade_spotlight_rollout.branch,
upgrade_spotlight_rollout.point
]
pivots: [
upgrade_spotlight_rollout.branch
]
filters:
upgrade_spotlight_rollout.metric: 'ad_clicks'
upgrade_spotlight_rollout.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
field_y: upgrade_spotlight_rollout.point
log_scale: false
ci_lower: upgrade_spotlight_rollout.lower
ci_upper: upgrade_spotlight_rollout.upper
show_grid: true
listen:
Date: upgrade_spotlight_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
upgrade_spotlight_rollout.metric: 'search_count'
upgrade_spotlight_rollout.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
field_y: upgrade_spotlight_rollout.point
log_scale: false
ci_lower: upgrade_spotlight_rollout.lower
ci_upper: upgrade_spotlight_rollout.upper
show_grid: true
listen:
Date: upgrade_spotlight_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: upgrade_spotlight_rollout
type: looker_line
fields: [
upgrade_spotlight_rollout.submission_date,
upgrade_spotlight_rollout.branch,
upgrade_spotlight_rollout.point
]
pivots: [
upgrade_spotlight_rollout.branch
]
filters:
upgrade_spotlight_rollout.metric: 'retained'
upgrade_spotlight_rollout.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: upgrade_spotlight_rollout.submission_date
field_y: upgrade_spotlight_rollout.point
log_scale: false
ci_lower: upgrade_spotlight_rollout.lower
ci_upper: upgrade_spotlight_rollout.upper
show_grid: true
listen:
Date: upgrade_spotlight_rollout.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: upgrade_spotlight_rollout
type: looker_line
fields: [
upgrade_spotlight_rollout.submission_date,
upgrade_spotlight_rollout.branch,
upgrade_spotlight_rollout.point
]
pivots: [
upgrade_spotlight_rollout.branch
]
filters:
upgrade_spotlight_rollout.metric: 'days_of_use'
upgrade_spotlight_rollout.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: us_review_checker_rollout_v2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: us_review_checker_rollout_v2
type: looker_line
fields: [
us_review_checker_rollout_v2.submission_date,
us_review_checker_rollout_v2.branch,
us_review_checker_rollout_v2.point
]
pivots: [
us_review_checker_rollout_v2.branch
]
filters:
us_review_checker_rollout_v2.metric: 'retained'
us_review_checker_rollout_v2.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
field_y: us_review_checker_rollout_v2.point
log_scale: false
ci_lower: us_review_checker_rollout_v2.lower
ci_upper: us_review_checker_rollout_v2.upper
show_grid: true
listen:
Date: us_review_checker_rollout_v2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: us_review_checker_rollout_v2
type: looker_line
fields: [
us_review_checker_rollout_v2.submission_date,
us_review_checker_rollout_v2.branch,
us_review_checker_rollout_v2.point
]
pivots: [
us_review_checker_rollout_v2.branch
]
filters:
us_review_checker_rollout_v2.metric: 'ad_clicks'
us_review_checker_rollout_v2.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
field_y: us_review_checker_rollout_v2.point
log_scale: false
ci_lower: us_review_checker_rollout_v2.lower
ci_upper: us_review_checker_rollout_v2.upper
show_grid: true
listen:
Date: us_review_checker_rollout_v2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: us_review_checker_rollout_v2
type: looker_line
fields: [
us_review_checker_rollout_v2.submission_date,
us_review_checker_rollout_v2.branch,
us_review_checker_rollout_v2.point
]
pivots: [
us_review_checker_rollout_v2.branch
]
filters:
us_review_checker_rollout_v2.metric: 'days_of_use'
us_review_checker_rollout_v2.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
field_y: us_review_checker_rollout_v2.point
log_scale: false
ci_lower: us_review_checker_rollout_v2.lower
ci_upper: us_review_checker_rollout_v2.upper
show_grid: true
listen:
Date: us_review_checker_rollout_v2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
us_review_checker_rollout_v2.metric: 'qualified_cumulative_days_of_use'
us_review_checker_rollout_v2.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
@ -198,8 +96,8 @@
filters:
us_review_checker_rollout_v2.metric: 'active_hours'
us_review_checker_rollout_v2.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
@ -234,8 +132,8 @@
filters:
us_review_checker_rollout_v2.metric: 'memory_total'
us_review_checker_rollout_v2.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
@ -248,6 +146,40 @@
Date: us_review_checker_rollout_v2.submission_date
Percentile: us_review_checker_rollout_v2.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: us_review_checker_rollout_v2
type: looker_line
fields: [
us_review_checker_rollout_v2.submission_date,
us_review_checker_rollout_v2.branch,
us_review_checker_rollout_v2.point
]
pivots: [
us_review_checker_rollout_v2.branch
]
filters:
us_review_checker_rollout_v2.metric: 'ad_clicks'
us_review_checker_rollout_v2.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
field_y: us_review_checker_rollout_v2.point
log_scale: false
ci_lower: us_review_checker_rollout_v2.lower
ci_upper: us_review_checker_rollout_v2.upper
show_grid: true
listen:
Date: us_review_checker_rollout_v2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
us_review_checker_rollout_v2.metric: 'search_count'
us_review_checker_rollout_v2.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
field_y: us_review_checker_rollout_v2.point
log_scale: false
ci_lower: us_review_checker_rollout_v2.lower
ci_upper: us_review_checker_rollout_v2.upper
show_grid: true
listen:
Date: us_review_checker_rollout_v2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: us_review_checker_rollout_v2
type: looker_line
fields: [
us_review_checker_rollout_v2.submission_date,
us_review_checker_rollout_v2.branch,
us_review_checker_rollout_v2.point
]
pivots: [
us_review_checker_rollout_v2.branch
]
filters:
us_review_checker_rollout_v2.metric: 'retained'
us_review_checker_rollout_v2.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: us_review_checker_rollout_v2.submission_date
field_y: us_review_checker_rollout_v2.point
log_scale: false
ci_lower: us_review_checker_rollout_v2.lower
ci_upper: us_review_checker_rollout_v2.upper
show_grid: true
listen:
Date: us_review_checker_rollout_v2.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: us_review_checker_rollout_v2
type: looker_line
fields: [
us_review_checker_rollout_v2.submission_date,
us_review_checker_rollout_v2.branch,
us_review_checker_rollout_v2.point
]
pivots: [
us_review_checker_rollout_v2.branch
]
filters:
us_review_checker_rollout_v2.metric: 'days_of_use'
us_review_checker_rollout_v2.statistic: mean
row: 30
col: 12
width: 12

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

@ -41,108 +41,6 @@
listen:
Date: viewpoint_desktop_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: viewpoint_desktop_2024
type: looker_line
fields: [
viewpoint_desktop_2024.submission_date,
viewpoint_desktop_2024.branch,
viewpoint_desktop_2024.point
]
pivots: [
viewpoint_desktop_2024.branch
]
filters:
viewpoint_desktop_2024.metric: 'retained'
viewpoint_desktop_2024.statistic: mean
row: 0
col: 12
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
field_y: viewpoint_desktop_2024.point
log_scale: false
ci_lower: viewpoint_desktop_2024.lower
ci_upper: viewpoint_desktop_2024.upper
show_grid: true
listen:
Date: viewpoint_desktop_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: viewpoint_desktop_2024
type: looker_line
fields: [
viewpoint_desktop_2024.submission_date,
viewpoint_desktop_2024.branch,
viewpoint_desktop_2024.point
]
pivots: [
viewpoint_desktop_2024.branch
]
filters:
viewpoint_desktop_2024.metric: 'ad_clicks'
viewpoint_desktop_2024.statistic: mean
row: 10
col: 0
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
field_y: viewpoint_desktop_2024.point
log_scale: false
ci_lower: viewpoint_desktop_2024.lower
ci_upper: viewpoint_desktop_2024.upper
show_grid: true
listen:
Date: viewpoint_desktop_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: viewpoint_desktop_2024
type: looker_line
fields: [
viewpoint_desktop_2024.submission_date,
viewpoint_desktop_2024.branch,
viewpoint_desktop_2024.point
]
pivots: [
viewpoint_desktop_2024.branch
]
filters:
viewpoint_desktop_2024.metric: 'days_of_use'
viewpoint_desktop_2024.statistic: mean
row: 10
col: 12
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
field_y: viewpoint_desktop_2024.point
log_scale: false
ci_lower: viewpoint_desktop_2024.lower
ci_upper: viewpoint_desktop_2024.upper
show_grid: true
listen:
Date: viewpoint_desktop_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -164,8 +62,8 @@
filters:
viewpoint_desktop_2024.metric: 'qualified_cumulative_days_of_use'
viewpoint_desktop_2024.statistic: mean
row: 20
col: 0
row: 0
col: 12
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
@ -198,8 +96,8 @@
filters:
viewpoint_desktop_2024.metric: 'active_hours'
viewpoint_desktop_2024.statistic: mean
row: 20
col: 12
row: 10
col: 0
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
@ -234,8 +132,8 @@
filters:
viewpoint_desktop_2024.metric: 'memory_total'
viewpoint_desktop_2024.statistic: percentile
row: 30
col: 0
row: 10
col: 12
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
@ -248,6 +146,40 @@
Date: viewpoint_desktop_2024.submission_date
Percentile: viewpoint_desktop_2024.parameter
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Ad Clicks
name: Ad Clicks_mean
note_state: expanded
note_display: above
note_text: Mean
explore: viewpoint_desktop_2024
type: looker_line
fields: [
viewpoint_desktop_2024.submission_date,
viewpoint_desktop_2024.branch,
viewpoint_desktop_2024.point
]
pivots: [
viewpoint_desktop_2024.branch
]
filters:
viewpoint_desktop_2024.metric: 'ad_clicks'
viewpoint_desktop_2024.statistic: mean
row: 20
col: 0
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
field_y: viewpoint_desktop_2024.point
log_scale: false
ci_lower: viewpoint_desktop_2024.lower
ci_upper: viewpoint_desktop_2024.upper
show_grid: true
listen:
Date: viewpoint_desktop_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
@ -269,6 +201,74 @@
filters:
viewpoint_desktop_2024.metric: 'search_count'
viewpoint_desktop_2024.statistic: mean
row: 20
col: 12
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
field_y: viewpoint_desktop_2024.point
log_scale: false
ci_lower: viewpoint_desktop_2024.lower
ci_upper: viewpoint_desktop_2024.upper
show_grid: true
listen:
Date: viewpoint_desktop_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Retained
name: Retained_mean
note_state: expanded
note_display: above
note_text: Mean
explore: viewpoint_desktop_2024
type: looker_line
fields: [
viewpoint_desktop_2024.submission_date,
viewpoint_desktop_2024.branch,
viewpoint_desktop_2024.point
]
pivots: [
viewpoint_desktop_2024.branch
]
filters:
viewpoint_desktop_2024.metric: 'retained'
viewpoint_desktop_2024.statistic: mean
row: 30
col: 0
width: 12
height: 8
field_x: viewpoint_desktop_2024.submission_date
field_y: viewpoint_desktop_2024.point
log_scale: false
ci_lower: viewpoint_desktop_2024.lower
ci_upper: viewpoint_desktop_2024.upper
show_grid: true
listen:
Date: viewpoint_desktop_2024.submission_date
enabled: "#3FE1B0"
disabled: "#0060E0"
defaults_version: 0
- title: Days Of Use
name: Days Of Use_mean
note_state: expanded
note_display: above
note_text: Mean
explore: viewpoint_desktop_2024
type: looker_line
fields: [
viewpoint_desktop_2024.submission_date,
viewpoint_desktop_2024.branch,
viewpoint_desktop_2024.point
]
pivots: [
viewpoint_desktop_2024.branch
]
filters:
viewpoint_desktop_2024.metric: 'days_of_use'
viewpoint_desktop_2024.statistic: mean
row: 30
col: 12
width: 12

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

@ -4105,6 +4105,78 @@ To be used to validate GIFFT.
"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
label: "Ls Preparedatastore Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Ls Preparedatastore"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparedatastore Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_preparedatastore_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the parent process to prepare a Datastore. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. When a Datastore is already preloaded, the preparation is usually fast since it doesn't need to do any I/O. If an error occurs, the time is not recorded. In future, we might want to introduce additional separate metrics for different types of datastore preparations (data needs to be loaded from disk, data already available, etc.)
"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
label: "Ls Preparelsdatabase Processing Time Sum"
hidden: no
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Ls Preparelsdatabase"
group_item_label: "Processing Time Sum"
link: {
label: "Glean Dictionary reference for Ls Preparelsdatabase Processing Time Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_preparelsdatabase_processing_time"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Time it took for the content process to fully prepare a new LSDatabase, including any time required to prepare a Datastore in the parent. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. If an error occurs, the time is not recorded.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
label: "Ls Request Recv Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Recv Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
label: "Ls Request Send Cancellation"
hidden: no
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Ls Request"
group_item_label: "Send Cancellation"
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__labeled_counter__media_audio_backend {
label: "Media Audio Backend"
hidden: yes
@ -5334,6 +5406,42 @@ To be used to validate GIFFT.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Received Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Received Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/networking_http_3_ecn_ce_ect0_ratio_received"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) received.
"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
label: "Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
hidden: no
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Networking"
group_item_label: "Http 3 Ecn Ce Ect0 Ratio Sent Sum"
link: {
label: "Glean Dictionary reference for Networking Http 3 Ecn Ce Ect0 Ratio Sent Sum"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/networking_http_3_ecn_ce_ect0_ratio_sent"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
description: "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) sent.
"
}
dimension: metrics__labeled_counter__networking_http_3_ecn_path_capability {
label: "Networking Http 3 Ecn Path Capability"
hidden: yes
@ -10867,6 +10975,56 @@ documented in the ping's pings.yaml file.
}
}
measure: ls_request_recv_cancellation {
type: sum
sql: ${metrics__counter__ls_request_recv_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_recv_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_recv_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Recv Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_request_recv_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation {
type: sum
sql: ${metrics__counter__ls_request_send_cancellation} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: ls_request_send_cancellation_client_count {
type: count_distinct
filters: [
metrics__counter__ls_request_send_cancellation: ">0",
]
sql: ${client_info__client_id} ;;
link: {
label: "Glean Dictionary reference for Ls Request Send Cancellation"
url: "https://dictionary.telemetry.mozilla.org/apps/thunderbird_desktop/metrics/ls_request_send_cancellation"
icon_url: "https://dictionary.telemetry.mozilla.org/favicon.png"
}
}
measure: netwerk_parent_connect_timeout {
type: sum
sql: ${metrics__counter__netwerk_parent_connect_timeout} ;;
@ -19139,6 +19297,30 @@ view: metrics__metrics__custom_distribution__networking_http_3_download_throughp
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -20907,6 +21089,30 @@ view: metrics__metrics__timing_distribution__javascript_pageload_xdr_encode_time
}
}
view: metrics__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;

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

@ -675,6 +675,24 @@ This does not include deletion-request pings.
"
}
dimension: metrics__counter__ls_request_recv_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_recv_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Recv Cancellation"
description: "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.
"
}
dimension: metrics__counter__ls_request_send_cancellation {
sql: ${TABLE}.metrics.counter.ls_request_send_cancellation ;;
type: number
group_label: "Metrics Counter"
group_item_label: "Ls Request Send Cancellation"
description: "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.
"
}
dimension: metrics__counter__mail_mails_read {
sql: ${TABLE}.metrics.counter.mail_mails_read ;;
type: number
@ -1848,6 +1866,46 @@ This does not include deletion-request pings.
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Received"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_received.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.count ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__sum {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.sum ;;
type: number
group_label: "Metrics Custom Distribution Networking Http 3 Ecn Ce Ect0 Ratio Sent"
group_item_label: "Sum"
}
dimension: metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_ecn_ce_ect0_ratio_sent.values ;;
hidden: yes
}
dimension: metrics__custom_distribution__networking_http_3_loss_ratio__count {
sql: ${TABLE}.metrics.custom_distribution.networking_http_3_loss_ratio.count ;;
type: number
@ -7822,6 +7880,126 @@ documented in the ping's pings.yaml file.
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparedatastore Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparedatastore_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparedatastore_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.bucket_count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Bucket Count"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__count {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.count ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Count"
description: "This was accidentally sent in the past and is now deprecated. See https://bugzilla.mozilla.org/show_bug.cgi?id=1799509#c5"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__histogram_type {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.histogram_type ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Histogram Type"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__overflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.overflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Overflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__range {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.range ;;
hidden: yes
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__sum {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.sum ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Sum"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__time_unit {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.time_unit ;;
type: string
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Time Unit"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__underflow {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.underflow ;;
type: number
group_label: "Metrics Timing Distribution Ls Preparelsdatabase Processing Time"
group_item_label: "Underflow"
}
dimension: metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
sql: ${TABLE}.metrics.timing_distribution.ls_preparelsdatabase_processing_time.values ;;
hidden: yes
}
dimension: metrics__timing_distribution__network_cache_hit_time__bucket_count {
sql: ${TABLE}.metrics.timing_distribution.network_cache_hit_time.bucket_count ;;
type: number
@ -13239,6 +13417,30 @@ view: metrics_table__metrics__custom_distribution__networking_http_3_download_th
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_received__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_ecn_ce_ect0_ratio_sent__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__custom_distribution__networking_http_3_loss_ratio__values {
dimension: key {
sql: ${TABLE}.key ;;
@ -15007,6 +15209,30 @@ view: metrics_table__metrics__timing_distribution__javascript_pageload_xdr_encod
}
}
view: metrics_table__metrics__timing_distribution__ls_preparedatastore_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__ls_preparelsdatabase_processing_time__values {
dimension: key {
sql: ${TABLE}.key ;;
type: string
}
dimension: value {
sql: ${TABLE}.value ;;
type: number
}
}
view: metrics_table__metrics__timing_distribution__network_cache_hit_time__values {
dimension: key {
sql: ${TABLE}.key ;;