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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2795463002: Add histograms to track issues with JavaScript array buffers. (Closed)
Patch Set: Fix mispelling Created 3 years, 8 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 | « no previous file | 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 a08a797caadefaa69ebfc2739e4bfd0fda291e82..66c3eb5b2fb38f45b0d2def4a8f917ec5d1f957d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -75250,6 +75250,26 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="V8.ArrayBufferBigAllocations" units="log2(Size)">
Ilya Sherman 2017/03/31 22:00:36 Why do you record log2 of the size? Histogram buc
kschimpf 2017/03/31 22:26:32 I switched to log2 size (in bytes) because the rep
+ <owner>bradnelson@chromium.org</owner>
+ <owner>titzer@chromium.org</owner>
+ <owner>kschimpf@chromium.org</owner>
+ <summary>
+ Number of bytes requested in array buffer allocation. Only tracks memory
+ allocations over 1Mb.
Ilya Sherman 2017/03/31 22:00:36 Why does the histogram only track allocations over
kschimpf 2017/03/31 22:26:32 This is definitely a legitimate answer. I probably
+ </summary>
+</histogram>
+
+<histogram name="V8.ArrayBufferNewSizeFailures" units="log2(Size)">
+ <owner>bradnelson@chromium.org</owner>
+ <owner>titzer@chromium.org</owner>
+ <owner>kschimpf@chromium.org</owner>
+ <summary>
+ Number of bytes requested in array buffer allocation that V8 was not able to
+ meet the corresponding request.
Ilya Sherman 2017/03/31 22:00:36 This sentence is a bit confusing. Could you pleas
+ </summary>
+</histogram>
+
<histogram name="V8.AsmWasmTranslationMicroSeconds" units="microseconds">
<owner>bradnelson@chromium.org</owner>
<owner>titzer@chromium.org</owner>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698