Table of Contents

, ,

awk commands

Show how many requests per minute the server received

cat /var/log/nginx/access.log | awk -F ':' '{print $2":"$3}' | sort | uniq -c

Tested on

See also

References