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

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

Side-by-side diff isn't available for this file because of its large size.
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: Remove trace event Created 4 years, 5 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 | « third_party/WebKit/Source/core/html/parser/ParsedChunkQueue.cpp ('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 b79329d5b03f70420b434d3861028f7c4bdd8697..f41efee11f1a6faf0b460f987f62080194623dc8 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -37286,6 +37286,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>
« no previous file with comments | « third_party/WebKit/Source/core/html/parser/ParsedChunkQueue.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698