Last active
          July 2, 2019 11:04 
        
      - 
      
- 
        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
  
        
  
    
      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 characters
    
  
  
    
  | 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