Skip to content

Instantly share code, notes, and snippets.

@overplumbum
Created May 21, 2012 19:58
Show Gist options
  • Save overplumbum/2764300 to your computer and use it in GitHub Desktop.
Save overplumbum/2764300 to your computer and use it in GitHub Desktop.
URL average speed by hour from nginx access log
zcat /var/log/nginx/prod.*.access.log-2012051[567].gz | grep autocomplete | perl -nle 'm|(\d+)/.../....:(\d+):.* "([0-9.]+)" "ostrovok.ru" "ajax"| and print "$1$2 $3"' | awk '{a[$1]++;b[$1]=b[$1]+$2}END{for (i in a) printf("%s\t%10.2f\n", i, b[i]/a[i])} ' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment