ps auxw | grep sbin/apache | awk '{print"-p " $2}' | xargs strace Process 7313 attached - interrupt to quit Process 7395 attached - interrupt to quit Process 7396 attached - interrupt to quit Process 7397 attached - interrupt to quit Process 7398 attached - interrupt to quit Process 7399 attached - interrupt to quit Process 7401 attached - interrupt to quit Process 7403 attached - interrupt to quit Process 7448 attached - interrupt to quit Process 7468 attached - interrupt to quit Process 7469 attached - interrupt to quit attach: ptrace(PTRACE_ATTACH, ...): No such process [pid 7313] select(0, NULL, NULL, NULL, {0, 48000} <unfinished ...> [pid 7395] poll([{fd=11, events=POLLIN}, {fd=10, events=POLLIN}, {fd=9, events=POLLIN}, {fd=8, events=POLLIN}, {fd=7, events=POLLIN}, {fd=6, events=POLLIN}, {fd=5, events=POLLIN}, {fd=4, events=POLLIN}, {fd=85, events=POLLIN}, {fd=19, events=POLLIN}], 10, -1 <unfinished ...> [pid 7396] semop(1572864, {{0, -1, SEM_UNDO}}, 1 <unfinished ...> [pid 7397] semop(1572864, {{0, -1, SEM_UNDO}}, 1 <unfinished ...> [pid 7398] poll([{fd=15, events=POLLIN}, {fd=19, events=POLLIN}], 2, -1 <unfinished ...> [pid 7399] semop(1572864, {{0, -1, SEM_UNDO}}, 1 <unfinished ...> [pid 7401] poll([{fd=15, events=POLLIN}, {fd=19, events=POLLIN}], 2, -1 <unfinished ...> [pid 7403] poll([{fd=15, events=POLLIN}, {fd=19, events=POLLIN}], 2, -1 <unfinished ...> [pid 7448] poll([{fd=15, events=POLLIN}, {fd=19, events=POLLIN}], 2, -1 <unfinished ...> [pid 7468] poll([{fd=15, events=POLLIN}, {fd=19, events=POLLIN}], 2, -1 <unfinished ...> [pid 7469] poll([{fd=15, events=POLLIN}, {fd=19, events=POLLIN}], 2, -1 <unfinished ...> [pid 7313] <... select resumed> ) = 0 (Timeout) [pid 7313] gettimeofday({1300139401, 36665}, NULL) = 0 [pid 7313] waitpid(-1, 0xffdc0a68, WNOHANG|WSTOPPED) = 0 [pid 7313] select(0, NULL, NULL, NULL, {1, 0}) = 0 (Timeout) [pid 7313] gettimeofday({1300139402, 39688}, NULL) = 0 [pid 7313] waitpid(-1, 0xffdc0a68, WNOHANG|WSTOPPED) = 0 [pid 7313] select(0, NULL, NULL, NULL, {1, 0} <unfinished ...> Process 7313 detached Process 7395 detached Process 7396 detached Process 7397 detached Process 7398 detached Process 7399 detached Process 7401 detached Process 7403 detached Process 7448 detached Process 7468 detached Process 7469 detached
Like the original version except it does not include the parent apache process or the grep process and adds "sudo" so it can be run by user.
Will open strace on all apache process, on systems using sbin/apache (debian) or sbin/httpd (redhat), and will follow threads newly created.
Especially for sysadmins when they don't want to waste time to add -p flag on the N processes of a processname.
In the old school, you did ;
pgrep processname
and typing strace -f -p 456 -p 678 -p 974...
You can add -f argument to the function. That way, the function will deal with pgrep to match the command-line.
Example :
processname -f jrockit
This version also attaches to new processes forked by the parent apache process. That way you can trace all current and *future* apache processes.
Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?
You must be signed in to comment.
commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
ps auxw | grep sbin/httpd | awk '{print $2}' | awk ' {print "-p "$1}' | xargs strace
ps auxw | grep sbin/httpd | awk '{print"-p " $2}' | xargs strace
strace $(pidof httpd | sed 's/\([0-9]*\)/\-p \1/g')