# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.
# ATTENTION: Changes to this file will need to be reflected in probe-scraper[1]. # This should happen automatically once a day. # If something is unclear or data is not showing up in time # you will need to file a bug in Data Platform and Tools :: General. # # [1] https://github.com/mozilla/probe-scraper
# Metrics that are sent by Firefox Desktop # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
firefox_desktop_metrics = [ "browser/actors/metrics.yaml", "browser/components/aiwindow/metrics.yaml", "browser/components/asrouter/metrics.yaml", "browser/components/attribution/metrics.yaml", "browser/components/backup/metrics.yaml", "browser/components/contentsharing/metrics.yaml", "browser/components/contextualidentity/metrics.yaml", "browser/components/controlcenter/metrics.yaml", "browser/components/customkeys/metrics.yaml", "browser/components/downloads/metrics.yaml", "browser/components/extensions/metrics.yaml", "browser/components/firefoxview/metrics.yaml", "browser/components/genai/metrics.yaml", "browser/components/ipprotection/metrics.yaml", "browser/components/metrics.yaml", "browser/components/migration/metrics.yaml", "browser/components/newtab/metrics.yaml", "browser/components/places/metrics.yaml", "browser/components/preferences/metrics.yaml", "browser/components/privatebrowsing/metrics.yaml", "browser/components/profiles/metrics.yaml", "browser/components/protections/metrics.yaml", "browser/components/protocolhandler/metrics.yaml", "browser/components/screenshots/metrics.yaml", "browser/components/search/metrics.yaml", "browser/components/sessionstore/metrics.yaml", "browser/components/sidebar/metrics.yaml", "browser/components/tabbrowser/metrics.yaml", "browser/components/tabnotes/metrics.yaml", "browser/components/taskbartabs/metrics.yaml", "browser/components/textrecognition/metrics.yaml", "browser/components/urlbar/metrics.yaml", "browser/extensions/search-detection/metrics.yaml", "browser/modules/metrics.yaml", "dom/media/platforms/wmf/metrics.yaml", "services/fxaccounts/metrics.yaml", "toolkit/components/contentanalysis/metrics.yaml", "toolkit/components/contentrelevancy/metrics.yaml", "toolkit/components/crashes/metrics.yaml", "toolkit/components/nimbus/metrics.yaml", "toolkit/components/pictureinpicture/metrics.yaml", "toolkit/components/places/metrics.yaml", "toolkit/components/reportbrokensite/metrics.yaml", "toolkit/components/satchel/megalist/metrics.yaml", "toolkit/components/search/metrics.yaml", "toolkit/components/telemetry/metrics.yaml", "toolkit/modules/metrics.yaml", "toolkit/mozapps/update/shared_metrics.yaml", "widget/cocoa/metrics.yaml", "widget/gtk/metrics.yaml", "widget/windows/metrics.yaml",
]
# Metrics that are sent by the Firefox Desktop Background Update Task # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
background_update_metrics = [ "toolkit/components/crashes/metrics.yaml", "toolkit/mozapps/update/background_task_metrics.yaml", "toolkit/mozapps/update/shared_metrics.yaml",
]
# Metrics that are sent by the Firefox Desktop Background Tasks # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
background_tasks_metrics = [ "browser/components/metrics.yaml", "toolkit/components/backgroundtasks/metrics.yaml", "toolkit/components/crashes/metrics.yaml", "toolkit/mozapps/defaultagent/metrics.yaml",
]
# Test metrics # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
test_metrics = [ "toolkit/components/glean/tests/test_metrics.yaml", "toolkit/components/telemetry/tests/test_metrics.yaml",
]
# The list of all Glean metrics.yaml files, relative to the top src dir. # ONLY TO BE MODIFIED BY FOG PEERS!
metrics_yamls = sorted(
set(
gecko_metrics
+ firefox_desktop_metrics
+ background_update_metrics
+ background_tasks_metrics
+ test_metrics
)
)
# Pings that are sent by Gecko and everyone using Gecko # (Firefox Desktop, Firefox for Android, Focus for Android, etc.). # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
gecko_pings = [ "dom/pings.yaml", "netwerk/pings.yaml", "toolkit/components/antitracking/bouncetrackingprotection/pings.yaml", "toolkit/components/backgroundhangmonitor/pings.yaml", "toolkit/components/captchadetection/pings.yaml", "toolkit/components/gecko-trace/pings.yaml", "toolkit/components/glean/pings.yaml", "toolkit/components/resistfingerprinting/pings.yaml", "toolkit/mozapps/extensions/pings.yaml",
]
# Pings that are sent by Firefox Desktop. # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
firefox_desktop_pings = [ "browser/components/asrouter/pings.yaml", "browser/components/backup/pings.yaml", "browser/components/newtab/pings.yaml", "browser/components/profiles/pings.yaml", "browser/components/search/pings.yaml", "browser/components/urlbar/pings.yaml", "browser/modules/pings.yaml", "services/fxaccounts/pings.yaml", "services/sync/pings.yaml", "toolkit/components/nimbus/pings.yaml", "toolkit/components/reportbrokensite/pings.yaml", "toolkit/components/telemetry/pings.yaml", "toolkit/modules/pings.yaml", "toolkit/mozapps/update/shared_pings.yaml", "toolkit/profile/pings.yaml",
]
# Pings that are sent by the Firefox Desktop Background Update Task # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
background_update_pings = [ "toolkit/mozapps/update/pings.yaml", "toolkit/mozapps/update/shared_pings.yaml",
]
# Pings that are sent by the Firefox Desktop Background Tasks # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
background_tasks_pings = [ "toolkit/components/backgroundtasks/pings.yaml", "toolkit/components/nimbus/pings.yaml", "toolkit/mozapps/defaultagent/pings.yaml",
]
# Test pings # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
test_pings = [ "toolkit/components/glean/tests/test_pings.yaml",
]
# Map of app ids to lists of pings files for that app. # Necessary to ensure different apps don't store data for unsent pings. # Use the app id conjugation passed to initializeFOG (dotted.case).
pings_by_app_or_lib_id = { "firefox.desktop": gecko_pings + firefox_desktop_pings + test_pings, "firefox.desktop.background.update": gecko_pings
+ background_update_pings
+ test_pings, "firefox.desktop.background.tasks": gecko_pings + background_tasks_pings, # Not an _actual_ app ID in use, # but needed to differentiate ping registration in geckoview builds "gecko": gecko_pings + test_pings,
}
# The list of all Glean pings.yaml files, relative to the top src dir. # ONLY TO BE MODIFIED BY FOG PEERS!
pings_yamls = sorted(
set(
gecko_pings
+ firefox_desktop_pings
+ background_update_pings
+ background_tasks_pings
+ test_pings
)
)
# The list of tags that are allowed in the above to files, and their # descriptions. Currently we restrict to a set scraped from bugzilla # (via `./mach update-glean-tags`) # Order is lexicographical, enforced by t/c/glean/tests/pytest/test_yaml_indices.py
tags_yamls = [ "toolkit/components/glean/tags.yaml",
]
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.