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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1032763002: Add favicon database histograms to UMA. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + fix owner email Created 5 years, 8 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 | « components/history/core/browser/thumbnail_database.cc ('k') | 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 3e26b9d96391c5d0ca7ad25b1540fc615d988e65..d100ff2eb05d1f3a7d9dc44c42e77d3e1d11a3e5 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -11439,6 +11439,23 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="History.FaviconDatabaseAdvancedMetricsTime" units="ticks">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ The wall-clock time taken to gather favicon database metrics. Metrics are
+ logged on initialization of the Favicon DB on 1% of starts.
+ </summary>
+</histogram>
+
+<histogram name="History.FaviconDatabaseSizeMB" units="MB">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ Size of the Favicons database in MB. This is calculated as the number of
+ pages consumed by the database multiplied by the page size. Logged on
+ initialization of the Favicon DB on 1% of starts.
+ </summary>
+</histogram>
+
<histogram name="History.FaviconsRecoveredPercentage" units="%">
<owner>rpop@google.com</owner>
<summary>
@@ -11476,6 +11493,55 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="History.NumFaviconBitmapsInDB">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ The total number of favicon bitmaps (of all sizes) cached in a user's
+ Favicon database. A given favicon URL may be associated with multiple
+ bitmaps (of different sizes). Logged on initialization of the Favicon DB on
+ 1% of starts.
+ </summary>
+</histogram>
+
+<histogram name="History.NumFaviconMappingsInDB">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ The number of page URL (e.g., http://www.google.com) to favicon URL (e.g.,
+ http://www.google.com/favicon.ico) mappings stored in a user's Favicon
+ database. Logged on initialization of the Favicon DB on 1% of starts.
+ </summary>
+</histogram>
+
+<histogram name="History.NumFaviconsInDB">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ The total number of favicon URLs (e.g. http://www.google.com/favicon.ico)
+ tracked in a user's Favicon database. This metric tracks knowledge of a
+ favicon URL not whether there are cached bitmaps for that favicon URL. See
+ History.NumFaviconBitmapsInDB for that. Logged on initialization of the
+ Favicon DB on 1% of starts.
+ </summary>
+</histogram>
+
+<histogram name="History.NumLargeFaviconBitmapsInDB">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ The total number of large (&gt;= 64 pixels wide) favicons being tracked in a
+ user's Favicon database. This is a subset of History.NumFaviconBitmapsInDB,
+ which includes all sizes in its count. Logged on initialization of the
+ Favicon DB on 1% of starts.
+ </summary>
+</histogram>
+
+<histogram name="History.NumTouchIconsInDB">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ The total number of touch icons being tracked in a user's Favicon database.
+ This is a subset of History.NumFaviconsInDB, which includes all icon types
+ in its count. Logged on initialization of the Favicon DB on 1% of starts.
+ </summary>
+</histogram>
+
<histogram name="History.TopSitesRecoveredPercentage" units="%">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<summary>
« no previous file with comments | « components/history/core/browser/thumbnail_database.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698