diff options
author | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-18 19:14:05 +0000 |
---|---|---|
committer | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-18 19:14:05 +0000 |
commit | 465ee396265a13b07f75d38ef73d94f03449dcb8 (patch) | |
tree | d99ccb967e9e3d51a1875c8257d0715e9b678bb2 | |
parent | 961c6fecdfd714872aa102f208a5337ca4ee5157 (diff) | |
download | chromium_src-465ee396265a13b07f75d38ef73d94f03449dcb8.zip chromium_src-465ee396265a13b07f75d38ef73d94f03449dcb8.tar.gz chromium_src-465ee396265a13b07f75d38ef73d94f03449dcb8.tar.bz2 |
Add SiteIsolation histograms from http://crrev.com/206286 to XML file.
BUG=248299
TEST=none
Review URL: https://chromiumcodereview.appspot.com/17328004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207050 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | tools/metrics/histograms/histograms.xml | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml index f9436e42..b3b3e89 100644 --- a/tools/metrics/histograms/histograms.xml +++ b/tools/metrics/histograms/histograms.xml @@ -4017,6 +4017,10 @@ other types of suffix sets. </summary> </histogram> +<histogram name="Memory.ProcessLimit"> + <summary>The current process limit. Recorded once per UMA ping.</summary> +</histogram> + <histogram name="MemoryAndroid.DeviceMemoryClass"> <summary> Value of getMemoryClass() recorded once upon startup. This is an integer, @@ -10911,6 +10915,78 @@ other types of suffix sets. <summary>The outcome of Entry::WriteData in the simple cache.</summary> </histogram> +<histogram name="SiteIsolation.BrowsingInstanceCount"> + <summary> + The count of all current BrowsingInstances. Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.CurrentRendererProcessCount"> + <summary> + The count of all renderer processes, including WebUI and extensions. + Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateAllSitesProcessCountEstimate"> + <summary> + The upper bound of the predicted renderer process count if we isolated all + sites, subject to the process limit. Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateAllSitesProcessCountLowerBound"> + <summary> + The lower bound of the predicted renderer process count if we isolated all + sites, subject to the process limit. Happens to be the number of unique + sites. Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateAllSitesProcessCountNoLimit"> + <summary> + The predicted renderer process count if we isolated all sites and if there + were no process limit. Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateAllSitesTotalProcessCountEstimate"> + <summary> + The predicted total process count if we isolated all sites, subject to the + process limit. Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateHttpsSitesProcessCountEstimate"> + <summary> + The upper bound of the predicted renderer process count if we isolated only + HTTPS (not HTTP) sites, subject to the process limit. Recorded once per UMA + ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateHttpsSitesProcessCountLowerBound"> + <summary> + The lower bound of the predicted renderer process count if we isolated only + HTTPS (not HTTP) sites, subject to the process limit. Happens to be the + number of isolated sites. Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateHttpsSitesProcessCountNoLimit"> + <summary> + The predicted renderer process count if we isolated only HTTPS (not HTTP) + sites and if there were no process limit. Recorded once per UMA ping. + </summary> +</histogram> + +<histogram name="SiteIsolation.IsolateHttpsSitesTotalProcessCountEstimate"> + <summary> + The predicted total process count if we isolated only HTTPS (not HTTP) + sites, subject to the process limit. Recorded once per UMA ping. + </summary> +</histogram> + <histogram name="Sqlite.AppCache.Error" enum="SqliteErrorCode"> <summary>Error codes returned by sqlite for the appcache db.</summary> </histogram> |