Has anyone written an AWK to analyze the IIS log files that look like the example below?
I wish to gather statistics about how often people are logging in to a DEFAULT.ASP, grouped by IP address.
Thanks!
--Shaun Merrill
I wish to gather statistics about how often people are logging in to a DEFAULT.ASP, grouped by IP address.
Thanks!
Code:
#Software: Microsoft Internet Information Server 4.0
#Version: 1.0
#Date: 2001-07-17 20:53:48
#Fields: time c-ip cs-method cs-uri-stem sc-status
20:53:48 156.74.138.70 GET /Default.asp 200
20:53:48 156.74.138.70 GET /iissamples/default/SQUIGGLE.GIF 200
20:53:48 156.74.138.70 GET /iissamples/default/MSFT.GIF 200
--Shaun Merrill