Source Storage/Programming

Microsoft Log Parser 2.2

알 수 없는 사용자 2008. 3. 28. 15:46
Log Parser 2.2

Brief Description
Log parser is a powerful, versatile tool that provides universal query access to text-based data such as log files, XML files and CSV files, as well as key data sources on the Windows® operating system such as the Event Log, the Registry, the file system, and Active Directory®.

Overview

Log parser is a powerful, versatile tool that provides universal query access to text-based data such as log files, XML files and CSV files, as well as key data sources on the Windows® operating system such as the Event Log, the Registry, the file system, and Active Directory®. You tell Log Parser what information you need and how you want it processed. The results of your query can be custom-formatted in text based output, or they can be persisted to more specialty targets like SQL, SYSLOG, or a chart.

Most software is designed to accomplish a limited number of specific tasks. Log Parser is different... the number of ways it can be used is limited only by the needs and imagination of the user. The world is your database with Log Parser.

System Requirements

  • Supported Operating Systems: Windows 2000; Windows Server 2003; Windows XP Professional Edition

Log Parser Examples

Search for Data

Search for the logons of a specific user among the events in the Windows Event Log:

C:\>LogParser "SELECT TimeGenerated, SourceName,
EventCategoryName, Message INTO report.txt FROM Security WHERE
EventID = 528 AND SID LIKE '%TESTUSER%'" -resolveSIDs:ON

And obtain results in a text file formatted as desired:


Create Reports

Create custom-formatted HTML reports:


Calculate Statistics

Calculate the distribution of the HTTP response status codes from your IIS log files:

C:\>LogParser "SELECT sc-status, COUNT(*) AS Times INTO Chart.gif
FROM <1> GROUP BY sc-status ORDER BY Times DESC" –
chartType:PieExploded3D -chartTitle:"Status Codes"

And produce a chart formatted as desired:


---------------------------------
MS에서 만든 IIS 로그용 분석 프로그램... 쿼리를 이용해서 로그를 만드는거 같은데... 이게 웹에서 컨트럴이 가능하다면.... 좋겠구만.. 암튼 좀 더 봐야 할듯.. 웹컨트럴과 웹에서 그래픽등의 출력만 지원한다면 .. 좋.겠.다.
DOWNLOAD LINK  EXAMPLES LINK