mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1037494 - Add author field to Histograms.json; r=vladan
This commit is contained in:
parent
cd64ddcdae
commit
0eaa4d1893
@ -71,6 +71,7 @@
|
||||
"description": "Maximum number of concurrent threads reached during a given download session"
|
||||
},
|
||||
"BLOCKLIST_SYNC_FILE_LOAD": {
|
||||
"alert_emails": ["rvitillo@mozilla.com"],
|
||||
"expires_in_version": "35",
|
||||
"kind": "boolean",
|
||||
"description": "blocklist.xml has been loaded synchronously"
|
||||
@ -4183,6 +4184,7 @@
|
||||
"description": "Number of histograms with total count low errors"
|
||||
},
|
||||
"TELEMETRY_FILES_EVICTED": {
|
||||
"alert_emails": ["rvitillo@mozilla.com"],
|
||||
"expires_in_version": "36",
|
||||
"kind": "enumerated",
|
||||
"n_values": 30,
|
||||
@ -4506,6 +4508,7 @@
|
||||
"description": "Time (ms) it takes to initialize the search service"
|
||||
},
|
||||
"SEARCH_SERVICE_INIT_SYNC": {
|
||||
"alert_emails": ["rvitillo@mozilla.com"],
|
||||
"expires_in_version": "35",
|
||||
"kind": "boolean",
|
||||
"description": "search service has been initialized synchronously"
|
||||
|
@ -55,7 +55,7 @@ def exponential_buckets(dmin, dmax, n_buckets):
|
||||
ret_array[bucket_index] = current
|
||||
return ret_array
|
||||
|
||||
always_allowed_keys = ['kind', 'description', 'cpp_guard', 'expires_in_version']
|
||||
always_allowed_keys = ['kind', 'description', 'cpp_guard', 'expires_in_version', "alert_emails"]
|
||||
|
||||
class Histogram:
|
||||
"""A class for representing a histogram definition."""
|
||||
|
Loading…
Reference in New Issue
Block a user