File: metrics.yaml

package info (click to toggle)
firefox 142.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,591,884 kB
  • sloc: cpp: 7,451,570; javascript: 6,392,463; ansic: 3,712,584; python: 1,388,569; xml: 629,223; asm: 426,919; java: 184,857; sh: 63,439; makefile: 19,150; objc: 13,059; perl: 12,983; yacc: 4,583; cs: 3,846; pascal: 3,352; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (296 lines) | stat: -rw-r--r-- 8,599 bytes parent folder | download | duplicates (2)
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# 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:
  - 'Firefox :: Data Loss Prevention'

# The following metrics are used to track the usage of the Data Loss Prevention feature.

content_analysis:
  connection_attempt:
    type: counter
    description: Recorded when Firefox attempts to
     connect to the DLP agent.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  connection_attempt_retry:
    type: counter
    description: Recorded when Firefox attempts to
     retry connecting to the DLP agent (because a previous
     attempt to communicate with the agent failed).
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  connection_failure:
    type: labeled_counter
    description: Recorded when Firefox fails to connect to the DLP
     agent. The label is the nsresult that was returned by the
     connection attempt.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  agent_name:
    type: string
    description: The name of the DLP agent that Firefox is
     connected to. This is set via enterprise policy.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  interception_points_turned_off:
    type: string_list
    description: The interception points that are turned off
     via enterprise policy.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  show_blocked_result:
    type: boolean
    description: The show_blocked_result pref that is set
     via enterprise policy.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  default_result:
    type: quantity
    description: The default_result pref that is set
     via enterprise policy.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
    unit: BlockWarnAllow
  timeout_result:
    type: quantity
    description: The timeout_result pref that is set
     via enterprise policy.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
    unit: BlockWarnAllow
  client_signature:
    type: string
    description: The client_signature pref that is set
     via enterprise policy.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  bypass_for_same_tab_operations:
    type: boolean
    description: The bypass_for_same_tab_operations pref that is set
     via enterprise policy.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  allow_url_regex_list_set:
    type: boolean
    description: Whether the allow_url_regex_list pref is set
     to a non-default value.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  deny_url_regex_list_set:
    type: boolean
    description: Whether the deny_url_regex_list pref is set
     to a non-default value.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - technical
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  request_allowed_by_allow_url:
    type: counter
    description: Recorded when a request is allowed by the
     allow_url_regex_list.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - interaction
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  request_blocked_by_deny_url:
    type: counter
    description: Recorded when a request is blocked by the
     deny_url_regex_list.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - interaction
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  request_sent_by_analysis_type:
    type: labeled_counter
    description: Recorded when a request is sent to the DLP agent.
     The label is the analysisType of the request, which corresponds
     to a value in the AnalysisConnector enum in analysis.proto.
     (e.g. "FILE_DOWNLOADED", "FILE_ATTACHED", "BULK_DATA_ENTRY", etc.)
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - interaction
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  request_sent_by_reason:
    type: labeled_counter
    description: Recorded when a request is sent to the DLP agent.
     The label is the reason of the request, which corresponds to
     a value in the ContentAnalysisRequest::Reason enum in analysis.proto.
     (e.g. "CLIPBOARD_PASTE", "DRAG_AND_DROP", etc.)
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - interaction
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  response_duration_by_analysis_type:
    type: labeled_timing_distribution
    time_unit: microsecond
    description: The time between sending a request to the DLP agent
     and receiving a response from the agent. The label is the analysisType
     of the request.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - interaction
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com
  response_action:
    type: labeled_counter
    description: Recorded when a response is received from the DLP agent.
     The label is the action of the response, converted to a string (so "1").
     The values correspond to nsIContentAnalysisResponse::Action.
    bugs:
      - https://bugzil.la/1963385
    data_reviews:
      - https://bugzil.la/1963385
    data_sensitivity:
      - interaction
    expires: never
    notification_emails:
      - gstoll@mozilla.com
      - haftandilian@mozilla.com
      - dparks@mozilla.com