mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-18 14:56:07 +00:00
106 lines
3.7 KiB
YAML
106 lines
3.7 KiB
YAML
# 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/.
|
|
|
|
# Adding a new metric? We have docs for that!
|
|
# https://firefox-source-docs.mozilla.org/toolkit/components/glean/user/new_definitions_file.html
|
|
|
|
---
|
|
$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0
|
|
$tags:
|
|
- 'Core :: Storage: Quota Manager'
|
|
|
|
dom.quota.try:
|
|
error_step:
|
|
type: event
|
|
description: >
|
|
An event recorded on an error of the quota manager or its clients.
|
|
Since errors are usually propagated up the call chain, all such
|
|
propagation steps are recorded for an error. This is only active
|
|
during specific contexts, in particular during storage
|
|
initialization. No dynamic data is included in the event beyond the
|
|
error code which will be added through Bug 1670555.
|
|
This event was generated to correspond to the Legacy Telemetry event
|
|
dom.quota.try.error#step.
|
|
bugs:
|
|
- https://bugzil.la/1665088
|
|
data_reviews:
|
|
- https://bugzil.la/1665088
|
|
notification_emails:
|
|
- jvarga@mozilla.com
|
|
- storage-telemetry@mozilla.com
|
|
expires: never
|
|
extra_keys:
|
|
context:
|
|
description: >
|
|
The context in which the error occurred, e.g. during a storage initialization.
|
|
Telemetry events are only emitted for selected contexts.
|
|
type: string
|
|
frame_id:
|
|
description: >
|
|
Optionally, the frame within stack_id.
|
|
type: string
|
|
process_id:
|
|
description: >
|
|
Optionally, the process in which the error occured.
|
|
type: string
|
|
result:
|
|
description: >
|
|
Optionally, the name of the error that occurred.
|
|
type: string
|
|
seq:
|
|
description: >
|
|
Sequence number.
|
|
type: quantity
|
|
severity:
|
|
description: >
|
|
One of WARNING or ERROR.
|
|
type: string
|
|
source_file:
|
|
description: >
|
|
The name of the source code file where the error occurred.
|
|
type: string
|
|
source_line:
|
|
description: >
|
|
The line within source_file where the error occurred.
|
|
type: quantity
|
|
stack_id:
|
|
description: >
|
|
Optionally, the stack within process_id.
|
|
type: string
|
|
telemetry_mirror: DomQuotaTry_Error_Step
|
|
quotamanager.initialize.repository:
|
|
number_of_iterations:
|
|
type: labeled_custom_distribution
|
|
description: >
|
|
This metric logs the count of directory entries iterated within the
|
|
QuotaManager::InitializeRepository function for each repository type.
|
|
Each instance of this metric is labeled with one of three repository
|
|
types: "persistent", "temporary" or "default" (there's also "private"
|
|
repository but that should never be iterated by the function).
|
|
The main purpose is to track and analyze iteration counts during the
|
|
initialization process of each repository type, helping to identify
|
|
performance trends or potential inefficiencies across these repositories.
|
|
This can provide insight into the impacts of specific code changes,
|
|
including potential optimizations or regressions.
|
|
range_min: 0
|
|
range_max: 65535
|
|
bucket_count: 50
|
|
histogram_type: exponential
|
|
unit: integer
|
|
bugs:
|
|
- https://bugzilla.mozilla.org/show_bug.cgi?id=1927260
|
|
data_reviews:
|
|
- https://bugzilla.mozilla.org/show_bug.cgi?id=1927260
|
|
data_sensitivity:
|
|
- technical
|
|
notification_emails:
|
|
- jvarga@mozilla.com
|
|
- storage-telemetry@mozilla.com
|
|
expires: never
|
|
labels:
|
|
- persistent
|
|
- temporary
|
|
- default
|
|
- private
|