7 lines
250 B
Markdown
7 lines
250 B
Markdown
# View Apache requests per hour
|
|
|
|
```
|
|
grep "23/Jan" access.log | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":00"}' | sort -n | uniq -c
|
|
```
|
|
|
|
* [Reference](https://iceburn.medium.com/view-level-of-traffic-with-apache-access-log-65f9e3c30b1f) |