Questions tagged [debug-diagnostic-tool]

41 questions
3
votes
2 answers

Unable to find expected objects in VS 2015 memory usage profiler

I have the following simple program which I am trying to use with VS 2015's Diagnostic Tools related to Memory Usage. class Program { static void Main(string[] args) { Console.WriteLine("Begin"); Console.ReadLine(); …
Kiran
  • 56,921
  • 15
  • 176
  • 161
3
votes
0 answers

Does "Debug Diagnostics Tool" Full Dump cause garbage collection or restart process?

So I have a series of ASP.net web apps which are each assigned their own AppPool This results in several instances of w3wp.exe residing in memory. I've been trying to figure out why a couple of them steadily increase their use of RAM over the course…
Rory Becker
  • 15,551
  • 16
  • 69
  • 94
2
votes
0 answers

Is there a way to have DebugDiag2 output a report formatted as text only?

The report produced by DebugDiag2 is formatted as HTML but it does not look possible to read using just a text editor. I recently analyzed a process dump that produced a report that crashes any browser i open it with (IE, Edge, Chrome). Is there a…
yenta
  • 1,332
  • 2
  • 11
  • 25
2
votes
0 answers

Get elapsed time between break point hits without stopping the program execution

I am using Visual Studio "Diagnostic Tools" to get a rough timing analysis on my program. As you know, in VS 2015, the elapsed time between the two break point hits are provided. I would like to know if there is any option that I can set so that…
maskarih
  • 847
  • 10
  • 30
2
votes
1 answer

How to run a .jar inside browser?

I tried to execute a .jar using HTML or PHP. In the first case I wrote the code below: This way doesn't work cause the file…
Ada
  • 93
  • 8
2
votes
2 answers

Monitoring ASP.net pages CPU usage

I'm having some performance issues with a web application. The CPU usage of this application pool can exceed the 90%. The normal usage I noticed is 30%. I used Debug Diagnostic tool to monitor the CPU usage of this application and I figured out that…
Aladdin Gallas
  • 701
  • 2
  • 12
  • 36
1
vote
0 answers

Error while reading dump file in DebugDiag Analysis

I have installed DebugDiag Tool to monitor high CPU usage at the windows server. https://www.microsoft.com/en-us/download/details.aspx?id=58210 I am getting following error while analysing dump files generated by DebugDiag Collection tool. No…
Nofil Asad
  • 31
  • 5
1
vote
1 answer

Is there any way to get a "function list" in the new VS2015 Diagnostic Tools like there was in the old (slow) Instrumentation diagnostics?

I liked the function list because I could see which functions were using the most CPU overall, but instrumentation is slow. Is there any way I can get that feature in the new diagnostic tools, or at least export a report so I can analyze it as…
1
vote
0 answers

Dump Assembly Attributes in DebugDiag 2.0 Custom Rule

I am trying to create a custom dump analysis rule in DebugDiag 2.0. Our code is a managed C# application with many assemblies. Each assembly has its own custom attributes that contain revision information about the source files compiled to create…
1
vote
1 answer

IntelliTrace events window in VS 2015 is.. where?

OK, so I've just installed new shiny VS 2015 and started to regret about that. There's a new feature called Diagnostic Tools where you can observe memory and CPU usage, also this window shows IntelliTrace events. While the feature is nice to…
javros
  • 825
  • 10
  • 31
1
vote
0 answers

Memory Leak - ObservableCollection - C#

The subject "memory leaks" It's not an easy subject, and not always is possible to realize when it comes to hum memory leak. Not yet been an analysis (Diagnostic Tool VS2015) do to my project and found that there are memory leaks, specifically a…
1
vote
1 answer

LoggingSession/LoggingChannel (Windows.Foundation.Diagnostics)

I use the Microsoft Logging Sample to generate an ETL file. This API is great for logging... except that i can't figure a way to read these logs ! Using WPA, ETViewer... I can see the events but not the log messages. Maybe I have to load some PDB…
Nicolas Voron
  • 2,916
  • 1
  • 21
  • 35
0
votes
0 answers

Process memory and the memory snapshot are not equal

I have a simple sample that has three buttons. Investigating the sample with the diagnostic tool in the Visual Studio shows that, the process memory and the memory snapshot results are not equal. Find the below screenshots with captions to…
0
votes
1 answer

Trying to find memory leak if it exists for a GUI application

I have a very simple GUI application that runs HIL tests for a system. I select a test from a combo box, then click run. This starts the test and runs for 27 minutes. During this time, the CPU is capturing data and storing the data in String…
0
votes
0 answers

How to know the OperationContract was called by request using debug diagnostic tool

I have been monitoring the working process in IIS server, in current requests in application pools it show request that taking time elapsed (more than 100sec). For example url Service/RequestService time elapse 100000 because the url above is url of…
Weanich Sanchol
  • 144
  • 1
  • 12