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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1310043004: Create MemoryPressureStatsCollector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nit. Created 5 years, 3 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/memory_pressure/memory_pressure_stats_collector_unittest.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 f9b9ebdebef0cf7a01fe6844262ce007491af345..fc7a929946e290068fa9f4a9414fbfabc518709a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3801,8 +3801,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
-<histogram name="ChromeOS.MemoryPressureLevel"
- enum="ChromeOSMemoryPressureLevel">
+<histogram name="ChromeOS.MemoryPressureLevel" enum="MemoryPressureLevel">
<owner>xdai@chromium.org</owner>
<summary>
The memory pressure level in ChromeOS, which is recorded periodically (once
@@ -18097,9 +18096,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram name="Memory.PressureLevel" enum="MemoryPressureLevel">
<owner>chrisha@chromium.org</owner>
<summary>
- The memory pressure level, which is recorded periodically (once per second).
- This is used to show the relative time that systems spend in each of the
- memory pressure states.
+ The memory pressure level, which is recorded periodically. This shows the
+ cumulative number of seconds that systems spend in each of the memory
+ pressure states.
+ </summary>
+</histogram>
+
+<histogram name="Memory.PressureLevelChanges" enum="MemoryPressureLevelChanges">
+ <owner>chrisha@chromium.org</owner>
+ <summary>
+ The number of pressure level state changes for each possible pairwise state
+ change.
</summary>
</histogram>
@@ -54084,12 +54091,6 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="2" label="Periodic"/>
</enum>
-<enum name="ChromeOSMemoryPressureLevel" type="int">
- <int value="0" label="No memory pressure"/>
- <int value="1" label="Medium memory pressure"/>
- <int value="2" label="High memory pressure"/>
-</enum>
-
<enum name="ChromeOSPlatformVerificationExpiryStatus" type="int">
<summary>
Possible results of a platform verification expiry check. See
@@ -65067,6 +65068,15 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="2" label="Critical memory pressure"/>
</enum>
+<enum name="MemoryPressureLevelChanges" type="int">
+ <int value="0" label="No pressure to moderate pressure"/>
+ <int value="1" label="No pressure to critical pressure"/>
+ <int value="2" label="Moderate pressure to critical pressure"/>
+ <int value="3" label="Critical pressure to moderate pressure"/>
+ <int value="4" label="Critical pressure to no pressure"/>
+ <int value="5" label="Moderate pressure to no pressure"/>
+</enum>
+
<enum name="MetadataReadResult" type="int">
<int value="0" label="Success"/>
<int value="1" label="Open failure"/>
« no previous file with comments | « components/memory_pressure/memory_pressure_stats_collector_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698