Questions tagged [dottrace]

dotTrace is a commercial performance profiler for .NET and .NET Core applications.

dotTrace is a commercial performance profiler for .NET and .NET Core applications. See https://www.jetbrains.com/profiler/

105 questions
1
vote
4 answers

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 like that. Anyone know of a Javascript profiler…
Steven Rogers
  • 1,123
  • 3
  • 16
  • 27
1
vote
2 answers

Attach the DotTrace Performance profiler with Visual Studio Load Testing

Is there, Any way I can attach the DotTrace performance profiler with Visual studio Load testing project. I am checking the load testing of the ASP.NET Web Application. I am trying to create stress test and trying to do more analysis. I am just…
Samaritan_Learner
  • 547
  • 1
  • 4
  • 26
1
vote
1 answer

DotTrace, Is it possible to change Profiling type ie from Sampling to Tracing without killing profiling session?

I am using DotTrace 2018.3 to profile a MVC5 Web App on IIS Express, within Visual Studio 2017. I start by profile using the "Sampling" profile Type. Is it possible to change the profile type to "Tracing" or "Line-by-Line" without stopping and…
SamJolly
  • 6,347
  • 13
  • 59
  • 125
1
vote
1 answer

DotTrace no clear big amount of user code execution time

For my work I used DotTrace to analyze slowness one of our cliënts experiences in our WPF desktop application. I used it before to do this which resulted in the conclusion that the DataBase calls where slow which we could then find a solution…
1
vote
1 answer

Dot Trace show waiting for CPU while excuting multiple ASP.NET MVC actions

I am currently trying to improve the performance of my Asp.Net Application. During this I have found out that when I call the same action multiple time or different action within the same controller through ajax call, it takes the unequal amount of…
1
vote
1 answer

How to exclude methods from code profiling

I am executing code profiling with dotTrace, and I would like to be able to exclude specific methods from the code profiling - namely the ones that call external services and whose performance I do not control. Is there a way to do this? I am trying…
Maria P.
  • 21
  • 2
1
vote
1 answer

How to know if I have to do memory profiling too?

I currently do CPU sampling of an ASP.NET Core application where I send huge number of requests(> 500K) to it. I see that the peak working set of the application is around ~300 MB which in my opinion is not huge considering the number of requests…
aspnetuser
  • 121
  • 7
1
vote
1 answer

The best way to find out wether some threads are blocked using performance profiler?

I am using dotTrace 2017 form jetBrains. My goal is to improve performance of some WPF components on the page. It seems that typical improvements like simplifying Visual Tree, freezing IFreezables, avoiding resources duplicatons and some more does…
52heartz
  • 11
  • 4
1
vote
1 answer

dot trace profile, why is my in memory fetch being flagged as slow

How would i improve this? the profile is suggesting that fetching data from a list is slow public List Rows { get; set; } public RowDataDto GetRow(int rowNdx) { var row = Rows.SingleOrDefault(x => x.LineNumber == rowNdx); …
Seabizkit
  • 2,417
  • 2
  • 15
  • 32
1
vote
1 answer

w3wp high memory usage from one day to another

We have one .NET webapi application (with a service autostart provider). The application is built by our buildserver, and the output is deployed to multiple servers and requests to the application is routed through a loadbalancer. The site has been…
jonnep
  • 285
  • 3
  • 17
1
vote
2 answers

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 answer from JetBrains dev team regarding this issue…
Evren Kuzucuoglu
  • 3,781
  • 28
  • 51
1
vote
1 answer

How to figure out what's been jitted at warmup?

.NET applications, especially ASP.NET applications, can have an annoyingly long warmup time in part due to jitting. I recently tried dottrace to profile such a warmup and it tells me how much time indeed goes to jitting. Now I wonder: How can I tell…
John
  • 6,693
  • 3
  • 51
  • 90
1
vote
1 answer

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…
ullmark
  • 2,469
  • 1
  • 19
  • 28
1
vote
1 answer

Configure DotTrace profiling VSTest on TeamCity

DotTrace can be used to profile tests on TeamCity. But this example works with NUnit, while my tests are written in Visual Studio Tests. When running my tests I use the build-in test engine VSTest, no such option is available for the DotTrace…
MrFox
  • 4,852
  • 7
  • 45
  • 81
1
vote
1 answer

JetBrains DotTrace Remote Profiling on Azure

New to profiling, I found JetBrains DotTrace as a recommendation by lot of developers. Started testing and ran successfully on Local Machine. The problem I am facing right now is I am unable to use this for Remote Machine that is hosted on Windows…
Jitender Sharma
  • 119
  • 3
  • 13