Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 54e556793ea0490c43a33b012b0bd5d73b43837c..7b951c0612f853f70c1244324ffb72853668a8a2 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -6443,6 +6443,57 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| </summary> |
| </histogram> |
| +<histogram name="DataUsage.ReportSubmission.Failed.Bytes" units="bytes"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>tbansal@chromium.org</owner> |
| + <summary> |
| + Count of bytes in the data use reports that whose submission to the external |
|
sclittle
2015/12/07 21:44:08
nit: Does this include timeouts? Please be more sp
tbansal1
2015/12/08 00:08:16
Done.
|
| + data use observer failed. Recorded every time submission of data use report |
| + fails. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="DataUsage.ReportSubmission.Lost.Bytes" units="bytes"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>tbansal@chromium.org</owner> |
| + <summary> |
| + Count of bytes in the data use reports that were lost before an attempt is |
|
sclittle
2015/12/07 21:44:08
nit: Could you be more specific here, e.g. that th
tbansal1
2015/12/08 00:08:16
Done.
|
| + made to submit it to the external data use observer. Recorded every time a |
| + report is lost before an attempt is made to submit it to the external data |
| + use observer. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="DataUsage.ReportSubmission.Successful.Bytes" units="bytes"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>tbansal@chromium.org</owner> |
| + <summary> |
| + Count of bytes in the data use reports that were successfully submitted to |
| + the external data use observer. Recorded every time a report is successfully |
| + submitted to the external data use observer. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="DataUsage.ReportSubmission.TimedOut.Bytes" units="bytes"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>tbansal@chromium.org</owner> |
| + <summary> |
| + Count of bytes in the data use reports whose submission to the external data |
| + use observer timed out. Recorded every time submission of a report to the |
| + external data use observer times out. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="DataUsage.ReportSubmissionResult" |
| + enum="DataUsageReportSubmissionResult"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>tbansal@chromium.org</owner> |
| + <summary> |
| + Result of data usage report submission. Recorded every time a report is |
| + submitted to the external data use observer. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="DataUse.MessageSize" units="bytes"> |
| <owner>amohammadkhan@chromium.org</owner> |
| <owner>bengr@chromium.org</owner> |
| @@ -58206,6 +58257,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| <int value="10" label="Diabled directly from the First Run Experience"/> |
| </enum> |
| +<enum name="DataUsageReportSubmissionResult" type="int"> |
| + <int value="0" label="Successful"/> |
| + <int value="1" label="Failed"/> |
| + <int value="2" label="Timed out"/> |
| + <int value="3" label="Lost"/> |
| +</enum> |
| + |
| <enum name="DataUseServices" type="int"> |
| <int value="0" label="Not Tagged"/> |
| <int value="1" label="Suggestions"/> |