Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a simple IIS Log Viewer that can open large (e.g. 100 meg) IIS Log files and give me simple filtering and searching tools.

(IIS = Microsoft Internet Information Server, obviously)

(OK, I know I could use Notepad, but I'd like something that can help me filter out the bits I'm not interested in)

share|improve this question

7 Answers

up vote 28 down vote accepted

You should check out LogParser:

Log Parser 2.2 - Microsoft Downloads

Update: I should add that LogParser is blindingly fast. We parse (checking for all sorts of stuff) around a gig of logs a day per server on the shared platform and it just rips through them.

It also has a COM API so you can write your own parsing tools to suit your needs (something we do as well).

share|improve this answer
3  
This one turned out to be a command line utility, which is a bit 1970s but actually works well because that makes it very fast on large files. You basically write a SQL-style query and point it at the log file and it filters for you. Great, thanks. – codeulike Oct 1 '08 at 14:31
Yeah whilst it looks a bit low tech, it's very powerful. Spend a day with it and be amazed :) – Kev Oct 1 '08 at 14:36
1  
Can LogParser be used to dump all the data in a database. – Daud Ahmad Oct 8 '08 at 6:15
Definitely recommend this. I remember I used the COM API of LogParser to create various custom loggers for different purposes back at the previous office. Brilliant stuff. – ayaz Nov 16 '08 at 6:23
8  
I'd also reccommend "log parser lizard" as a nice gui wrapper with the ability to graph and save queries w/o having to deal with the hassles of a command line. – Jody Mar 4 '09 at 1:30
show 1 more comment

Visual Log Parser works really well for more than just IIS logs too.

share|improve this answer
this one looked promising but ran out of memory while it was opening the log file – codeulike Oct 1 '08 at 14:29

Kev has answered it correctly with the Microsoft Log Parser however recent innovations can make this easier to do.

There have recently been two new GUI wrappers for this that allow you to run the Log Parser in a GUI setting, which can be really helpful to quickly test out different queries and get columns names from your log file.

The first is from the Microsoft Exchange team and is called "Log Parser Studio". It main benefit is that it is written to run your queries a-sync so the UI thread doesn't lock while searching - this can be good as it doesn't feel like the app has crashed when running on large logs:

http://gallery.technet.microsoft.com/Log-Parser-Studio-cd458765

The second is my preferred and is Log Parser Lizard - this is an easier tool to use, but locks the UI while searching so can give you the feeling that it has crashed:

http://www.lizard-labs.net/log_parser_lizard.aspx

share|improve this answer
It's not totally locked. Check the status bar just under the query -- it shows rows accumulated and the elapsed time. There's also an in-progress bar on the far right of the status bar, as well as a Pause and a Stop button. – Alan McBee Dec 4 '12 at 1:11

Hmmm. This is an old question (before I got here) and I'm surprised no one mentioned Analog. http://www.analog.cx/

The two criteria you ask for, i.e. Open large log files and simple filtering and searching tools fit Analog to a tee.

Also see: http://stackoverflow.com/questions/356459/web-server-log-analysis-tool

share|improve this answer

While it doesn't do much in the way of filtering and it definitely isn't a parser; a really useful tool for your toolbelt is a (free-ware) real-time log file monitoring tool called BareTail.

You open up a log file in BareTail and it 'follows' the very end of the file in real time as text gets continuously written/appended to the end of the file.

Lines containing particular strings can be highlighted to help you notice important text as it flies by (you can pause the 'follow' behaviour if you see something useful).

share|improve this answer

Check out Splunk

share|improve this answer

http://indihiang.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=26171

share|improve this answer
Crashes with OutOfMemoryException when processing large files (~1GB). – urig Dec 12 '10 at 14:02
Crashes if you reload an already loaded logfile. Seems to be low quality software. – binford Jun 6 '11 at 11:35
Crashes on 64bit. – BigJump Aug 11 '11 at 16:27
crashes full stop for me – Rob Nov 21 '12 at 12:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.