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

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

Issue 677473002: Implement UMA and internal data structure for tracking EWOULDBLOCK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 8e77773899ccf63bfd8f40942c601467ad2ea673..d2fd676d38744046bd5b2837235c56f793369da1 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -38791,6 +38791,21 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="WebRTC.MaxApplicationConsecutiveBytesDiscard">
+ <owner>guoweis@chromium.org</owner>
+ <summary>
+ The maximum consecutive discarded bytes caused by not enough buffer
+ available in WebRTC's socket implementation.
+ </summary>
+</histogram>
+
+<histogram name="WebRTC.MaxSystemConsecutiveDelayedBytes">
+ <owner>guoweis@chromium.org</owner>
+ <summary>
+ The maximum of consecutive delayed bytes caused by EWOULDBLOCKs from system.
+ </summary>
+</histogram>
+
<histogram name="WebRTC.NumDataChannelsPerPeerConnection">
<owner>perkj@chromium.org</owner>
<summary>
@@ -38802,6 +38817,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="WebRTC.PacketDiscardByApplication" units="%">
+ <owner>guoweis@chromium.org</owner>
+ <summary>
+ The percentage of packets discarded by WebRTC's socket layer due to
+ EWOULDBLOCKs.
+ </summary>
+</histogram>
+
<histogram name="WebRTC.PeerConnection.IPMetrics" enum="PeerConnectionCounters">
<owner>mallinath@chromium.org</owner>
<summary>
@@ -38897,6 +38920,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="WebRTC.SystemDelayedPackets" units="%">
+ <owner>guoweis@chromium.org</owner>
+ <summary>
+ The percentage of packets delayed due to ERR_IO_PENDING from system in a
+ WebRTC socket.
Alexei Svitkine (slow) 2014/10/27 17:45:21 Mention when this is logged. Same for the others.
guoweis2 2014/10/27 18:07:07 Done.
+ </summary>
+</histogram>
+
<histogram name="WebRTC.UnreliableDataChannelMessageSize" units="bytes">
<owner>perkj@chromium.org</owner>
<summary>
@@ -55130,6 +55161,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="Net.TCP_Connection_Latency_Interval"/>
</histogram_suffixes>
+<histogram_suffixes name="IPProtocolType" separator="_">
+ <suffix name="UDP"/>
+ <suffix name="TCP"/>
+ <affected-histogram name="WebRTC.MaxSystemConsecutiveDelayedBytes"/>
+ <affected-histogram name="WebRTC.SystemDelayedPackets"/>
+</histogram_suffixes>
+
<histogram_suffixes name="IPv6_Probe">
<suffix name="IPv6_probe_skipped"
label="with IPv6 not probed, and default OS settings used"/>
« content/renderer/p2p/ipc_socket_factory.cc ('K') | « content/renderer/p2p/ipc_socket_factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698