From 437d28837babb2890a5784390a7da276c69b0fb9 Mon Sep 17 00:00:00 2001 From: guriandoro Date: Tue, 11 Apr 2017 19:15:14 -0400 Subject: [PATCH] Changes for LP1510809. ps -eaF is captured now. Modified f argument, for F. From man pages: " -F Extra full format. See the -f option, which -F implies." The following columns have been added to the output, due to this change: SZ size in physical pages of the core image of the process. This includes text, data, and stack space. Device mappings are currently excluded; this is subject to change. RSS resident set size, the non-swapped physical memory that a task has used (inkiloBytes). PSR processor that process is currently assigned to. --- lib/bash/collect.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bash/collect.sh b/lib/bash/collect.sh index 71127905..03a51c70 100644 --- a/lib/bash/collect.sh +++ b/lib/bash/collect.sh @@ -141,7 +141,7 @@ collect() { # Grab a few general things first. Background all of these so we can start # them all up as quickly as possible. - ps -eaf >> "$d/$p-ps" & + ps -eaF >> "$d/$p-ps" & top -bn${OPT_RUN_TIME} >> "$d/$p-top" & [ "$mysqld_pid" ] && _lsof $mysqld_pid >> "$d/$p-lsof" &