Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 1468912af806f6adf6524a8ad134ef010390a570..a4dcc6fc61380db1a00909724c6bc24c58d5a5f6 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -42181,6 +42181,61 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| <summary>Number of retries until the final response was recorded.</summary> |
| </histogram> |
| +<histogram name="SiteEngagementService.EngagementByOrigin"> |
| + <owner>calamity@chromium.org</owner> |
| + <owner>dominickn@chromium.org</owner> |
| + <summary> |
| + Counts the engagement score of each origin, recorded once per non-incognito |
| + startup. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="SiteEngagementService.EngagementType" |
| + enum="SiteEngagementServiceEngagementType"> |
| + <owner>calamity@chromium.org</owner> |
| + <owner>dominickn@chromium.org</owner> |
| + <summary> |
| + The type of engagement (navigation, user input, etc.) which led to an |
| + accumulation in site engagement. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="SiteEngagementService.OriginsEngaged"> |
| + <owner>calamity@chromium.org</owner> |
| + <owner>dominickn@chromium.org</owner> |
| + <summary> |
| + The total number of origins with a non-zero site engagement score for this |
| + profile, recorded once per non-incognito startup. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="SiteEngagementService.OriginsWithMaxDailyEngagement"> |
| + <owner>calamity@chromium.org</owner> |
| + <owner>dominickn@chromium.org</owner> |
| + <summary> |
| + The number of origins which have reached the daily site engagement point |
| + cap, recorded each time an origin reaches the cap. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="SiteEngagementService.OriginsWithMaxEngagement"> |
| + <owner>calamity@chromium.org</owner> |
| + <owner>dominickn@chromium.org</owner> |
| + <summary> |
| + The number of origins which have reached the absolute site engagement point |
| + cap, recorded each time an origin reaches the cap. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="SiteEngagementService.TotalEngagement"> |
| + <owner>calamity@chromium.org</owner> |
| + <owner>dominickn@chromium.org</owner> |
| + <summary> |
| + The total site engagement accumulated by this profile, recorded once per |
| + non-incognito startup. |
|
calamity
2015/09/29 04:21:09
Add some information to these 2 summaries about th
dominickn
2015/09/29 07:06:19
Done.
|
| + </summary> |
| +</histogram> |
| + |
| <histogram name="SiteIsolation.AllResponses"> |
| <owner>creis@chromium.org</owner> |
| <summary> |
| @@ -70520,6 +70575,12 @@ To add a new entry, add it with any value and run test to compute valid value. |
| <int value="3" label="Fresh index with cache updated since backend start"/> |
| </enum> |
| +<enum name="SiteEngagementServiceEngagementType" type="int"> |
| + <int value="0" label="Navigation"/> |
| + <int value="1" label="Keypress"/> |
| + <int value="2" label="Mouse"/> |
| +</enum> |
| + |
| <enum name="SiteIsolationMimeType" type="int"> |
| <int value="0" label="HTML"/> |
| <int value="1" label="XML"/> |