Dave Sumter
Dave Sumter

Reputation: 2985

capture/trace requests to a certain url - iis

Is there a way to capture/trace/log all GET's or POST's to a certain url on IIS..?

I'd like capture calls to certain url for a few minutes for analysis. Be able to look into the headers, payloads, IP, etc..

I can write C# to do it, but was wondering if there's a diagnostics tool to do it already..?

Thanks

Upvotes: 2

Views: 785

Answers (1)

Alex Aza
Alex Aza

Reputation: 78457

IIS captures all requests by default.
You can find logs at C:\inetpub\logs\LogFiles\W3SVC1

You can parse the logs to filter out the URLs you are interested in.

Upvotes: 3

Related Questions