Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 291533004: Wiring Libjingle network related metrics into Chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « content/renderer/media/rtc_peer_connection_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 4290a7dd94dfdf04232fff6e81168c520bc7a7ce..4fe2066eafd7ae8d82e6e59664372ee632032737 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -31167,6 +31167,33 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="WebRTC.PeerConnection.IPMetrics" enum="PeerConnectionCounters">
+ <owner>mallinath@chromium.org</owner>
+ <summary>
+ Counters on IPv4 and IPv6 usage in PeerConnection. These values are logged
+ once per PeerConnection.
+ </summary>
+</histogram>
+
+<histogram name="WebRTC.PeerConnection.IPv4Interfaces">
+ <owner>mallinath@chromium.org</owner>
+ <summary>
+ Number of IPv4 network interfaces discovered in a PeerConnection Session.
+ </summary>
+</histogram>
+
+<histogram name="WebRTC.PeerConnection.IPv6Interfaces">
+ <owner>mallinath@chromium.org</owner>
+ <summary>
+ Number of IPv6 network interfaces discovered in a PeerConnection Session.
+ </summary>
+</histogram>
+
+<histogram name="WebRTC.PeerConnection.TimeToConnect" units="milliseconds">
+ <owner>mallinath@chromium.org</owner>
+ <summary>Time to setup a peer to peer call with PeerConnection.</summary>
+</histogram>
+
<histogram name="WebRTC.ReceivedAudioTrackDuration" units="milliseconds">
<owner>perkj@chromium.org</owner>
<summary>
@@ -39847,6 +39874,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="6" label="Clicked 'Enable password manager'"/>
</enum>
+<enum name="PeerConnectionCounters" type="int">
+ <int value="0" label="PeerConnection enabled with IPv4."/>
+ <int value="1" label="PeerConnection enabled with Ipv6."/>
+ <int value="2" label="IPv4 BestConnection."/>
+ <int value="3" label="IPv6 BestConnection."/>
+</enum>
+
<enum name="PepperInterface" type="int">
<!-- Generated by ppapi/tools/pepper_hash_for_uma.cc -->
« no previous file with comments | « content/renderer/media/rtc_peer_connection_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698