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
0
votes
0 answers

How do I profile a WaitHandle?

I have the following code to index documents into ElasticSearch and want to see what takes the most time. private void DoIndex(IEnumerable documents, LanguageCode languageCode, ElasticSettings elasticSettings, string indexName,…
Benjamin Diele
  • 1,177
  • 1
  • 10
  • 26
0
votes
1 answer

DotTrace, Is it possible to modify code on MVC5 Web App during profile session and rerun....?

I am using DotTrace 2018.3 to profile a MVC5 Web App on IIS Express, within Visual Studio 2017. Often I start profiling using "Sampling", spot the bottleneck, and then want to make a code correction, and then see the effect. At the moment it seems I…
SamJolly
  • 6,347
  • 13
  • 59
  • 125
0
votes
1 answer

Cannot see Get Snapshot button in JetBrains/DotTrace Profiler Controller, after clicking detach in previous session?

I am using DotTrace 2018.3 from JetBrains Ultimate. I am trying to profile a ASP.NET 4.7 MVC 5 web application from within VS2017. I have noticed that sometimes when I start a profile session ie via : Resharper > Profile > Run StartUp Configuration…
SamJolly
  • 6,347
  • 13
  • 59
  • 125
0
votes
1 answer

DotTrace plugin to TeamCity - process filter is not excluding nunit3-console.exe

I'd like to ask for some help about setting up the DotTrace plugin for one of our TeamCity builds - so far I've followed the instructions here, and got a build that sometimes…
Kevin C
  • 324
  • 1
  • 14
0
votes
1 answer

AddressFilter mismatch at the EndpointDispatcher during dottrace remote debugger connection

Trying to connect to remote agent via load balancer gives error: The message with To 'net.tcp/address/RemoteAgent' cannot be processed at the receiver, due to an AddressFilter mismatch at the EndpointDispatcher. Check that the sender and receiver's…
Srinivas
  • 432
  • 5
  • 22
0
votes
2 answers

DotTrace on Remoting Proxy

I have a WebAPI project running on local machine that is calling server side codes via remote proxy (local machine) on service layer. The profiler was able to trace the hotspot but up to service layer only and the hotspot is all pointing to methods…
0
votes
1 answer

How is threads view useful in performance/cpu profilers?

After I profile an ASP.NET Core application, JetBrain's dotTrace tool by default opens up the All Calls tab and shows a list of threads. Could you please clarify some of my questions? During my profiling session, I sent around 100K requests to the…
aspnetuser
  • 121
  • 7
0
votes
1 answer

.net program tracing line by line at run time

I am working on a project requirement to trace the running program line by line. These programs/ web applications/windows services were developed long time back, pdb files are available. I was looking at CLRprofilercallback but it is in C++. Are…
sss
  • 21
  • 1
  • 5
0
votes
1 answer

Failed to start dotTrace profiling on Windows Server 2012 R2

We are trying to run dotTrace on production server but it's failing. We tried after reboot also but didn't work. dotTrace: https://www.jetbrains.com/profiler/ OS: Windows Server 2012 R2 System type: 64 bit This is IIS application and we are trying…
Sukhjeevan
  • 3,074
  • 9
  • 46
  • 89
0
votes
1 answer

How to use dotTrace Performance Profiling while launching the WPF application it self

Am working on WPF application. It is taking lot of time to launch the application so one of my client raised performance issue. To solve/identify the issue what is the best solution ? and am using dotTrace profiler to identify the issue but while…
0
votes
1 answer

.NET memory consumption with dotTrace

I have a .net process running with 110 MB private bytes in memory/ that the .net memory consumption is: 10.03 MB used 25.72 MB total - (so why is the total bigger than the memory used?) the total process memory consumption is 110 MB. so where do…
Tal Avissar
  • 10,088
  • 6
  • 45
  • 70
0
votes
2 answers

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 scarce though it is mentioned the command line…
Don
  • 1
  • 2
0
votes
2 answers

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... dotTrace" menu item should be visible, but it is…
Igor Brejc
  • 18,714
  • 13
  • 76
  • 95
0
votes
0 answers

VS 13/15 diagnostics vs DotTrace

Hey whats the difference between those two ? I currently tried to Google that but with no progress. Is DotTrace better than built-in diagnostic ? If yes so for what we are paying?
0
votes
0 answers

dotTrace creates overhead

I was profiling a big application programmed in.Net C# with dotTrace sampling mode and realized that there was an important difference of times between stopwatch measurement vs. dotTrace Sampling profiling. For example, if I measure only with the…