Migrated notes from mdnotes

This commit is contained in:
2023-04-26 09:27:33 -04:00
parent d47301e3c5
commit 5aba5188d7
16 changed files with 1044 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# 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)