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

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

Issue 2668383005: Report reasons for a negative histogram sample count. (Closed)
Patch Set: Created 3 years, 11 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 | « base/metrics/persistent_sample_map.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 3ae6ea6b64e40cd50c7bcd54b983ef12f3c010d9..1a4dff3bc1f24a1b988b16d082cda71453bbe12f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -70599,6 +70599,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="UMA.NegativeSamples.Reason" enum="NegativeSampleReason">
+ <owner>asvitkine@chromium.org</owner>
+ <owner>bcwhite@chromium.org</owner>
+ <summary>
+ Reasons why a negative sample count would have been created. Currently, only
+ negative samples from persistent sparse histograms are being checked.
+ </summary>
+</histogram>
+
<histogram name="UMA.Perf.GetData" enum="GetPerfDataOutcome">
<owner>asvitkine@chromium.org</owner>
<summary>
@@ -97944,6 +97953,15 @@ value.
<int value="5" label="Active network was unblocked"/>
</enum>
+<enum name="NegativeSampleReason" type="int">
+ <int value="0"
+ label="Persistent sparse histogram had logged value but no active
+ sample."/>
+ <int value="1"
+ label="Persistent sparse histogram active sample less than logged
+ value."/>
+</enum>
+
<enum name="NetCacheState" type="int">
<int value="0" label="FROM_CACHE"/>
<int value="1" label="STILL_VALID"/>
« no previous file with comments | « base/metrics/persistent_sample_map.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698