AngryHacker
AngryHacker

Reputation: 61646

How to see what types of .NET Exceptions are happening on a live system?

Looking at the Perfmon on a live system that's running a .NET WebForms site, it shows that the worker process (w3wp) is averaging about 150 thrown exceptions per second.

Is there a way to see what types of exceptions these are?

Upvotes: 0

Views: 88

Answers (1)

Mr Slim
Mr Slim

Reputation: 1458

  1. Check the EventLog for errors. I am sure you have done that already, but just in case.
  2. You mentioned this is a live site, but if you have the ability to, using a non intrusive exception catcher such as Elmah may provide some additional insights. If you do go this route, be sure to address the "AllowRemoteAccess" issue.

Upvotes: 2

Related Questions