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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2399233002: Add histograms to the rendez-vous process (ProcessSingleton). (Closed)
Patch Set: fix compile Created 4 years, 2 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 | « chrome/browser/process_singleton_win.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 d9238969ae37b2718dce3b9ce91ade340284d507..ef87da8d639fbb610a0aef40302a321f640f5f0d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5663,6 +5663,39 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Chrome.ProcessSingleton.NotifyResult" enum="NotifyResult">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ The result of every rendez-vous reported once per browser process launch.
+ </summary>
+</histogram>
+
+<histogram name="Chrome.ProcessSingleton.TimeToCreate" units="ms">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Time it takes to grab the process singleton. Reported once per successful
+ attempt at obtaining the singleton.
+ </summary>
+</histogram>
+
+<histogram name="Chrome.ProcessSingleton.TimeToFailure" units="ms">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Time it takes to return an error from the process singleton algorithm (nor
+ succeeding in obtaining it, nor in generating a rendez-vous). This does not
+ include time spent in the fast notification path (chrome_exe_main_win.cc).
+ </summary>
+</histogram>
+
+<histogram name="Chrome.ProcessSingleton.TimeToNotify" units="ms">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Time it takes to find the process singleton owner and notify it. Reported
+ once per successful rendez-vous. This does not include time spent in the
+ fast notification path (chrome_exe_main_win.cc).
+ </summary>
+</histogram>
+
<histogram name="Chrome.SearchSelectExempt" enum="SearchEngine">
<obsolete>
Deprecated 8/2013. No longer tracked.
@@ -91469,6 +91502,13 @@ value.
<int value="6" label="Invalid Argument error"/>
</enum>
+<enum name="NotifyResult" type="int">
+ <int value="0" label="PROCESS_NONE"/>
+ <int value="1" label="PROCESS_NOTIFIED"/>
+ <int value="2" label="PROFILE_IN_USE"/>
+ <int value="3" label="LOCK_ERROR"/>
+</enum>
+
<enum name="NotStreamingReason" type="int">
<int value="0" label="Already loaded"/>
<int value="1" label="Not HTTP"/>
« no previous file with comments | « chrome/browser/process_singleton_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698