Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sathish-io/1379fd842e8a94faf58b to your computer and use it in GitHub Desktop.
Save sathish-io/1379fd842e8a94faf58b to your computer and use it in GitHub Desktop.
How to check high response HTTP calls from JBoss access log file
How to check high response HTTP calls from JBoss access log file
Response time is last field in the access log, and below command will show calls that took more than 5 seconds.
cat access.log | awk -F " " '{ if ($NF > '5') {print $0}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment