forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1772216: Add telemetry probe to measure time spent waiting for th…
…e GPU. r=mstange Differential Revision: https://phabricator.services.mozilla.com/D148075
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,22 @@ paint: | |
telemetry_mirror: PAINT_BUILD_DISPLAYLIST_TIME | ||
|
||
wr: | ||
gpu_wait_time: | ||
type: timing_distribution | ||
description: > | ||
The time spent waiting for the GPU to complete previously issued drawing | ||
commands. | ||
time_unit: microsecond | ||
bugs: | ||
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772216 | ||
data_reviews: | ||
- https://bugzilla.mozilla.org/show_bug.cgi?id=1772216 | ||
data_sensitivity: | ||
- technical | ||
notification_emails: | ||
- [email protected] | ||
expires: never | ||
telemetry_mirror: WR_GPU_WAIT_TIME | ||
rasterize_glyphs_time: | ||
type: timing_distribution | ||
description: > | ||
|
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 |
---|---|---|
|
@@ -16090,6 +16090,17 @@ | |
"labels": ["NoOverflow", "Desktop", "ButNotMinScaleSize", "MinScaleSize"], | ||
"description": "How common are different types of out-of-reach viewport overflow?" | ||
}, | ||
"WR_GPU_WAIT_TIME": { | ||
"record_in_processes": [ "main", "gpu" ], | ||
"products": [ "firefox", "fennec", "geckoview_streaming" ], | ||
"alert_emails": [ "[email protected]" ], | ||
"bug_numbers": [ 1772216 ], | ||
"expires_in_version": "never", | ||
"kind": "exponential", | ||
"high": 1000, | ||
"n_buckets": 50, | ||
"description": "The time spent waiting for the GPU to complete previously issued drawing commands in milliseconds" | ||
}, | ||
"WR_SCENEBUILD_TIME": { | ||
"record_in_processes": ["main", "gpu"], | ||
"products": ["firefox", "fennec", "geckoview_streaming"], | ||
|