>From http://man7.org/linux/man-pages/man5/proc.5.html:
* VmSwap: Swapped-out virtual memory size by anonymous private
pages; shmem swap usage is not included (since Linux 2.6.34).
Confirmed by testing as well.
---
src/pmdas/linux_proc/help_text.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pmdas/linux_proc/help_text.h b/src/pmdas/linux_proc/help_text.h
index 570394e..defd85d 100644
--- a/src/pmdas/linux_proc/help_text.h
+++ b/src/pmdas/linux_proc/help_text.h
@@ -19,7 +19,7 @@ help_text_t help_text[] = {
{ .name = "psinfo.blocked_s", .shorthelp = "blocked signals mask in
string form (from /proc/<pid>/status)", .longhelp = "" },
{ .name = "memory.vmexe", .shorthelp = "virtual memory used for
non-library executable code (from /proc/<pid>/status)", .longhelp = "" },
{ .name = "id.egid_nm", .shorthelp = "effective group name based on
effective group ID from /proc/<pid>/status", .longhelp = "" },
-{ .name = "memory.vmswap", .shorthelp = "virtual memory that has
been brought in and out.", .longhelp = "" },
+{ .name = "memory.vmswap", .shorthelp = "virtual memory size
currently swapped out (from /proc/<pid>/status)", .longhelp = "" },
{ .name = "psinfo.sigcatch_s", .shorthelp = "caught signals mask in
string form (from /proc/<pid>/status)", .longhelp = "" },
{ .name = "id.egid", .shorthelp = "effective group ID from
/proc/<pid>/status", .longhelp = "" },
{ .name = "psinfo.minflt", .shorthelp = "count of minor page faults
(i.e. reclaims)", .longhelp = "" },
Thanks,
--
Marko Myllynen
|