mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 21:19:59 +00:00
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.
This commit is contained in:
@@ -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" &
|
||||
|
Reference in New Issue
Block a user