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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 876373002: metrics: add metrics for wake on WiFi throttling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 35e540b6fd0fca1a86d81f42f4b438f48cf40c88..e4072d506e7d0835ea15ccaaa9a2f0e36ab78dec 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -21620,6 +21620,17 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Network.Shill.WiFi.WakeOnWiFiThrottled"
+ enum="WakeOnWiFiThrottled">
+ <owner>samueltan@chromium.org</owner>
+ <summary>
+ Chrome OS network metric that tracks whether wake on WiFi was disabled
+ during a period of system suspension because of too many dark resume wakes.
+ This metric is only recorded for system suspends where wake on WiFi
+ functionality has been programmed into the NIC.
+ </summary>
+</histogram>
+
<histogram name="Network.Shill.WiFi.WiFiConnectionStatusAfterWake"
enum="WiFiConnectionStatusAfterWake">
<owner>samueltan@chromium.org</owner>
@@ -58853,6 +58864,19 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="Packet and DarkConnect"/>
</enum>
+<enum name="WakeOnWiFiThrottled" type="int">
+ <summary>
+ Whether or not wake on WiFi was disabled during suspend because of excessive
+ dark resume wakes. Corresponds to WakeOnWiFiThrottled in shill/metrics.h
+ </summary>
+ <int value="0"
+ label="False (Wake on WiFi was not disabled due to excessive dark
+ resume wakes"/>
+ <int value="1"
+ label="True (Wake on WiFi was disabled due to exessive dark resume
+ wakes"/>
+</enum>
+
<enum name="WalletApiCall" type="int">
<int value="0" label="Unknown API call"/>
<int value="1" label="Accept Legal Documents"/>
« 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