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..ed264231789f263adbaddd0e5d0614dff3d7512a 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> |
| +</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. |
| + </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,14 @@ 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="2" label="Connecting"/> |
|
anandc
2015/08/21 16:23:01
Guessing it is OK to not have an enum of value 0?
|
| + <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"/> |