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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2079273005: [Extensions] Add more fine-grained extension performance metrics (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 d02f2bee6c44aa65f3acdad464229c26c46b5b53..276a350998a45037af000bc919d12cc5fc03affb 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -14216,6 +14216,43 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Number of calls to extension functions.</summary>
</histogram>
+<histogram name="Extensions.Functions.Failed1msTo5ms" enum="ExtensionFunctions">
Mark P 2016/06/22 21:48:01 Consider whether you might want to have one histog
Devlin 2016/06/22 22:40:53 Done.
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call fails and finishes execution in
+ between 1ms and 5ms (tolerable). See also
+ Extensions.Functions.FailedTotalExecutionTime.
+ </summary>
+</histogram>
+
+<histogram name="Extensions.Functions.Failed5msTo10ms"
+ enum="ExtensionFunctions">
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call fails and finishes execution in
+ between 5ms and 10ms (slow). See also
+ Extensions.Functions.FailedTotalExecutionTime.
+ </summary>
+</histogram>
+
+<histogram name="Extensions.Functions.FailedLessThan1ms"
+ enum="ExtensionFunctions">
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call fails and finishes execution in
+ less than 1ms (fast). See also
+ Extensions.Functions.FailedTotalExecutionTime.
+ </summary>
+</histogram>
+
+<histogram name="Extensions.Functions.FailedOver10ms" enum="ExtensionFunctions">
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call fails and finishes execution in
+ over 10ms (glacial). See also Extensions.Functions.FailedTotalExecutionTime.
+ </summary>
+</histogram>
+
<histogram name="Extensions.Functions.FailedTotalExecutionTime" units="ms">
<owner>rdevlin.cronin@chromium.org</owner>
<summary>
@@ -14227,6 +14264,46 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Extensions.Functions.Succeeded1msTo5ms"
+ enum="ExtensionFunctions">
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call succeeds and finishes execution in
+ between 1ms and 5ms (tolerable). See also
+ Extensions.Functions.SucceededTotalExecutionTime.
+ </summary>
+</histogram>
+
+<histogram name="Extensions.Functions.Succeeded5msTo10ms"
+ enum="ExtensionFunctions">
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call succeeds and finishes execution in
+ between 5ms and 10ms (slow). See also
+ Extensions.Functions.SucceededTotalExecutionTime.
+ </summary>
+</histogram>
+
+<histogram name="Extensions.Functions.SucceededLessThan1ms"
+ enum="ExtensionFunctions">
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call succeeds and finishes execution in
+ less than 1ms (fast). See also
+ Extensions.Functions.SucceededTotalExecutionTime.
+ </summary>
+</histogram>
+
+<histogram name="Extensions.Functions.SucceededOver10ms"
+ enum="ExtensionFunctions">
+ <owner>rdevlin.cronin@chromium.org</owner>
+ <summary>
+ Recorded when an extension function call succeeds and finishes execution in
+ over 10ms (glacial). See also
+ Extensions.Functions.SucceededTotalExecutionTime.
+ </summary>
+</histogram>
+
<histogram name="Extensions.Functions.SucceededTotalExecutionTime" units="ms">
<owner>rdevlin.cronin@chromium.org</owner>
<summary>
« extensions/browser/extension_function.cc ('K') | « extensions/browser/extension_function.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698