Chromium Code Reviews| 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> |