logparser

IIS Log Parser - Need Query to find “total requests taking > x secs” / “Total Requests” grouped by URL

只愿长相守 提交于 2019-12-10 11:14:07
问题 I am supporting an application that is having occasional performance issues. The client wants to know how often a page is slow. i.e. Total times a page took greater than x secs / Total number of requests for the page I would like to write a single query to fetch the desired data. Something like this in SQL would probably work but isn't working in IIS Log parser. select URL, count(case when time > 100 then 1 else null end), count(*) from table1 group by URL 回答1: The problem here is that you

Powershell and logparser arguments

人盡茶涼 提交于 2019-12-04 04:51:16
Im trying to run some logparser commands from powershell but Im having issues with passing the arguments across correctly, heres the excert from my script; d:\scripting\smtplogs\logparser\logparser.exe "SELECT TOP 50 Receiver, COUNT( ) INTO %TMPOutput%\TopReceiversNDRALL.gif FROM %TempDir%\PostAll.log WHERE Sender LIKE '<>' AND Receiver NOT LIKE '%%go-fmtopper%%' GROUP BY Receiver ORDER BY COUNT( ) DESC" -i:TSV -iSeparator:space -headerRow:OFF -iHeaderFile:"header3.tsv" -lineFilter:"+10." -o:CHART -chartType:ColumnClustered -config:MyScript.js -chartTitle:"Receivers for NULL messages ALL for

How can I find the average number of concurrent users for IIS to simulate during a load/performance test?

一世执手 提交于 2019-11-30 20:54:24
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 distributed JMeter test case, and firing off the test. Then -- it struck me, that while the MAX number may be useful, the REAL number of users that my website actually handles on average is the number I need to make the test fruitful. Here are a few pieces of information about our setup: This is a mixed .NET/Classic ASP site. Upon login, a browser session (with timeout) is created in both for the

Exporting SharePoint usage log files into a database using LogParser

只愿长相守 提交于 2019-11-29 15:39:53
问题 So basically we have lots of SharePoint usage log files generated by our SharePoint 2007 site and we would like to make sense of them. For that we're thinking of reading the log files and dumping into a database with the appropriate columns and all. Now I was going to make an SSIS package to read all the text files and extract the data when I came across LogParser. Is there a way to use LogParser to dump data into an Sql Server database or the SSIS way is better? Or is there any other better

Send parsed console output in email

走远了吗. 提交于 2019-11-28 07:41:43
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 plugin in the email that is sent out to users after a build. The Email-Ext plugin has access to the console output, and I could rewrite my regular expressions for the console output in the email, but since the Log Parser plugin has already done the hard work I was hoping there was some way I could just pull its output into the email. Does anyone know of any way (like a Jenkins environment variable)

Send parsed console output in email

ぃ、小莉子 提交于 2019-11-27 02:01:40
问题 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 plugin in the email that is sent out to users after a build. The Email-Ext plugin has access to the console output, and I could rewrite my regular expressions for the console output in the email, but since the Log Parser plugin has already done the hard work I was hoping there was some way I could