Skip to content

Instantly share code, notes, and snippets.

@harunyardimci
Last active March 29, 2017 13:34
Show Gist options
  • Select an option

  • Save harunyardimci/91916a86cb4a84692520 to your computer and use it in GitHub Desktop.

Select an option

Save harunyardimci/91916a86cb4a84692520 to your computer and use it in GitHub Desktop.
strace -vvvfFtT -s 65536 $(for pid in $(ps -C httpd -o pid=); do echo -n "-p $pid "; done)
strace -c $(for pid in $(ps -C httpd -o pid=); do echo -n "-p $pid "; done)
@harunyardimci
Copy link
Author

if you have tons of gettimeofday you can filter it by adding -e 'trace=!gettimeofday'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment