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

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

Issue 2715903003: Bound the impact of system instability on chrome instability. (Closed)
Patch Set: record start timestamp, analysis metric, make log scrape lazy Created 3 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 86869a435ce1fb5ee9a688b389ca56f5a3779b27..6e16ef55ae305dfd2b72a2547cf9c5442ffe4c54 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -380,6 +380,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ActivityTracker.Collect.SystemSessionAnalysisStatus"
+ enum="ActivityTrackerSystemSessionAnalysisStatus">
+ <owner>manzagop@chromium.org</owner>
+ <summary>
+ Status for the analysis of the system session state. Logged each time a
+ debug file is collected.
+ </summary>
+</histogram>
+
<histogram name="ActivityTracker.Collect.TotalTime" units="ms">
<owner>manzagop@chromium.org</owner>
<summary>
@@ -78626,6 +78635,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="2" label="Get stability file path failed"/>
</enum>
+<enum name="ActivityTrackerSystemSessionAnalysisStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Missing timestamp"/>
+ <int value="2" label="Missing analyzer"/>
+ <int value="3" label="Analysis failed"/>
+ <int value="4" label="Outside range"/>
+</enum>
+
<enum name="ActivityTrackerWriteDumpStatus" type="int">
<int value="0" label="Sucess"/>
<int value="1" label="Failed"/>

Powered by Google App Engine
This is Rietveld 408576698