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

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

Issue 2344343002: Wire in postmortem report collection (Closed)
Patch Set: Merge 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
« no previous file with comments | « components/browser_watcher/watcher_metrics_provider_win_unittest.cc ('k') | 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 db79a3ce5c1c80b78b99517e17a4c6ee11bfab69..03a88aa32426296d8a702e20b240dad9662a9d13 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -330,10 +330,39 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ActivityTracker.Collect.InitStatus"
+ enum="ActivityTrackerCollectInitStatus">
+ <owner>manzagop@chromium.org</owner>
+ <summary>
+ Status of the initialization to collect stability debug files. Logged once,
+ during the initialization of the stability debug file collection.
+ </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>
+ <summary>
+ Status for the collection of a stability debug file. Logged each time a
+ debug file collection attempt is made.
+ </summary>
+</histogram>
+
+<histogram name="ActivityTracker.Collect.TotalTime" units="ms">
+ <owner>manzagop@chromium.org</owner>
+ <summary>
+ Time spent collecting stability debug information. Logged each time a
+ collection is performed.
+ </summary>
+</histogram>
+
+<histogram name="ActivityTracker.Record.InitStatus"
+ enum="ActivityTrackerRecordInitStatus">
+ <owner>manzagop@chromium.org</owner>
+ <summary>
+ Status of internal activity tracking initialization. Logged once, during the
+ activity tracking initialization.
+ </summary>
</histogram>
<histogram name="ActivityTracker.ThreadTrackers.Count" units="count">
@@ -70173,6 +70202,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="7" label="TrustedPinned"/>
</enum>
+<enum name="ActivityTrackerCollectInitStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Unknown directory"/>
+ <int value="2" label="Get stability file path failed"/>
+ <int value="3" label="Crashpad database init failed"/>
+</enum>
+
<enum name="ActivityTrackerCollectStatus" type="int">
<int value="0" label="None"/>
<int value="1" label="Sucess"/>
@@ -70184,6 +70220,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="7" label="Finished writing crash report failed"/>
</enum>
+<enum name="ActivityTrackerRecordInitStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Create stability dir failed"/>
+ <int value="2" label="Get stability file path failed"/>
+</enum>
+
<enum name="AddressFamily" type="int">
<int value="0" label="Unspecified"/>
<int value="1" label="IPv4"/>
« no previous file with comments | « components/browser_watcher/watcher_metrics_provider_win_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698