dotTrace is a family of performance and memory profilers for .NET applications.
0
votes
1answer
31 views
Can JetBrain's DotTrace Performance Pro 5.3 be used again DiscountASP servers? Anyone with experience with this?
The new DotTrace Performance Pro V5.3 now can connect to remote processes over HTTP, so I should be able to use it against my sites hosted on DiscountASP. Does anyone have experience of this. ...
0
votes
1answer
50 views
Memory Leak in VB.Net Application, Object held open by Grid?
I have a large, complex Windows Forms app written in VB.Net. Users are experiencing some memory issues and using JetBrains dotTrace Profiler to try and clear a few of these up.
There is still ...
0
votes
1answer
63 views
Can you list argument values in a call to dotTrace performance
I have profiled my app in ReSharper and I have one really slow method:
.
Is there any way I can get a list of arguments passed to that function? I tried line by line profiling but no dice. Is there ...
0
votes
1answer
149 views
Memory profiling
I'm using dotTrace Memory to trying to find out why an application leaks memory.
The problem is that the memory usage shown in the snapshot doesn't get anywhere near the memory which is used (private ...
1
vote
1answer
47 views
Profiling Excel addins with dotTrace
I am trying to profile Excel addins written in C# with dotTrace.
I am able to connect to excel and profile my code when I select "attach to process" in dottrace, but when I want to use the ...
2
votes
0answers
79 views
Strange delays in ThreadStart_Context in .NET causing performance issues
I've written a relatively simple console utility that accesses the ClosedXML library, in order to produce an Excel spreadsheet. Nothing mind-blowing, and it should run really fast. However, when I ...
0
votes
0answers
163 views
How to profile WCF service in a 3 tier web application
How can I do this? I have tried multiple combination, and at all times the profile trace in VS Studio and even dot trace is just showing gibberish (Just shows me the dll used, with no method info - ...
1
vote
1answer
55 views
What does ClassName.ctor>b__11 stand for in dotTrace Profiler?
While using dotTrace profiler I am getting a lots of calls to NamespaceName.ClassName.ctor>b__11
(When I used Equatec profiler on my application I got similar results with the mysterious function ...
0
votes
2answers
97 views
Dottrace profiler buttons disabled for remote asp.net application profiling
I am using remote computer debugging for my asp.net application via dottrace .
I have set the options as :
but when I click Run a new modal is opened but with disabled buttons:
I am wondering why ...
0
votes
0answers
200 views
dotTrace and performance profiling?
I recently re-wrote my file format writing library. I realized my code was messy, made everything way too complicated, and was generally just hard to keep maintained.
So my new library is so much ...
1
vote
1answer
72 views
Tracing worst-case execution times [closed]
I have a piece of code (.NET4 C#) that should run in tight loop - other threads asynchronously serve information to the thread with this loop and process it's commands. The code is in average fast ...
4
votes
1answer
1k views
Why does dotTRACE Memory always say “Connecting”?
I'm trying to profile the memory usage of an IIS hosted WCF web application using JetBrains dotTRACE Memory.
In the past, I've successfully used dotTRACE Performance on this same web application and ...
1
vote
0answers
133 views
Performance Web Test + dotTrace
I've tried to figure out if there is a way to tell dotTrace to perform a profile analysis based on a performance test project.
Or run this test while dotTrace is monitoring the project (running in a ...
2
votes
1answer
277 views
dotTrace - what profiling settings should I use for my desktop app?
When using dotTrace, I have to pick a profiling mode and a time measurement method. Profiling modes are:
Tracing
Line-by-line
Sampling
And time measurement methods are:
Wall time (performance ...
0
votes
2answers
131 views
dottrace and optimizing method with indexof
public static string[] GetStringInBetween(string strBegin, string strEnd, string strSource, bool includeBegin, bool includeEnd)
{
string[] result = { "", "" };
int ...
10
votes
2answers
875 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 ...
2
votes
0answers
188 views
Why does the dotTrace profiler cause my AspDotNetStorefront website to throw a server error? [closed]
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. ...
3
votes
2answers
291 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
1answer
229 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: ...
5
votes
2answers
599 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
206 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 ...
0
votes
2answers
193 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 ...
1
vote
2answers
397 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 ...
0
votes
2answers
259 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... ...
2
votes
1answer
163 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
532 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
1answer
302 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 ...
0
votes
0answers
140 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. ...
1
vote
1answer
206 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%)
...
0
votes
1answer
98 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
191 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
373 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 ...
3
votes
2answers
285 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 ...
1
vote
0answers
236 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: ...
2
votes
3answers
1k 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 ...
3
votes
1answer
686 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 ...
0
votes
4answers
552 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 ...
3
votes
2answers
435 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 ...