Skip to content

Instantly share code, notes, and snippets.

@joelabair
Last active January 15, 2018 08:52
Show Gist options
  • Save joelabair/7357558 to your computer and use it in GitHub Desktop.
Save joelabair/7357558 to your computer and use it in GitHub Desktop.
Average Request Size from apache log file (common log format) in AWK. (one line)
awk 'BEGIN { t = 0; c = 0 } { if($10 ~ /[[:digit:]]/) { t = t + $10; c++; } } END { print t / c}' /var/log/httpd/access_log
@joelabair
Copy link
Author

AWK - language of the gods.

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