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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 158023007: Add GCM check in status code metric collection. We also decided to collect registration success sig… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index a811a2c4d65de30c4d9f46282808ba20edc7743e..25bde3eaca89aadab3a05004ef2f4dcfdc01534a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5455,6 +5455,10 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="GCM.CheckinRequestStatus" enum="GCMCheckinRequestStatus">
+ <summary>Status code of the outcome of a GCM checkin request.</summary>
+</histogram>
+
<histogram name="GCM.ConnectionDisconnectErrorCode" enum="NetErrorCodes">
<summary>Net error results from GCM disconnect events.</summary>
</histogram>
@@ -26358,6 +26362,16 @@ other types of suffix sets.
<int value="8" label="Overflow"/>
</enum>
+<enum name="GCMCheckinRequestStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="URL fetching failed"/>
+ <int value="2" label="HTTP bad request"/>
+ <int value="3" label="HTTP unauthorized"/>
+ <int value="4" label="HTTP not OK"/>
+ <int value="5" label="Failed parsing response"/>
fgorski 2014/02/12 18:22:58 Response parsing failed
juyik 2014/02/12 18:31:54 Done.
+ <int value="6" label="Zero ID or token"/>
+</enum>
+
<enum name="GCMRegistrationRequestStatus" type="int">
<int value="0" label="Success (this is not logged currently)"/>
<int value="1" label="Invalid parameters"/>
« google_apis/gcm/engine/checkin_request.cc ('K') | « google_apis/gcm/engine/registration_request.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698