-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[telemetry] Fix histogram range of SbPlayer Create/Destroy (#3822)
Fix the upper bounds of the range for SbPlayerCreate/SbPlayerDestroy. The rough range of each function: 1. SbPlayerCreate(): 1.23ms to 25.15ms 2. SbPlayerDestroy(): 70.9ms to 186.81ms b/303328238
- Loading branch information
Showing
3 changed files
with
19 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -275,16 +275,16 @@ Always run the pretty print utility on this file after editing: | |
</summary> | ||
</histogram> | ||
|
||
<histogram name="Cobalt.Media.SbPlayer.Create.Timing" units="microseconds" | ||
expires_after="never"> | ||
<histogram name="Cobalt.Media.SbPlayer.Create.LatencyTiming" | ||
units="microseconds" expires_after="never"> | ||
<!-- expires-never: Needed for long-term tracking of SbPlayer latencies. --> | ||
|
||
<owner>[email protected]</owner> | ||
<owner>[email protected]</owner> | ||
<summary>Timing data for the creation of SbPlayer.</summary> | ||
</histogram> | ||
|
||
<histogram name="Cobalt.Media.SbPlayer.CreateUrlPlayer.Timing" | ||
<histogram name="Cobalt.Media.SbPlayer.CreateUrlPlayer.LatencyTiming" | ||
units="microseconds" expires_after="never"> | ||
<!-- expires-never: Needed for long-term tracking of SbPlayer latencies. --> | ||
|
||
|
@@ -293,7 +293,7 @@ Always run the pretty print utility on this file after editing: | |
<summary>Timing data for the creation of an SbPlayer::UrlPlayer.</summary> | ||
</histogram> | ||
|
||
<histogram name="Cobalt.Media.SbPlayer.Destroy.Timing" units="microseconds" | ||
<histogram name="Cobalt.Media.SbPlayer.Destroy.LatencyTiming" units="ms" | ||
expires_after="never"> | ||
<!-- expires-never: Needed for long-term tracking of SbPlayer latencies. --> | ||
|
||
|
@@ -355,8 +355,8 @@ Always run the pretty print utility on this file after editing: | |
<owner>[email protected]</owner> | ||
<owner>[email protected]</owner> | ||
<summary> | ||
A measure of the rate at which `SourceBuffer.appendBuffer` calls are able | ||
to process data over time. | ||
A measure of the rate at which `SourceBuffer.appendBuffer` calls are able to | ||
process data over time. | ||
</summary> | ||
</histogram> | ||
|
||
|