Our analytics software monitors the HTML pages that we're serving quite nicely (through embedded javascript) but we have a few image files that are not included in these reports as they're not attached to any HTML. Knowing the file's name/path, I'm looking for quick (and dirty if necessary) way to identify how many times a given image was served by Apache on each Day (or hour?).
|
feedback
|
|
You will need to look at your particular log format, but as an example:
| |||
feedback
|
|
Quick and dirty: grep for the image in the access log. Number of times in a day = number of lines containing that pattern (assuming you roll your logs daily). | |||
|
feedback
|