|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Exception profiling?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! 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. Show quote "Anna Troiken" <anna.troiken@nospamiam.com> wrote in message news:ed3iXkV8GHA.4012@TK2MSFTNGP04.phx.gbl... >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! > |
|||||||||||||||||||||||