Reputation: 5144
I got a problem with a system running on ASP.NET 1.1. It's a topic right now, but actually it's a recurring issue: Sometimes, the system will become extremely slow, and I wonder if there's a tool to find out what's going on. I know that sounds vague, but that's exactly what my problem is about.
The thing is, I can time of course my scripts as soon as the page has started loading. However, the issues seem to take place before the page code starts - the delay is in the start of processing the page. This renders me blind with respect to coding anything to detect what's going on.
So, can someone help me out with an idea of how to track system resources independently of page calls being served? As I'm writing this, I realize I don't even know which resources I'm looking for exactly, so any info on that would be great, too!
Some background info:
Upvotes: 0
Views: 57
Reputation: 161773
There are tools for profiling ASP.NET applications, however, I doubt they still support .NET 1.1. See Profiling tools for .NET for a list - maybe one of them still has a version that supports .NET 1.1.
Upvotes: 1