Logfile software for making querys, extracting and other operations
- by Juw
I have written an app that connects to a server IIS 6 to retrieve information. When doing this i have collected data (phone model etc) and send it to the server with a regular GET HTTP call like this:
http://www.myserver.com/getData.php?phonemodel=userphone&appversion=2&id=20
This is logged in the IIS logfiles. I thought of writing my own parser for log files. But why invent the wheel? I´m looking for a software that can read the IIS 6 logfiles.
I would like it to be able to do:
Extraction - Extract all lines that contains: www.myserver.com/getData
Filtering - View all lines where http-code is not 200
Queries - View all lines where phonemodel=iphone
Any tips on free software that can help me with this?
Thanx in advance!