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

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

Issue 15821006: Add UMA entries for web history UMA histograms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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:
View side-by-side diff with in-line comments
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 bd799a0e4cf00236e444701fc3212cade57d85bb..183df0095cab55c42a7c7256ae68c9a5ecd45a09 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -8990,6 +8990,21 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="WebHistory.LocalResultsMissingOnServer" units="%">
+ <summary>
+ Percentage of results that are present locally but are not returned by the
+ web history.
Alexei Svitkine (slow) 2013/05/24 17:58:02 Please mention how this is sampled. Is it when a p
Sergiu 2013/05/27 08:27:44 Done.
+ </summary>
+</histogram>
+
+<histogram name="WebHistory.QueryCompletion" enum="WebHistoryStatus">
+ <summary>Whether the web history query was successful.</summary>
Alexei Svitkine (slow) 2013/05/24 17:58:02 Please add a little bit more context in the commen
Sergiu 2013/05/27 08:27:44 Done, tell me what you think now.
+</histogram>
+
+<histogram name="WebHistory.ResponseTime" units="milliseconds">
+ <summary>Time it took for the web history to reply.</summary>
+</histogram>
+
<histogram name="WinTimeTicks.FailedToChangeCores" enum="WindowsVersion">
<summary>
Incremented each time the TimeTicks field trial runs on a machine with
@@ -13859,6 +13874,12 @@ other types of suffix sets.
<int value="11" label="Require phone number"/>
</enum>
+<enum name="WebHistoryStatus" type="int">
+ <int value="0" label="WEB_HISTORY_QUERY_FAILED">Failed</int>
+ <int value="1" label="WEB_HISTORY_QUERY_SUCCEEDED">Succeeded</int>
+ <int value="2" label="WEB_HISTORY_QUERY_TIMED_OUT">Timed out</int>
+</enum>
+
<enum name="WebSocketHandshakeResult" type="int">
<int value="0" label="Incomplete"/>
<int value="1" label="Normal"/>
« 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