I have a web server log file like this.
10.144.6.146 - - [20/Oct/2004:00:00:17 - 0700] "GET /images/grey_dot.gif HTTP/1.1" 304 - 304 - - - 451 120 572 1 20 0
I want to assign each field in to a variable and format the records and prepare a report in readable format. The log file has thousands of lines. Some of the fileds I want to do some calculations
I know there are plenty of web analysis tool available, but I wan to prepare a custom report. The script should process one line at a time.
10.144.6.146 - - [20/Oct/2004:00:00:17 - 0700] "GET /images/grey_dot.gif HTTP/1.1" 304 - 304 - - - 451 120 572 1 20 0
I want to assign each field in to a variable and format the records and prepare a report in readable format. The log file has thousands of lines. Some of the fileds I want to do some calculations
I know there are plenty of web analysis tool available, but I wan to prepare a custom report. The script should process one line at a time.