Skip to content

Instantly share code, notes, and snippets.

@Soben
Created August 16, 2018 17:08
Show Gist options
  • Save Soben/1baa2127147382f32112b53c1235307f to your computer and use it in GitHub Desktop.
Save Soben/1baa2127147382f32112b53c1235307f to your computer and use it in GitHub Desktop.
Find biggest consumers of Access Requests
cat {path/to/access/log} | awk '{print $1}' | sort | uniq -c | sort -n | tail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment