I have uploads
directory and I would like to count the total downloads of files in that directory, in short, is it possible to monitor the consumed bandwidth per directory?
Asked
Active
Viewed 130 times
-1

H Aßdøµ
- 147
- 2
- 12
1 Answers
4
Analyze the web server access logs with tools such as Webalizer or visitors. See the number of bytes & files transferred. Done.

Janne Pikkarainen
- 31,852
- 4
- 58
- 81
-
Can I log requests for a certain directory only? – H Aßdøµ Oct 09 '14 at 11:07
-
1`grep -i "/your/directory/" /path/to/access/log >/tmp/somedir_access.log` and analyze the `somedir_access.log` with the tool of your choice. – Janne Pikkarainen Oct 09 '14 at 11:19