4

I am using nginx+php-fpm for php environment and I want to strace the php script execute,but there are many php-fpm worker, so if how can I know which php-fpm worker is handling the script?
if I should monitor all the php-fpm worker,example is as following:

additional_strace_args="$1"

MASTER_PID=$(ps auwx | grep php-fpm | grep -v grep | grep 'master process'  | cut -d ' ' -f 6)

while read -r pid;
do
    if [[ $pid != $MASTER_PID ]]; then
        nohup strace -r -p "$pid" $additional_strace_args >"$pid.trc" 2>&1 &
    fi
done < <(pgrep php-fpm)
tudouya
  • 409
  • 3
  • 6
  • 11

1 Answers1

7

You can use the -f flag to trace child processes like this:

strace -f $(pidof php-fpm | sed 's/\([0-9]*\)/\-p \1/g')
Pang
  • 9,564
  • 146
  • 81
  • 122
charles
  • 382
  • 5
  • 10