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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1810583002: Fix memory values for the Win.* stats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/metrics/system_memory_stats_recorder_win.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 6a23d3b6f868c5b94f614a9351600babdd86877b..b9a1c495214c6981e26b858c15cb1b64400d51c3 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -21412,6 +21412,18 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Memory.Stats.Win.AvailPageFile" units="MB">
+ <obsolete>
+ Deprecated in 595320 and replaced with Memory.Stats.Win.AvailPageFile2.
+ </obsolete>
+ <owner>georgesak@chromium.org</owner>
+ <summary>
+ Windows-only metric that represents the maximum amount of memory the current
+ process can commit. This value is equal to or smaller than the system-wide
+ available commit value.
+ </summary>
+</histogram>
+
+<histogram name="Memory.Stats.Win.AvailPageFile2" units="MB">
<owner>georgesak@chromium.org</owner>
<summary>
Windows-only metric that represents the maximum amount of memory the current
@@ -21421,6 +21433,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Memory.Stats.Win.AvailPhys" units="MB">
+ <obsolete>
+ Deprecated in 595320 and replaced with Memory.Stats.Win.AvailPhys2.
+ </obsolete>
+ <owner>georgesak@chromium.org</owner>
+ <summary>
+ Windows-only metric that represents the amount of physical memory currently
+ available. This is the amount of physical memory that can be immediately
+ reused without having to write its contents to disk first. It is the sum of
+ the size of the standby, free, and zero lists.
+ </summary>
+</histogram>
+
+<histogram name="Memory.Stats.Win.AvailPhys2" units="MB">
<owner>georgesak@chromium.org</owner>
<summary>
Windows-only metric that represents the amount of physical memory currently
@@ -21431,6 +21456,18 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Memory.Stats.Win.AvailVirtual" units="MB">
+ <obsolete>
+ Deprecated in 595320 and replaced with Memory.Stats.Win.AvailVirtual2.
+ </obsolete>
+ <owner>georgesak@chromium.org</owner>
+ <summary>
+ Windows-only metric that represents the amount of unreserved and uncommitted
+ memory currently in the user-mode portion of the virtual address space of
+ the calling process.
+ </summary>
+</histogram>
+
+<histogram name="Memory.Stats.Win.AvailVirtual2" units="MB">
<owner>georgesak@chromium.org</owner>
<summary>
Windows-only metric that represents the amount of unreserved and uncommitted
@@ -21449,6 +21486,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Memory.Stats.Win.TotalPageFile" units="MB">
+ <obsolete>
+ Deprecated in 595320 and replaced with Memory.Stats.Win.TotalPageFile2.
+ </obsolete>
+ <owner>georgesak@chromium.org</owner>
+ <summary>
+ Windows-only metric that represents the current committed memory limit for
+ the system or the current process, whichever is smaller.
+ </summary>
+</histogram>
+
+<histogram name="Memory.Stats.Win.TotalPageFile2" units="MB">
<owner>georgesak@chromium.org</owner>
<summary>
Windows-only metric that represents the current committed memory limit for
@@ -21457,6 +21505,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Memory.Stats.Win.TotalPhys" units="MB">
+ <obsolete>
+ Deprecated in 595320 and replaced with Memory.Stats.Win.TotalPhys2.
+ </obsolete>
+ <owner>georgesak@chromium.org</owner>
+ <summary>
+ Windows-only metric that represents the amount of actual physical memory.
+ </summary>
+</histogram>
+
+<histogram name="Memory.Stats.Win.TotalPhys2" units="MB">
<owner>georgesak@chromium.org</owner>
<summary>
Windows-only metric that represents the amount of actual physical memory.
@@ -21464,6 +21522,22 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Memory.Stats.Win.TotalVirtual" units="MB">
+ <obsolete>
+ Deprecated in 595320 and replaced with Memory.Stats.Win.TotalVirtual2.
+ </obsolete>
+ <owner>georgesak@chromium.org</owner>
+ <summary>
+ Windows-only metric that represents the size of the user-mode portion of the
+ virtual address space of the calling process. This value depends on the type
+ of process, the type of processor, and the configuration of the operating
+ system. For example, this value is approximately 2 GB for most 32-bit
+ processes on an x86 processor and approximately 3 GB for 32-bit processes
+ that are large address aware running on a system with 4-gigabyte tuning
+ enabled.
+ </summary>
+</histogram>
+
+<histogram name="Memory.Stats.Win.TotalVirtual2" units="MB">
<owner>georgesak@chromium.org</owner>
<summary>
Windows-only metric that represents the size of the user-mode portion of the
« no previous file with comments | « components/metrics/system_memory_stats_recorder_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698