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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2339193003: A collector for postmortem reports (Closed)
Patch Set: Address nits Created 4 years, 3 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 2972cf895dc880916baa6fbf0ac19f056c550506..e71a7127596a0697720334920594a3a71569d4de 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -324,6 +324,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ActivityTracker.Collect.Status"
+ enum="ActivityTrackerCollectStatus">
+ <owner>manzagop@chromium.org</owner>
+ <summary>Status for the collection of a stability debug file.</summary>
+</histogram>
+
<histogram name="ActivityTracker.ThreadTrackers.Count" units="count">
<owner>bcwhite@chromium.org</owner>
<summary>
@@ -69538,6 +69544,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="5" label="Docked"/>
</enum>
+<enum name="ActivityTrackerCollectStatus" type="int">
+ <int value="0" label="None"/>
+ <int value="1" label="Sucess"/>
+ <int value="2" label="Analyzer creation failed"/>
+ <int value="3" label="Debug file has no data"/>
+ <int value="4" label="Prepare new crash report failed"/>
+ <int value="5" label="Write to minidump failed"/>
+ <int value="6" label="Debug file deletion failed"/>
+ <int value="7" label="Finished writing crash report failed"/>
+</enum>
+
<enum name="AddressFamily" type="int">
<int value="0" label="Unspecified"/>
<int value="1" label="IPv4"/>

Powered by Google App Engine
This is Rietveld 408576698