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

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

Issue 2078723002: Add HTML parser UMA for rewinds and chunk queue statistics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 1507246799a7d4892e25728a566381b6dea3d332..3060951a4e032701fefcc44e27c6fc5ad4eb99a5 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -37141,6 +37141,37 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Parser.ChunkEnqueueTime" units="ms">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ The time it takes to enqueue a ParsedChunk onto the shared parser queue.
+ </summary>
+</histogram>
+
+<histogram name="Parser.DiscardedTokenCount" units="tokens">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ The number of speculative tokens discarded by the parser when a rewind is
+ needed.
+ </summary>
+</histogram>
+
+<histogram name="Parser.PeakPendingChunkCount" units="chunks">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ The maximum number of pending Chunks in the ParsedChunkQueue after the
+ parser is detached.
+ </summary>
+</histogram>
+
+<histogram name="Parser.PeakPendingTokenCount" units="tokens">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ The maximum number of pending tokens in the ParsedChunkQueue after the
+ parser is detached.
+ </summary>
+</histogram>
+
<histogram name="PartitionAlloc.CommittedSize" units="MB">
<owner>haraken@chromium.org</owner>
<summary>

Powered by Google App Engine
This is Rietveld 408576698