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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 429353002: Network performance related histograms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « no previous file | 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 ed36ee4f0fc824dde1900e60c4a0b6e0bf936c61..f0f11b7109bc0708730ee142c4b06d6b091a8a14 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -17528,6 +17528,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Network.Shill.DeviceConnectionStatus" enum="ConnectionStatus">
+ <owner>zqiu@chromium.org</owner>
+ <summary>
+ Chrome OS network performance metric that tracks the connection status of
+ the device. A sample is emitted once every 3 minutes.
+ </summary>
+</histogram>
+
<histogram name="Network.Shill.DHCPClientStatus" enum="NetworkDhcpClientStatus">
<owner>pstew@chromium.org</owner>
<summary>
@@ -18006,6 +18014,15 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Network.Shill.Wifi.NetworkProblemDetected"
+ enum="NetworkProblemType">
+ <owner>zqiu@chromium.org</owner>
+ <summary>
+ Chrome OS network performance metric that tracks the network problems
+ encountered by TrafficMonitor after WiFi connection is established.
+ </summary>
+</histogram>
+
<histogram name="Network.Shill.Wifi.PhyMode" enum="NetworkPhyModeType">
<owner>quiche@chromium.org</owner>
<summary>
@@ -18178,12 +18195,23 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Network.Shill.WiFi.UserInitiatedConnectionFailureReason"
+ enum="ConnectionFailureReason">
+ <owner>zqiu@chromium.org</owner>
+ <summary>
+ Chrome OS network performance metric that tracks the reasons of failed
+ user-initiated WiFi connection attempts. The result of the user-initiated
+ WiFi connection attempts are being tracked by
+ Network.Shill.WiFi.UserInitiatedConnectionResult.
+ </summary>
+</histogram>
+
<histogram name="Network.Shill.WiFi.UserInitiatedConnectionResult"
enum="ConnectionResult">
<owner>zqiu@chromium.org</owner>
<summary>
Chrome OS network performance metric that tracks the result of
- user-initiated wifi connection attempts.
+ user-initiated WiFi connection attempts.
</summary>
</histogram>
@@ -36836,12 +36864,32 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="GPU compositor"/>
</enum>
+<enum name="ConnectionFailureReason" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="Bad Passphrase"/>
+ <int value="2" label="Bad WEP Key"/>
+ <int value="3" label="Failed to Connect"/>
+ <int value="4" label="DHCP Failure"/>
+ <int value="5" label="DNS Lookup Failure"/>
+ <int value="6" label="EAP Authentication"/>
+ <int value="7" label="EAP Local TLS"/>
+ <int value="8" label="EAP Remote TLS"/>
+ <int value="9" label="Out-of-range"/>
+ <int value="10" label="Pin Missing"/>
+</enum>
+
<enum name="ConnectionResult" type="int">
<int value="0" label="Success"/>
<int value="1" label="Failure"/>
<int value="2" label="Aborted"/>
</enum>
+<enum name="ConnectionStatus" type="int">
+ <int value="0" label="Offline"/>
+ <int value="1" label="Connected"/>
+ <int value="2" label="Online"/>
+</enum>
+
<enum name="ConnectionType" type="int">
<summary>
Connection type as defined in net/base/connection_type_histograms.h
@@ -43762,6 +43810,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="9" label="Unknown"/>
</enum>
+<enum name="NetworkProblemType" type="int">
+ <int value="0" label="Congested TCP Queue"/>
+ <int value="1" label="DNS Failure"/>
+</enum>
+
<enum name="NetworkSecurityType" type="int">
<summary>
The security types come from the connman_service_security enum in
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698