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

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

Issue 935223002: Add connection information metrics recorded after successful auth attempts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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 | « no previous file | 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 1f090b01498b2db69562cbfbddb134e109d5f5c5..7ee097b2a0dd8444db0d7e30016769ebcd44b645 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -6488,6 +6488,80 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="EasyUnlock.AuthProximity.RemoteDeviceModelHash"
+ enum="EasyUnlockDeviceModelHash">
+ <owner>tengs@chromium.org</owner>
+ <owner>xiaowenx@chromium.org</owner>
+ <summary>
+ The hash of the phone model used to successfully sign in or unlock using
+ Smart Lock.
+ </summary>
+ <details>
+ This hash is calculated by taking the first 4 bytes of the MD5 hash of the
+ device model.
+ </details>
+</histogram>
+
+<histogram name="EasyUnlock.AuthProximity.RollingRssi" units="dBm">
+ <owner>tengs@chromium.org</owner>
+ <owner>xiaowenx@chromium.org</owner>
+ <summary>
+ Measures the exponentially weighted rolling average of the received signal
+ strength indicator (RSSI) of the phone when the user successfully unlocks or
+ signs in using Smart Lock.
+ </summary>
+ <details>
+ The exponentially weighted averaging formula is:
+
+ rollingRssi = (1 - weight) * rollingRssi + weight * currentRssi;
+
+ RSSI readings are inherently noisy, so this averaging gives a smoothed RSSI
+ value to work with as a heuristic for proximity.
+
+ If no RSSI was read, then a sentinel value of 127 will be recorded.
+ </details>
+</histogram>
+
+<histogram name="EasyUnlock.AuthProximity.TimeSinceLastZeroRssi"
+ units="milliseconds">
+ <owner>tengs@chromium.org</owner>
+ <owner>xiaowenx@chromium.org</owner>
+ <summary>
+ Measures the time delta in milliseconds since the last zero RSSI value was
+ read to when the user successfully unlocks or signs in using Smart Lock.
+ </summary>
+ <details>
+ A zero RSSI value is special because both Bluetooth devices in a connection
+ attempt to maintain by adjusting their transmit power levels. This time
+ delta can be used as a possible heuristic to determine that the phone is
+ close to the local device.
+
+ If no RSSI was read, then an overflow value will be recorded.
+ </details>
+</histogram>
+
+<histogram name="EasyUnlock.AuthProximity.TransmitPowerDelta" units="dBm">
+ <owner>tengs@chromium.org</owner>
+ <owner>xiaowenx@chromium.org</owner>
+ <summary>
+ Measures the difference between the current transmit power and the maximum
+ transmit power of the local device when the user successfully unlocks or
+ signs in using Smart Lock.
+ </summary>
+ <details>
+ Devices connected using classic Bluetooth adjust their transmit power
+ dynamically to optimize power and signal strength. The difference between
+ the current transmit power and maximum transmit power can be used as a
+ heurstic to determine if the phone is close to the local device.
+
+ According to the Bluetooth specs, there are three classes of devices, with a
+ maximum transmit power of 20, 4, and 0 dBm respectively.
+
+ If no transmit power was read, then a sentinel value of 127 will be
+ recorded.
+ </details>
+</histogram>
+
<histogram name="EasyUnlock.ClickedButton" enum="EasyUnlockButton">
<owner>joshwoodward@google.com</owner>
<owner>tbarzic@chromium.org</owner>
@@ -41153,8 +41227,8 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<owner>ulan@chromium.org</owner>
<summary>
Number of garbage collections that a detached global context survives,
- recorded after each major garbage collection.
- Values greater than 7 indicate a memory leak.
+ recorded after each major garbage collection. Values greater than 7 indicate
+ a memory leak.
</summary>
</histogram>
@@ -46623,6 +46697,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="9" label="No recent updates"/>
</enum>
+<enum name="EasyUnlockDeviceModelHash" type="int">
+ <int value="-1168032746" label="Motorola Nexus 6"/>
+ <int value="-617422855" label="LGE Nexus 4"/>
+ <int value="1286382027" label="Motorola XT1095"/>
+ <int value="1881443083" label="LGE Nexus 5"/>
+</enum>
+
<enum name="EasyUnlockHasSecureScreenLock" type="int">
<int value="0" label="Lacks secure screen lock"/>
<int value="1" label="Has secure screen lock"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698