Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index a47012f488e0577ba8106ac9abece602c7de9f1f..4959cd0c632e64472e1e9a4818a9b29fb654cb2c 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -3807,6 +3807,45 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| </summary> |
| </histogram> |
| +<histogram name="Chromoting.Connections" enum="State"> |
| + <owner>anandc@chromium.com</owner> |
| + <owner>sergeyu@chromium.org</owner> |
| + <summary>The states that Chromoting connections go through.</summary> |
|
Ilya Sherman
2015/08/21 19:48:29
Please document when this is recorded -- each time
anandc
2015/08/21 21:30:03
Done.
|
| +</histogram> |
| + |
| +<histogram name="Chromoting.Connections.Durations.Closed" units="minutes"> |
| + <owner>anandc@chromium.org</owner> |
| + <owner>sergeyu@chromium.org</owner> |
| + <summary> |
| + The duration of sessions that were closed, normally by a user-initiated |
| + action. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Chromoting.Connections.Durations.Failed" units="minutes"> |
| + <owner>anandc@chromium.org</owner> |
| + <owner>sergeyu@chromium.org</owner> |
| + <summary>The duration of sessions that failed to connect.</summary> |
| +</histogram> |
| + |
| +<histogram name="Chromoting.Connections.Times.ToAuthenticate" |
| + units="milliseconds"> |
| + <owner>anandc@chromium.org</owner> |
| + <owner>sergeyu@chromium.org</owner> |
| + <summary> |
| + The time taken to authenticate as part of a Chromoting conneciton request. |
|
Ilya Sherman
2015/08/21 19:48:29
nit: typo: conneciton
anandc
2015/08/21 21:30:03
Thanks. Fixed.
|
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Chromoting.Connections.Times.ToConnect" units="milliseconds"> |
| + <owner>anandc@chromium.org</owner> |
| + <owner>sergeyu@chromium.org</owner> |
| + <summary> |
| + The time taken to connect to a remote-host, after a request has been |
| + authenticated. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Chromoting.Video.Bandwidth" units="Bytes/second"> |
| <owner>anandc@chromium.org</owner> |
| <owner>sergeyu@chromium.org</owner> |
| @@ -71034,6 +71073,19 @@ To add a new entry, add it with any value and run test to compute valid value. |
| <int value="2" label="Reset migration"/> |
| </enum> |
| +<enum name="State" type="int"> |
| + <int value="-3" label="Canceled"/> |
| + <int value="-2" label="Dropped"/> |
| + <int value="-1" label="Created"/> |
| + <int value="0" label="Unknown"/> |
| + <int value="1" label="Initializing"/> |
| + <int value="2" label="Connecting"/> |
| + <int value="3" label="Authenticated"/> |
| + <int value="4" label="Connected"/> |
| + <int value="5" label="Closed"/> |
| + <int value="6" label="Failed"/> |
| +</enum> |
| + |
| <enum name="SuggestAppsDialogCloseReason" type="int"> |
| <int value="0" label="Unknown error"/> |
| <int value="1" label="Item installed"/> |