I am running perfmon and have some counters specified for WebDev.WebServer40 so that I can get the metrics for my web service that is currently hosted locally in VS. One of the counters I have is # of Excepts Thrown. When I first start the service, it automatically jumps to 2 or 3. When I make the very first request to the service, it jumps to 7. Any subsequent requests don't cause the number to increase at all.
We are logging exceptions in code, but I am not seeing any in the logs. The service isn't crashing and the requests return the correct data.
Is there somewhere else I can look to see what those exceptions are? The only other place I have looked is in the Output window in Visual Studio (since I am debugging it).
Is it expected that there will be some framework exceptions on startup, or should I be able to get that number down to 0?
Thanks