forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1713489 - Record telemetry for how long we spend waiting on the m…
…ain thread to process image preload network steps. r=bas,dragana,necko-reviewers Differential Revision: https://phabricator.services.mozilla.com/D116318
- Loading branch information
1 parent
ac6b41f
commit c1f699c
Showing
10 changed files
with
66 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16656,6 +16656,28 @@ | |
"alert_emails": ["[email protected]", "[email protected]"], | ||
"description": "HTTP subitem channel: ODoH lookup time (ms)" | ||
}, | ||
"HTTP_PRELOAD_IMAGE_STARTREQUEST_DELAY": { | ||
"record_in_processes": ["content"], | ||
"products": ["firefox"], | ||
"expires_in_version": "96", | ||
"kind": "exponential", | ||
"high": 5000, | ||
"n_buckets": 50, | ||
"bug_numbers": [1713489], | ||
"alert_emails": ["[email protected]", "[email protected]"], | ||
"description": "Time spent waiting on the main-thread to be available to process OnStartRequest, for image preload requests" | ||
}, | ||
"DOCUMENT_PRELOAD_IMAGE_ASYNCOPEN_DELAY": { | ||
"record_in_processes": ["content"], | ||
"products": ["firefox"], | ||
"expires_in_version": "96", | ||
"kind": "exponential", | ||
"high": 5000, | ||
"n_buckets": 50, | ||
"bug_numbers": [1713489], | ||
"alert_emails": ["[email protected]", "[email protected]"], | ||
"description": "Time spent waiting on the main-thread to be available to run AsyncOpen, for image preload requests" | ||
}, | ||
"OPAQUE_RESPONSE_BLOCKING_TIME_MS" : { | ||
"record_in_processes": ["main"], | ||
"products": ["firefox"], | ||
|