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

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

Issue 481443003: Add UMA histograms for the inter-process TimeTicks skew. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Alexei's comments. Created 6 years, 4 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 | « content/common/inter_process_time_ticks_converter_unittest.cc ('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 fb1a1d0bd2d615446f53471e964310647397cb38..1d5aa5dfa3c0ea24b9840f5fea73c5ae27938ceb 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -10182,6 +10182,30 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="InterProcessTimeTicks.BrowserAhead" units="milliseconds">
+ <owner>ppi@chromium.org</owner>
+ <summary>
+ Estimated additive skew between processes, recorded if the browser process
+ is ahead (higher TimeTicks value) than the renderer process.
+ </summary>
+</histogram>
+
+<histogram name="InterProcessTimeTicks.BrowserBehind" units="milliseconds">
+ <owner>ppi@chromium.org</owner>
+ <summary>
+ Estimated additive skew between processes, recorded if the browser process
+ is behind (lower TimeTicks value) than the renderer process.
+ </summary>
+</histogram>
+
+<histogram name="InterProcessTimeTicks.IsSkewAdditive" enum="Boolean">
+ <owner>ppi@chromium.org</owner>
+ <summary>
+ True iff the conversion from the browser process TimeTicks to renderer
+ process TimeTicks is done by adding a constant, without scaling.
+ </summary>
+</histogram>
+
<histogram name="interstitial.authority_invalid_time" units="milliseconds">
<obsolete>
Removed on 8/1/13.
@@ -51452,6 +51476,15 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<affected-histogram name="PLT.PT_StartToFinish"/>
</histogram_suffixes>
+<histogram_suffixes name="InterProcessTimeTicksConversionType">
+ <owner>ppi@chromium.org</owner>
+ <suffix name="BrowserToRenderer"/>
+ <suffix name="RendererToBrowser"/>
+ <affected-histogram name="InterProcessTimeTicks.BrowserAhead"/>
+ <affected-histogram name="InterProcessTimeTicks.BrowserBehind"/>
+ <affected-histogram name="InterProcessTimeTicks.IsSkewAdditive"/>
+</histogram_suffixes>
+
<histogram_suffixes name="Interval" separator="_">
<suffix name="Interval" label="Interval between two consecutive connects is"/>
<affected-histogram name="Net.TCP_Connection_Latency"/>
« no previous file with comments | « content/common/inter_process_time_ticks_converter_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698