File: metrics.yaml

package info (click to toggle)
firefox 147.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,683,532 kB
  • sloc: cpp: 7,607,356; javascript: 6,533,348; ansic: 3,775,236; python: 1,415,508; xml: 634,561; asm: 438,949; java: 186,241; sh: 62,760; makefile: 18,079; objc: 13,092; perl: 12,808; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10; exp: 6
file content (161 lines) | stat: -rw-r--r-- 5,094 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# 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 :: DOM: Navigation'

performance.page:
  total_content_page_load:
    type: timing_distribution
    time_unit: millisecond
    telemetry_mirror: TOTAL_CONTENT_PAGE_LOAD_TIME
    description: >
      Time to load all of a page's resources and render.
      (Migrated from the geckoview metric of the same name.)
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1580077
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1877842
    data_reviews:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10
    notification_emails:
      - perf-telemetry-alerts@mozilla.com
      - bdekoz@mozilla.com
    expires: never

bfcache:
  combo:
    type: labeled_counter
    description: >
      The common combinations of BFCacheStatus when we determine whether the
      page can be BFCached or not; If it's BFCached, we record BFCache_Success;
      Success_Not_Toplevel represents the number of not the only top level
      document in BrowsingContextGroup's documents that are BFCached, and
      BFCache_Success includes Success_Not_Toplevel; If it's not and it falls
      under common failure reasons combinations, we record the corresponding
      combination; Otherwise, we record Other to indicate this is not a common
      failure

      This metric was generated to correspond to the Legacy Telemetry
      categorical histogram BFCACHE_COMBO.
    labels:
      - BFCache_Success
      - Success_Not_Toplevel
      - Unload
      - Unload_Req
      - Req
      - Unload_Req_Peer
      - Unload_Req_Peer_MSE
      - Unload_Req_MSE
      - SPD_Unload_Req_Peer
      - Remote_Subframes
      - Beforeunload
      - Other
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1531917
    data_reviews:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1531917
    notification_emails:
      - sefeng@mozilla.com
    expires: never
    telemetry_mirror: h#BFCACHE_COMBO

  page_restored:
    type: labeled_counter
    description: >
      Whether bfcache is used when loading a page from session history

      This metric was generated to correspond to the Legacy Telemetry boolean
      histogram BFCACHE_PAGE_RESTORED.
    labels:
      - "false"
      - "true"
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1531917
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1551935
    data_reviews:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1531917
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1551935
    notification_emails:
      - sefeng@mozilla.com
    expires: never
    telemetry_mirror: h#BFCACHE_PAGE_RESTORED

page:
  load_error:
    type: dual_labeled_counter
    description: >
      Page load errors. Match values with type of error in
      nsDocShellTelemetryUtils.cpp

      This metric was generated to correspond to the Legacy Telemetry
      categorical histogram PAGE_LOAD_ERROR.
    dual_labels:
      key:
        description: Is the error for a subframe or a top level document?
          PAGE_LOAD_ERROR.
        labels:
          - top
          - frame
      category:
        labels:
          - UNKNOWN_PROTOCOL
          - FILE_NOT_FOUND
          - FILE_ACCESS_DENIED
          - UNKNOWN_HOST
          - CONNECTION_REFUSED
          - PROXY_BAD_GATEWAY
          - NET_INTERRUPT
          - NET_TIMEOUT
          - P_GATEWAY_TIMEOUT
          - CSP_FRAME_ANCEST
          - CSP_FORM_ACTION
          - CSP_NAVIGATE_TO
          - XFO_VIOLATION
          - PHISHING_URI
          - MALWARE_URI
          - UNWANTED_URI
          - HARMFUL_URI
          - CONTENT_CRASHED
          - FRAME_CRASHED
          - BUILDID_MISMATCH
          - NET_RESET
          - MALFORMED_URI
          - REDIRECT_LOOP
          - UNKNOWN_SOCKET
          - DOCUMENT_N_CACHED
          - OFFLINE
          - DOC_PRINTMODE
          - PORT_ACCESS
          - UNKNOWN_PROXY_HOST
          - PROXY_CONNECTION
          - PROXY_FORBIDDEN
          - P_NOT_IMPLEMENTED
          - PROXY_AUTH
          - PROXY_TOO_MANY
          - CONTENT_ENCODING
          - REMOTE_XUL
          - UNSAFE_CONTENT
          - CORRUPTED_CONTENT
          - INTERCEPTION_FAIL
          - INADEQUATE_SEC
          - BLOCKED_BY_POLICY
          - HTTP2_SENT_GOAWAY
          - HTTP3_PROTOCOL
          - BINDING_FAILED
          - otherError
        description: Labels of the keyed categorical legacy telemetry histogram
          PAGE_LOAD_ERROR.
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1636962
    data_reviews:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1636962
    notification_emails:
      - seceng-telemetry@mozilla.com
    expires: never
    telemetry_mirror: PAGE_LOAD_ERROR