You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/metricbeat/exported-fields-system.md
+99-1Lines changed: 99 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -725,7 +725,7 @@ Actual memory used and free.
725
725
726
726
727
727
**`system.memory.actual.free`**
728
-
: Actual free memory in bytes. It is calculated based on the OS. On Linux this value will be MemAvailable from /proc/meminfo, or calculated from free memory plus caches and buffers if /proc/meminfo is not available. On OSX it is a sum of free memory and the inactive memory. On Windows, it is equal to `system.memory.free`.
728
+
: Actual free memory in bytes. It is calculated based on the OS. On Linux this value will be MemAvailable from /proc/meminfo, or calculated from free memory plus caches and buffers if /proc/meminfo is not available. On OSX it is a sum of free memory and the inactive memory. On Windows, it is equal to `system.memory.free`.
729
729
730
730
type: long
731
731
@@ -776,6 +776,98 @@ This group contains statistics related to the swap memory usage on the system.
776
776
format: percent
777
777
778
778
779
+
## zswap [_zswap]
780
+
781
+
Metrics for the zswap compressed swap cache. Available on Linux when zswap is enabled.
782
+
783
+
**`system.memory.zswap.compressed`**
784
+
: Current compressed size of data stored in zswap.
785
+
786
+
type: long
787
+
788
+
format: bytes
789
+
790
+
791
+
**`system.memory.zswap.uncompressed`**
792
+
: Original uncompressed size of data stored in zswap.
793
+
794
+
type: long
795
+
796
+
format: bytes
797
+
798
+
799
+
## debug [_debug]
800
+
801
+
Detailed zswap statistics from /sys/kernel/debug/zswap. Requires debugfs to be mounted and accessible.
802
+
803
+
**`system.memory.zswap.debug.decompress_fail`**
804
+
: Number of load or writeback attempts that failed due to decompression failure.
805
+
806
+
type: long
807
+
808
+
809
+
**`system.memory.zswap.debug.pool_limit_hit`**
810
+
: Number of times the zswap pool limit was hit, as configured by the zswap.max_pool_percent kernel parameter.
811
+
812
+
type: long
813
+
814
+
815
+
**`system.memory.zswap.debug.pool_total_size`**
816
+
: Total size of the zswap pool in bytes.
817
+
818
+
type: long
819
+
820
+
format: bytes
821
+
822
+
823
+
**`system.memory.zswap.debug.reject_alloc_fail`**
824
+
: Number of store attempts that failed because the underlying allocator could not get memory.
: Number of pages written back from zswap to swap when pool limit was reached.
867
+
868
+
type: long
869
+
870
+
779
871
## network [_network]
780
872
781
873
`network` contains network IO metrics for a single network interface.
@@ -1238,6 +1330,12 @@ cgroupv2 stats
1238
1330
type: long
1239
1331
1240
1332
1333
+
**`system.process.cgroup.cpu.cfs.weight`**
1334
+
: CPU weight for the cgroup (cgroupv2). Used by the CFS scheduler to determine the share of CPU time available to the cgroup. Valid values range from 1 to 10000. The default value is 100.
1335
+
1336
+
type: long
1337
+
1338
+
1241
1339
**`system.process.cgroup.cpu.rt.period.us`**
1242
1340
: Period of time in microseconds for how regularly a cgroup's access to CPU resources is reallocated.
0 commit comments