Tagged Questions
dotTrace is a family of performance and memory profilers for .NET applications.
10
votes
1answer
212 views
C# Web Application Tuning : PerformWaitCallback
I am using dotTrace Performance 4.5 to profile a .NET 3.5 C# web application. When I record one "user request" (load of page), I see 11 threads with approximately the same timing, 7644 ms.
Most of ...
3
votes
2answers
76 views
dotTrace: is there a teamcity plugin?
I'm investigating whether we can run performance testing with code check ins to TeamCity / TFS..
Does anyone know whether this is possible or not? I can't find anything on it :(
Many thanks,
James
3
votes
2answers
189 views
The VS 2010 Ultimate vs 3rd party utilities
From Software worth buying, Open source C# projects that have high code quality? and .NET "must-have" development tools, I found some software tools are multiple recommended such as ...
3
votes
3answers
142 views
How can a thread use less than 100% wall time?
When profiling an application (using dotTrace), I noticed a very strange thing. I used "wall time" measurement, which should in theory mean that all threads would run for a same amount of time.
But ...
3
votes
2answers
213 views
Profiling real time = 45 secs, but thread time = 0.387 secs what could cause this discrepancy?
So, our hosting provider recently moved our test server from one environment to another, virtualized environment. After the move some things on the test environment got extremely slow.
For example ...
3
votes
1answer
486 views
.net dottrace memory profiling usage questions - Filter Circular References
I use DotTrace as memory profiler. I wonder how it can filter circular incoming references?
As for the scenarios that I want to see who the hell holds reference to my object and keep it alive, those ...
3
votes
2answers
331 views
How can I profile the performance of a .NET app already deployed to a customer?
I have several customers where my WinForms app does not perform as well as at other customers. I use JetBrain's dotTrace here in the office, but that does not help me find bottlenecks on the machines ...
2
votes
1answer
97 views
How Come when I sampling profile a program and it actually runs faster than not profiling?
I use DotTrace 4.5 performance
time in release mode:
2400000000
Basic: 00:00:08.8051103
2400000000
Five: 00:00:09.1561338
2400000000
Overload: 00:00:16.3740938
2400000000
IListtoFive: ...
2
votes
1answer
87 views
What's the meaning of dotTrace's numbers in Line-By-Line profiling?
What do those numbers mean exactly? Times the line was hit? Microseconds per invocation? Or what?
Also, what do the 'progress-bars' behind the numbers mean? They aren't even proportional to the ...
2
votes
1answer
318 views
Detecting W3WP CPU issues using jetBrains dotTrace
Our W3WP process on our production server is constantly high. It doesn't max out at 100% but jumps up into the 90%s a fair bit. To help look into this I profiled the live aplication using JetBrains ...
2
votes
3answers
654 views
JetBrains dotTrace, is it possible to profile source code line by line? else I need another tool
I am using JetBrains dotTrace, I've profiled my app which is entirely CPU bound. But the results as you walk down the tree don't sum to the level above in the tree, I only see method calls not the ...
1
vote
0answers
85 views
Why does the dotTrace profiler cause my AspDotNetStorefront website to throw a server error?
Our company has an ASP.NET ecommerce site based on AspDotNetStorefront which has been in production for about six months. We are trying to profile it with dotTrace on my development machine. ...
1
vote
2answers
206 views
How to profile unit tests with MSTest using dotTrace 4.0, ReSharper 5.1 and VS2008?
I am trying to profile a single unit test (the test itself passes) using dotTrace 4.0.
It seems that dotTrace profiles Resharper's test runner instead of profiling the test itself.
I could find an ...
1
vote
1answer
135 views
What does dotTrace Performance Profiler mean by [Garbage collection]?
What does [Garbage collection] mean in this pic? And the "20 calls" thing?
I mean, how can I figure out why GC took so long? Was it collecting a lot of small objects? A single big one? Any hints as ...
1
vote
1answer
95 views
Profiling help in asp.net
I am building a site using WebFormsMvp and Entity Framework 4.
The site is a bit slow and when i profile in dotTrace these three methods take 75% of the time. (My first method takes about 3%)
...
1
vote
0answers
161 views
Using dotTrace with a 2005 web app
I am trying to run dotTrace 3.1 against a 2005 project using the ASP.NET Development Server option.
The settings I am using are:
ASP.NET Development Server - checked
Path to web-server root: ...
0
votes
2answers
44 views
dottrace and optimizing method with indexof
public static string[] GetStringInBetween(string strBegin, string strEnd, string strSource, bool includeBegin, bool includeEnd)
{
string[] result = { "", "" };
int ...
0
votes
1answer
111 views
Is it possible to use dotTrace profiler from command line?
I have to automate our build/integration process and an important part of it are two reports generated by dotTrace profiler. At the moment these reports are done manually. The documentation is very ...
0
votes
2answers
182 views
dotTrace & TestDriven.NET: profiling tests
I've just installed the latest dotTrace (v4.0, evaluation) and I'm trying to profile the code by running tests using TestDriven.NET. From what I've googled out, this should be possible: "Test With... ...
0
votes
0answers
91 views
How to find cpu hogs in a (monorails) web application
My web application is pretty ok in terms of speed, when I develop it, but as soon as I have higher load, cpu usage goes up to 100%, the ventilators spin up considerably and it is impossible to deploy. ...
0
votes
1answer
56 views
Is it possible to use dotTrace within a virual machine?
I've been trying to run dotTrace 3.1 on my Windows 7 development machine. However, it turns out that dotTrace 3.1 dont work on Windows 7 properly. I've been in a discussion with JetBrains regarding ...
0
votes
1answer
126 views
Dottrace Dead vs. Garbage
After reading the dottrace documentation I realized that:
Dead objects are objects deleted before the end point of the snapshot.
Garbage objects are objects allocated after the starting point and ...
0
votes
1answer
290 views
Resharper 4.5 and dotTrace 3.1 integration problem
I am not able to get Resharper profile a unit test, although I have dotTrace installed on my machine. Actually, the dotTrace button in VisualStudio is also greyed out.
the VisualStudio AddIns menu ...
0
votes
4answers
466 views
JavaScript Profiler like JetBrains dotTrace?
I'm a big fan of dotTrace for my web application and I wanted to find a solid javascript profiler that functions about the same way. I've looked around and can't seem to find a JavaScript profiler ...