Exception profiling?

A

Anna Troiken

I need to be able to see what exceptions are being raised by an ASP.NET
application. I can see from perfmon that our ASP.NET app is throwing
hundreds, if not thousands, of exceptions per second but very little is
being logged. So what I'd like to do is run a profiler and see exactly what
exceptions are being raised and where they are being raised.

I've seen several profilers, but all seem to be just heap and/or memory
profilers. I haven't found one that will show me exceptions. Does such a
tool exist? I know that there is a Profiler API, but I'd rather not dive
into writing my own for this one project.

Thanks in advance!
 
D

David Levine

Do you have the source code and can you attach a debugger to it? If so, then
you can attach to it and configure it to break when an exception is thrown.
That would be the easiest way.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top