« Previous Next »

Thread: New GUI tool for MS Log Parser, Log Parser Lizard

Last post 11-13-2009 9:40 PM by lizardlabs. 63 replies.

Average Rating Rate It (5)

RSS

Page 1 of 5 (64 items) 1 2 3 4 5 Next >

Sort Posts:

  • 12-05-2007, 7:10 AM

    New GUI tool for MS Log Parser, Log Parser Lizard

    Becouse the command-line interface for Microsoft Log Parser is not very intuitive, I have created Log Parser Lizard, a Microsoft Log Parser GUI tool for managing queries, exporting results to Excel, charts, etc… In addition I have added input filters for log4net file format and SQL server T-SQL queries.

    You can download Log Parser Lizard from here www.lizardl.com

    Microsoft.Net 2.0 is required.

     

    www.lizardl.com
  • 12-17-2007, 3:28 AM In reply to

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    Ehemmm.... excuse me.... does anyon have tried the application? Any commnets....

    www.lizardl.com
  • 12-21-2007, 7:58 AM In reply to

    • tomkmvp
    • Top 10 Contributor
    • Joined on 03-20-2003, 10:27 AM
    • Central NJ
    • Posts 6,238
    • IIS MVPs

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    Is this tool web based?  I'm looking for something that is web based ...

  • 12-21-2007, 8:26 AM In reply to

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    tomkmvp:

    Is this tool web based?  I'm looking for something that is web based ...

    No it is not web based, it is WinForms application based on .Net Framework 2.0. I dont know if there is web based solution for this.

    www.lizardl.com
  • 12-22-2007, 9:37 AM In reply to

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

     Nice to see some work being done for LP.

    IMO, what we really need is a way to prompt the user for input.
     

  • 12-26-2007, 8:47 AM In reply to

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    juststeve:
    IMO, what we really need is a way to prompt the user for input.

    Did you mean something like this. If you, enter query like (for example) ‘select * from <1> where Date = (@MyDate as date)', when you run it, the program will show dialog box for entering parameter @MyDate and pass it to the LogParser? Or you have somethin else in mind?

    www.lizardl.com
  • 12-27-2007, 12:35 AM In reply to

    • ffnm
    • Not Ranked
    • Joined on 12-26-2007, 12:01 PM
    • Posts 4

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    Great tool. 

  • 01-07-2008, 10:52 AM In reply to

    • veritas
    • Not Ranked
    • Joined on 01-07-2008, 3:40 PM
    • Posts 4

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    Looks nice, how do I point it at a server on the network? I'm looking to browse the SQL Server errorlogs and the event logs on a different box.

    PS.  

    Small typing error under Help, should be Send Application Logs

  • 01-08-2008, 6:09 AM In reply to

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    veritas:

    Looks nice, how do I point it at a server on the network? I'm looking to browse the SQL Server errorlogs and the event logs on a different box.

    for evet logs: just add server name

    ex. select * from \\APPSERVER\System

    I'm not sure that you can parse SQL server error logs with MS Log Parser

    www.lizardl.com
  • 01-08-2008, 11:14 AM In reply to

    • veritas
    • Not Ranked
    • Joined on 01-07-2008, 3:40 PM
    • Posts 4

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    Yes, it works for SQL Server errorlogs, set the input format to TEXTLINE and away you go. This gets around how slow Enterprise Manager is at opening the errorlogs and gives filtering and the ability to save the queries. A sample query is as follows:

    select top 500 substr(text,0,22) as Date, substr(text,23,9) as Source, substr(text,32) as Message from '\\server\C$\instance\log\ERRORLOG.*' where Message not like '%Log backed up%' and Message not like '%DBCC TRACEON%'
    and Message not like '%Login failed%' and Message not like '%Database backed up%'  and Message not like '%Database log truncated%'
    and Message not like '%DBCC CHECKDB%'

    Just what I need. The ability to use variables for server and instance above so I can point at any of my production servers would be good. I've also got the above select to work natively as TSV input:

    logparser.exe. "select top 500 STRCAT(STRCAT(DATE,' '), TIME) as Date, Source, Message from '\\server\C$\instance\log\ERRORLOG.*' where Message not like '%Log backed up%' and Message not like '%DBCC TRACEON%'
    and Message not like '%Login failed%' and Message not like '%Database backed up%'  and Message not like '%Database log truncated%'
    and Message not like '%DBCC CHECKDB%' " -i:TSV -iseparator::spaces -iHeaderFile:c:\formatfile.txt -nskiplines:9

    but when I open Queries.. and click on Properties... I get Exception has been thrown by the target of an invocation and then the values I enter don't get saved.

  • 01-08-2008, 11:21 AM In reply to

    • veritas
    • Not Ranked
    • Joined on 01-07-2008, 3:40 PM
    • Posts 4

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    That should have said of course that when I try to set it up in Log Parser Lizard I get the error. It doesn't give the error on first entering the properties but it doesn't seem to save them and gives the errors on exit.

    BTW, you give values of True and False for headerRow, Log Parser uses ON and OFF.  

     

  • 01-08-2008, 2:52 PM In reply to

    • kcb263
    • Top 500 Contributor
    • Joined on 12-13-2006, 8:42 PM
    • Scranton, PA
    • Posts 13

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

     this looks like a nice tool.  Unfortunately I keep getting "Attempted to read or write protected memory.  This is often an indiction that other memory is corrupt."

     

     

  • 01-09-2008, 4:28 AM In reply to

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    veritas:
    Just what I need. The ability to use variables for server and instance above so I can point at any of my production servers would be good

    I’m using log parser lizard mainly for statistics on IIS logs, event logs and active directory and for parsing log4net logs with regular expressions for system diagnostics. I don’t have much experience in parsing textline and tab separated files. But you can try to set ‘options’ in the query. Ex:

    select top 500 substr(text,0,22) as Date, substr(text,23,9) as Source, substr(text,32) as Message from '\\#SQLSERVER#\c$\#INSTANCE#\LOG\ERRORLOG' where Message not like '%Log backed up%' and Message not like '%DBCC TRACEON%'and Message not like '%Login failed%' and Message not like '%Database backed up%'  and Message not like '%Database log truncated%'and Message not like '%DBCC CHECKDB%'

    and add SQLSERVER and INSTANCE in program options (on the toolbar).

    veritas:
    Just That should have said of course that when I try to set it up in Log Parser Lizard I get the error. It doesn't give the error on first entering the properties but it doesn't seem to save them and gives the errors on exit

    I can see that there are some issues and bugs when changing the type of a saved query and his properties :(, but I believe that there is workaround (delete the old query and copy-paste to the new one) until I fix them. Thank you for pointing them out. I will fix them as soon as possible.

    kcb263:
    this looks like a nice tool.  Unfortunately I keep getting "Attempted to read or write protected memory.  This is often an indiction that other memory is corrupt."

    I am using LPL on a Win XP SP2 and Win 2003 Server. I very rarely have this kind of messages. Mainly when I am selecting groups from Active Directory with a lot of members and try to scroll up/down :(. Can you specify a bit more about conditions under which you have these messages?

    Please don’t curse the programmer for the bugs.

    www.lizardl.com
  • 01-09-2008, 1:35 PM In reply to

    • kcb263
    • Top 500 Contributor
    • Joined on 12-13-2006, 8:42 PM
    • Scranton, PA
    • Posts 13

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    I'm not sure what is happening on my end here.  I receive that error when I try running even one of the basic queries (all .htm files) pointing to a local .log file which I copied over to my C:\.

    I hope you didn't misinterpret my feedback as being upset.  I was just posting the error message in hopes that someone has come across this before and could help troubleshoot.

     
    Looking forward to getting it working!


     

  • 01-11-2008, 4:06 AM In reply to

    Re: New GUI tool for MS Log Parser, Log Parser Lizard

    I’m also using Log Parser 2.2 (standalone installation, not the one that goes with IIS Resources kit).

    www.lizardl.com
Page 1 of 5 (64 items) 1 2 3 4 5 Next >
Microsoft Communities