====== Logfile Analyse NGINX ====== ===== Welche IP hat wieviele Requests ===== ... \\ ===== Wieviele Requests in welcher Stunde ===== cat | awk -F ":" '{ print $2 }' | sort -n | uniq -c \\ ===== Wieviele Requests in welcher Minute ===== cat | awk -F ":" '{ print $2 ":" $3 }' | sort -n | uniq -c | sort -n