-
-
Save halfb00t/749f47e9bc7d99414a5086fc794aa459 to your computer and use it in GitHub Desktop.
Revisions
-
hydra35 revised this gist
Mar 12, 2012 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,12 @@ #!/bin/bash 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) -
hydra35 renamed this gist
Feb 23, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
hydra35 created this gist
Feb 23, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ #!/bin/bash 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" >"$pid.trc" 2>&1 & fi done < <(pgrep php-fpm)