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

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

Issue 1087933002: Cross Device Promo - Main Eligibility Flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: first set of anthony's comments Created 5 years, 7 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 a9f572532bc854403a8bf3e4d59b835c324677f6..853b20db36e2113b33a92f7b1effcc2f94d95e01 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -36751,6 +36751,44 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Track how a profile gets signed out.</summary>
</histogram>
+<histogram name="Signin.XDevicePromo.BrowsingSessionDuration" units="minutes">
+ <owner>anthonyvd@chromium.org</owner>
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ How long a browsing session was measured to be. Note that a minimum duration
+ is configured in the Finch experiment &quot;CrossDevicePromo&quot;. Desktop
+ only.
+ </summary>
+</histogram>
+
+<histogram name="Signin.XDevicePromo.BrowsingSessionDurationComputed"
+ units="minutes">
+ <owner>anthonyvd@chromium.org</owner>
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ How often browsers are considered activated, which in turn triggers the
+ CrossDevicePromo. We need this to estimate QPS for RPC calls.
+ </summary>
+</histogram>
+
+<histogram name="Signin.XDevicePromo.Eligibility"
+ enum="SigninXDevicePromoEligibility">
+ <owner>anthonyvd@chromium.org</owner>
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ The reasons for which a profile is or is not eligible for the Desktop Cross
+ Device Sign In Promo.
+ </summary>
+</histogram>
+
+<histogram name="Signin.XDevicePromo.Initialized">
+ <owner>anthonyvd@chromium.org</owner>
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ True if the CrossDevicePromo is not opted out and has Finch parameters.
+ </summary>
+</histogram>
+
<histogram name="SimpleCache.App.CheckCRCResult" enum="CheckCRCResult">
<owner>gavinp@chromium.org</owner>
<summary>
@@ -62768,6 +62806,30 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="12" label="Unknown"/>
</enum>
+<enum name="SigninXDevicePromoEligibility" type="int">
+ <int value="0" label="Eligible">The user is eligible for the promo.</int>
+ <int value="1" label="Opted Out">
+ The profile has previously opted out of the promo.
+ </int>
+ <int value="2" label="Signed In">The profile is already signed in.</int>
+ <int value="3" label="Not Single GAIA Account">
+ The profile does not have a single, peristent GAIA cookie.
+ </int>
+ <int value="4" label="Unknown count of devices">
+ Yet to determine how many devices the user has.
+ </int>
+ <int value="5" label="Error fetching device activity">
+ An error was returned trying to determine the account's devices.
+ </int>
+ <int value="6" label="Throttled fetching device activity">
+ The call to get device activity was throttled, and never executed.
+ </int>
+ <int value="7" label="Zero devices found">The user has no devices.</int>
+ <int value="8" label="No devices active">
+ The user has no device that was recently active.
+ </int>
+</enum>
+
<enum name="SimpleCache.EntryCreatedAndStream2Omitted" type="int">
<int value="0" label="Stream 2 file was present"/>
<int value="1" label="Empty stream 2 file was omitted"/>

Powered by Google App Engine
This is Rietveld 408576698