A log parser extracts (usually text) data from a log file into a more specific data structure, making the log information easier to process. A log parser can be implemented as a standalone application, or as a library for a specific programming language.
0
votes
1answer
27 views
Log Parser recusive file read
I'm trying to using Micorosofts Log Parser to read multiple sets of IIS log files. Now, my query works fine, however, to get it to work properly, I need to have the directory listed that the files ...
0
votes
0answers
11 views
log parser read and write from file with a date as part of the parameters
I would like to know how the log parser can read and write from a file that looks like the following:
file1_2013-02-14.log. Basically the date changes every day. Basically the date part is ...
1
vote
0answers
17 views
Logparser Count Components
I have a daily log file that dumps out of a PLC and sample text is (it has no headers, just raw data):
5/29/2009 3:05:33 PM: PLC Requested Hand Scan
5/29/2009 3:05:40 PM: HH Label Data Retrieved: ...
0
votes
1answer
59 views
Search log file for value with bash
I am trying to create a script which will query a log file (or files) for a particular value and using the values given print out not just the line that it is on but all the lines around it as long as ...
0
votes
1answer
32 views
How to split the single field into multiple fields in logparser
I am very new to log parser. I tried using the different formats and delimiters but that that does not work for me. My log file looks like below..
# Version xx
# Feilds: date time c-ip
# Software : ...
0
votes
1answer
70 views
Log parser not reading the new fields included in IIS Log
I use log parser 2.2 to read the IIS log and copy the log into a database. Initially IIS log was having the default fields and I was able to copy the log in to database. Now I included one more field ...
0
votes
2answers
274 views
Parsing nginx log data with whitespace as delimiter
I am trying to parse the following format from a nginx log file:
10.0.0.1 [02/Oct/2012:10:21:46 +0000] GET /api/123/test.json?stop=2012-09-29 502 0
My python script:
#!/usr/bin/env python
...
0
votes
1answer
89 views
LogParser Lizard
I am using LogParser Lizard to parse Log4Net files and when I am trying to do a query such as: SELECT * FROM "C:\Logs*.log". I get an error saying "The process cannot access the file [...] because it ...
0
votes
0answers
109 views
Log Parser COM API being slow
I'm using LogParser COM API to query event logs in my WPF .NET 4.0 app, but now I'm facing a problem that the ExecuteQuery take too long to run. In the sample code which is Winform + .NET 2.0, the ...
-1
votes
2answers
151 views
Logparser not work in C#
Error parsing query: The specified FROM-ENTITY "<1>" is invalid [The filename, directory name, or volume label syntax is incorrect.]
<1> is working when use in sql in Log Parser 2.2, the ...
0
votes
2answers
366 views
LogParser Error: Syntax Error: extra token(s) after query: 'Files\Apache'
I am trying to run LogParser to dump all contents from access.log into an equivalent CSV file:
C:\Program Files\Log Parser 2.2>LogParser "select * into foo.csv from C:\Program Files\Apache ...
0
votes
0answers
135 views
How to display Parsed Console Output of Log Parser Plugin in email-ext plugin for Jenkins
Email-ext plugin provides build.getLog(100) method to display console output. Is there a similar method to display Parsed Console Output logs ?
1
vote
2answers
74 views
hadoop multiline mixed records
I would like to parse logfiles produced by fidonet mailer binkd, which are multi-line and much worse - mixed: several instances can write into one logfile, for example:
27 Dec 16:52:40 [2484] ...
1
vote
2answers
89 views
Match Range of Lines in Log
I am trying to figure out how to take a log that that has millions of lines in
a day and easily dump a range (based on begin and end timestamp) of lines to
another file. Here is an excerpt from the ...
0
votes
1answer
61 views
How shall SQL statement be designed to also caluculate number of devices?
How shall I design sql statement to also calculate the number of devices within every User-Agent ID?
I work in MS Log Parser Studio (LOGPARSER), working on programming different query Exchange logs ...
2
votes
1answer
439 views
Logparser: Looping filter multiple list and output to multiple files using list value as file name
I'm stuck on a dead end with this logparser dilemma. so there's no where else to go but here.
Batch file (disktrend.bat)
@echo off
pushd "Program Files (x86)\Log Parser 2.2\"
for /f ...
0
votes
1answer
56 views
LogParser Case-Sensitive Search
I'm trying to match a specific URI in an IIS log using LogParser. There are multiple requests coming in for the same address but with slightly different cases. How can I pull up a single URI by case?
...
0
votes
0answers
97 views
Fields from multiple rows into a single row [closed]
I needed to extract fields from multiple rows into a single row. Here's what I ended up with. Seems to work, I just thought I'd share it.
Sample input:
...stuff...
Field1=tom
Field2=dick
...more ...
1
vote
1answer
191 views
Multiline log file processing with sed and regex
I have a log file that looks like this:
11-Sep-2012 00:00:00 clojure.contrib.logging$fn__43$impl_write_BANG___51 invoke
INFO: creditAcc(args=[1506112834429596390 7080851004 4500])
11-Sep-2012 ...
0
votes
2answers
203 views
Library for parsing log file in Java
I've a log file with the following structure.
unstructured raw text
unstructured raw text
..
..
..
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<message>
...
...
...
2
votes
2answers
235 views
LogParser Access Denied error
I using Logparser to parse IIS Log and show information on a web page. Everything is working fine in my development environment but once I publish the application to server I get the following error:
...
1
vote
1answer
138 views
Logparser query to get cookie value
I have abc=1234 added to cookie.
It shows up in IIS log. But the cs(Cookie) field shows other cookies also separated by semicolon.
I want to use logparser to get the value of cookie abc.
Can you ...
3
votes
2answers
92 views
Learning/Detecting Mutatable Parts of a URL in Logs
Say you have a webserver log (apache, nginx, whatever). From it you extract a large list of URLs:
/article/1/view
/article/2/view
/article/1/view
/article/1323/view
/article/1/edit
/help
...
1
vote
2answers
118 views
How to substitute into regex named groups?
I am trying to find a matching line in a logfile based on a regex , then check for the groups in it and report the expected and the actual line.
The following examples show what exactly I am trying ...
0
votes
1answer
623 views
Assembly Issue with LogParserDLL (which i convert to Interop.MSUtil using 'tblimp' command)
i wish to use LogParser.DLL assembly, so i test it over normal console application, it worked, then i put it into a server, send to win 2003 for testing(i have no more free space to install services ...
2
votes
3answers
216 views
Using regular expression to extract a word…if it exists
I want to use RE to parse a log file and return the orderid if it exists. For example:
Here is a sample log
2012-07-19 12:05:04,288 [22] INFO AddQueueCommand [(null)] - Status set to Subscribed
...
0
votes
1answer
566 views
Log Parser ORDER BY CASE statement
Quite a trivial problem here that I can't seem to resolve. I am using LogParser to analyse some telephone system CSV log files. I am trying to produce a graph of all the incoming calls between two ...
0
votes
1answer
303 views
Are there any scripts or other methods to parse tomcat logs? [closed]
I am new to Stackoverflow. So kindly pardon me if i have not made my homework of searching thoroughly. I have a problem in parsing text from tomcat localhost log and catalina.out file. We all know ...
1
vote
2answers
116 views
How to get piece by piece data from WCF service
I have created a .Net app which allows to query IIS logs of some web servers.
The app calls WCF service to get data. WCF service location has the IIS logs in place.
The WCF service internally calls ...
1
vote
1answer
259 views
Parsing iis log using worker role azure
on stand alone hosting environment.
we use "scheduled service + powershell + log parser" to export iis log records into target database, and get all the stats that business dept. loves.
However when ...
0
votes
1answer
167 views
How to run Logparser from Bash shell
I am on Windows box
I open a git bash shell and run
logparser "select date from testFile.log" -i:IISW3C -o:CSV
This works.
But if I create a .sh file with
cmd_to_run='logparser "select date from ...
0
votes
0answers
453 views
Log Parser 2.2 chart formatting
I'm using log parser 2.2 to read from a .CSV file and output as a chart to a .jpg. Log parser is a fantastic tool for creating these kinds of simple graphics, and given that I need to automate this, ...
2
votes
1answer
723 views
How to use Email-ext and Log Parser (with jelly script) pluins in Hudson/Jenkins?
How to use Log Parser with Email-ext plugin to get parsed console output via e-mail?
I use ${JELLY_SCRIPT,template="html"} to get formatted message.
After installing and configuring Log Parser ...
1
vote
2answers
320 views
Execute windows cmd command on all files in directory
Very simply, I want to execute a command on every file in a directory, one at a time, and log the output of that command.
I wrote the following batch script:
pushd C:\Program Files\Log Parser 2.2
...
0
votes
0answers
209 views
LogParser crashes without error in C#
I'm trying to implement MS LogParser in a C# application. This compiles fine but inexplicably crashes on the logQuery.ExecuteBatch() method. The try/catch block doesn't catch it unless I specifically ...
0
votes
1answer
1k views
Log Parser - Query through MSUtill and Read Record through C# codes
i find lot of Threads about Log Parser, but none fulfill my desire,
i need to Apply this query over log parser
select * from security
And get the event rows, then read them row by row, knowing which ...
0
votes
2answers
163 views
Log Parser 2.2 - Possible to LOOP?
I am attempting to make use of Microsoft's Log Parser 2.2. I am pointing my Log Parser at an XML file. I would like to obtain certain information from the XML file and then reuse this information ...
0
votes
1answer
200 views
parse log strings into usable parts
Some context
I'm writing an application that will be fed a continuous stream of strings/data. The data are log messages but from different machines and different applications. So their format may be ...
0
votes
0answers
279 views
How to speed up a LogParser application in ASP.NET
I've developed an ASP.NET application that receives input from the user which is basically an SQL query ran by LogParser. (This input is kept in the "sql1" string. It works, but works slowly. For a ...
0
votes
2answers
120 views
how to determine what is causing my w3wp process re-starts
Seem like something is causing my w3wp process every few minutes. There are no code changes or changes to web.config that can cause this. Application pool IdleTimeout is also set to 2 hours. I am just ...
5
votes
3answers
2k views
How can I find the average number of concurrent users for IIS to simulate during a load/performance test?
I'm using JMeter for load testing. I'm going through and exercise of finding the max number of concurrent threads (users) that our webserver can handle by simply increasing the # of threads in my ...
0
votes
1answer
393 views
SQL query to group multiple groups
I'm parsing some IIS server logs (with LogParser) and I'm having a little trouble creating a query that will give me the aggregate count of each type of browser (user agent).
Here is my query so far:
...
1
vote
1answer
162 views
Log parser process is not allowing log4j to rotate the logs
I wrote a log parser that constantly reads the log file gets specific lines from the log and writes them into database. Logs are generated via LOG4J. Logs are being rotated when they reach specific ...
0
votes
1answer
452 views
wevtutil - probably just missing something simple
Here's a little background. I'm trying to read in .evt files with LogParser, but I'm getting a message saying that the file is corrupted. After some reading, it turns out it most likely has to do with ...
4
votes
3answers
3k views
Send parsed console output in email
I am working with two Jenkins plugins, Email-Ext and Log Parser. I have the regular expressions for the Log Parser plugin how I want them, and I would like to include the output of the Log Parser ...
1
vote
1answer
369 views
LogParser and multiple query string arguments with the same name
I'm trying to get IIS logs statistics with LogParser, and I have to group numbers by the values that a certain argument, named 't', can assume on the query string. We have to handle scenarios like ...
1
vote
1answer
479 views
Querying svc log file with logParser
I have generated a xml trace for my program using the Enterprise Library TraceManager. It works great. Using the Microsoft Service Trace Viewer, I can see a separate trace per call.
I would love to ...
2
votes
1answer
180 views
Log parser not treating “” as one field
Im trying to parse an IIS log file using LogParser 2.2, however im having a problem when it comes to the user agent because it sees the spaces in the following user agent and thinks it's a new ...
0
votes
2answers
284 views
Loparser to get Number of session by Hour
how can i use logparser to see how many uniqe session are there by every hour in IIS Logs
1
vote
3answers
1k views
Powershell & operator stops working
I have a script in PowerShell that calls LogParser. Early in the script I define the path to the executable and tests its path:
#Define path to log parser executable
$logParser = ...