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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1033493002: Histogram for UMA log upload connection type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Histogram type changed, refactoring network_metrics_provider_ + nits Created 5 years, 9 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 0cb8649f23eea05b2aed352551d059f8eaa5ab2b..7c2a64e740c9ab222e99c487b8f9963333072bc9 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -40476,6 +40476,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="UMA.LogUpload.ConnetionType" enum="NetworkConnectionType">
+ <owner>asvitkine@chromium.org</owner>
Ilya Sherman 2015/03/24 21:55:45 nit: Please list yourself as an owner as well, unl
gayane -on leave until 09-2017 2015/03/25 21:02:33 Done.
+ <summary>
+ Log the network connection type for each successful metrics log upload.
Ilya Sherman 2015/03/24 21:55:44 nit: "Log the" -> "The"
gayane -on leave until 09-2017 2015/03/25 21:02:34 Done.
+ </summary>
+</histogram>
+
<histogram name="UMA.LowEntropySourceValue">
<owner>asvitkine@chromium.org</owner>
<summary>
@@ -54573,6 +54580,16 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="1" label="IPv6"/>
</enum>
+<enum name="NetworkConnectionType" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="Ethernet"/>
+ <int value="2" label="WiFi"/>
+ <int value="3" label="2g"/>
+ <int value="4" label="3g"/>
+ <int value="5" label="4g"/>
+ <int value="6" label="Bluetooth"/>
+</enum>
+
<enum name="NetworkCorruptedProfile" type="int">
<int value="0" label="Corrupted Profile"/>
</enum>
« components/metrics/metrics_service.cc ('K') | « components/metrics/test_metrics_service_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698