GitHub - brad-darksbian/fed_dashboard: A simple Dash and Plotly dashboard to review and compare…
A simple dashboard to view federal economic data. This system uses the included CSV file of federal economic data to…
github.com
View Apache requests per minute
Run the following command to see requests per minute:
grep "23/Jan/2013:06" example.com | cut -d -f2 | cut -d » -f1 | awk -F: '{print $2":"$3}' |
sort -nk1 -nk2 | uniq -c | awk '{ if ($1 > 10) print $0}'
Code breakdown: