Questions tagged [iis-logs]
75 questions
1
vote
0 answers
Azure Monitor Logs: The AppServiceHTTPLogs table is missing the CsUriQuery field?
I'm trying to get some raw log-data from the AppServiceHTTPLogs table by using Azure > Monitor > Logs.
As it turns out, the AppServiceHTTPLogs table doesn't seem to have the CsUriQuery column, which is weird.
For example, the query:…

Armin L.
- 21
- 3
1
vote
1 answer
Parse IIS logs in Azure Log Analytics' Query
Azure Log Analytics (aka OMS) uses Kusto QL. We ship our IIS logs from docker containers to Log Analytics and I intend to use the following query to parse the entries:
ContainerLog
| extend fields = split(LogEntry, ' ')
| extend appname =…

Amir Keibi
- 1,991
- 28
- 45
1
vote
1 answer
VBscript for cleaning up IIS logs has runtime error
I have a VBScript for zipping up old IIS log files. I keep getting this error though:
Microsoft VBScript runtime error: ActiveX component can't create
object: 'GetObject'
This is the line it errors on:
Set objIISOuter =…

techguy1029
- 743
- 10
- 29
1
vote
0 answers
How to retrieve IIS log parameter value [Parameter name: Bytes Sent (sc-bytes ) & Bytes Received (cs-bytes)] from HttpContext object
I want to write access log for my application similar to IIS access log
(e.g IIS log file Path: "C:\inetpub\logs\LogFiles\W3SVC1\u_ex190422.log") using .net core.
For below fields I am able to retrieve information from HttpContext object
URI…

RPrashant
- 217
- 3
- 13
1
vote
0 answers
IIS logs must-have basics on kibana dashboard
I'm implementing ELK to controll my servers. What visualizations do you think are basic to create a generic dashboard for iis logs.
There's any kind of market or example's page for kibana dashboards?
Thanks

Inbloo
- 105
- 1
- 11
1
vote
1 answer
Have IIS just log a percentage of requests?
Is there a way to have IIS not log all requests but just a percentage? I ship IIS request logs and I only want a sample of them. I could do this further down in the log processing pipeline (which is what I'm doing now) but was curious if IIS can do…

red888
- 27,709
- 55
- 204
- 392
1
vote
0 answers
IIS log giving 500 error with no description in event viewer
I have my application developed in hybrid technology (asp classic + asp.net). Initially it was hosted on IIS with "Classic" Pipeline mode. I Upgraded Application Pool Pipeline mode from "Classic" to "Integrated" after that unexpected 500 errors…

Muhammad Faisal
- 64
- 8
1
vote
0 answers
IIS Log Details for Dynamic CRM SDK Calls
I have taken IIS logs for CRM OrganizationService for Performance check and I am getting logs like…

Ashish Jain
- 4,667
- 6
- 30
- 35
1
vote
0 answers
Appender for IISLog (HttpResponse)?
Inside an MVC - application I need to write into the IIS-Log. I do this by calling "AppendToLog()" from the HttpResponse:
public static void IIsLog(this HttpResponseBase response, string message, params object [] parameters)
{
if…

Ole Albers
- 8,715
- 10
- 73
- 166
1
vote
5 answers
How to transform IIS logs using Log Parser (or other) within Power Query?
Power Query / Excel 2016 has a great ability to pull data from places like Azure Storage and can even expand blob files into text data rows. But IIS log files aren't trivial to parse (e.g. have header records and comments) so I'd like to use…

Rory
- 40,559
- 52
- 175
- 261
1
vote
0 answers
Detail of IIS Log entry
I see entires in my IIS logs with the below user agent. What does this mean?
Mozilla/5.0+(Windows;+U;+Windows+NT+5.1;+en-US;+rv:1.9.0.3)+Gecko/2008092417+Firefox/3.0.3+[UsableNet+Lift+Mobile]
Specifically, the UsableNet+Lift+Mobile part?

Thomas
- 1,970
- 4
- 28
- 59
1
vote
0 answers
Logging request processing time in IIS 8.0
I've an ASP.NET 4.0 application deployed on IIS 8.0. I want to to log all requests that take time longer than a configured time. Is it possible to do that in IIS 8.0?
PS: I found a similar question here Log Request time in IIS, but it is for IIS…

ptntialunrlsd
- 794
- 8
- 23
1
vote
1 answer
Detect changes in iis logs files
I am running a filesystemwatcher on the "w3svc1" folder, where the iis logs are stored by default. When I go to the adress localhost or anyone of my webapp localhost/xxxxx. The filesystemwatcher does not raise events. I know that there is a delay…

user2443476
- 1,935
- 9
- 37
- 66
1
vote
2 answers
No querystring logged in IIS log on "A potentially dangerous Request.QueryString value detected"
I'm intermittently seeing this exception being thrown:
A potentially dangerous Request.QueryString value detected
However when I look in the IIS logs I can see that the request that failed has no querystring logged against it.
How could this be? …

Justin
- 84,773
- 49
- 224
- 367
1
vote
0 answers
Monioring the performance of asp.net web application using IIS log files
I have IIS log files, I need to findout the errors generated by the asp.net web application which are hosted by IIS 7.
I used Log parser to paarse IIS log files, but I want to find errors such as timeout errors ,session errors and other 500x errors…

Vigneshwarr
- 125
- 1
- 12