Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 75f16fdd33e2dc9286685a4235553e439a553fba..fdab45abe94405768525ddd95b192b26f4dd92cc 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -65783,6 +65783,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| <summary>Duration in milliseconds of WebRTC audio render session.</summary> |
| </histogram> |
| +<histogram name="WebRTC.AudioRenderTimeMax" units="ms"> |
| + <owner>grunell@chromium.org</owner> |
| + <summary> |
| + The maximum time spent in WebRtcAudioRenderer::SourceCallback during a |
| + session, i.e. between Start() and Stop() of WebRtcAudioRenderer. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="WebRTC.AudioRenderTimes" units="ms"> |
| <owner>henrika@chromium.org</owner> |
| <summary> |
| @@ -65791,6 +65799,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| </summary> |
| </histogram> |
| +<histogram name="WebRTC.AudioRenderTimesAverage" units="ms"> |
|
Ilya Sherman
2016/08/22 21:17:47
FWIW: If you do change the histogram to record dat
Henrik Grunell
2016/08/23 10:42:04
Done.
|
| + <owner>grunell@chromium.org</owner> |
| + <summary> |
| + Measures the average time spent in WebRtcAudioRenderer::SourceCallback over |
| + periods of 1 second. WebRtcAudioRenderer::SourceCallback is called every 10 |
| + ms, so the average is over 100 function calls. |
|
Ilya Sherman
2016/08/22 21:17:47
Keep in mind that an average implemented as a mean
Henrik Grunell
2016/08/23 10:42:04
Yes, and that's what we want. Ideally, we'd like t
Ilya Sherman
2016/08/23 19:26:49
Hmm, why was there pushback to recording every ren
Henrik Grunell
2016/08/24 10:32:17
I checked with the author and in the CL it was int
|
| + </summary> |
| +</histogram> |
| + |
| <histogram name="WebRTC.BWE.InitialBandwidthEstimate" units="kbps"> |
| <owner>holmer@chromium.org</owner> |
| <summary>The bandwidth estimate 2 seconds into a WebRTC call.</summary> |