IntelliTrace is a feature of Visual Studio Ultimate that enables application debugging using a historical execution log.
Questions tagged [intellitrace]
127 questions
0
votes
2 answers
How to capture intellitrace event log for a web application which is already running?
I'm using a web application which uses a many dlls. The debugging happens by attaching the aspnet_ws process to Visual Studio. I want to explore the intellitrace feature of VS 2010 and capture the event log. But when i try to attach the process to…

Vaidy
- 1
- 1
0
votes
0 answers
Visual studio Intellitrace Inner Exception
I'm trying to debug an entity framework based application which uses a lot of await/async operations.
When some entity framework exception pops up, the intellitrace helps to find where is the problem, this is easy! The problem is that, the "locals…

Alexandre
- 7,004
- 5
- 54
- 72
0
votes
1 answer
Can IntelliTrace log be used to inspect value of a complex type
Let's say I have a class A that contains a class B which itself contains another class C. Something as follows
class A
{
B b;
}
class B
{
C c;
}
I have a method that takes instance of class A as parameter.
private void MyMethod(A…

jim crown
- 473
- 3
- 11
0
votes
1 answer
IntelliTrace Arguments By Reference
Using IntelliTrace, I'm unable to see the output of a string passed by reference into a method and the result of the method in the same event (or at all).
Method example:
public bool ByReferenceTestMethod(System.ArgumentNullException exception, ref…

Stevoni
- 341
- 7
- 18
0
votes
1 answer
IntelliTrace: Uncaught exception during type initialization
Visual Studio 2015 Enterprise Update 3.
.Net 3.5 SP1, AnyCPU
Today I often get this error for my project:
Microsoft Visual Studio
Process:
D:\projects\vs-2015\sharp_sandbox\sharp_sandbox\bin\Debug\sharp_sandbox.vshost.exe
Automatically…

Andrey Bushman
- 11,712
- 17
- 87
- 182
0
votes
4 answers
Intellitrace fails when debugging Cannot debug some of the code in process w3wp.exe
I've recently upgraded from VS2015 Professional Update 2 to VS2015 Enterprise Update 2. The process was rather buggy.
First I attempted to upgrade directly from Pro Update 2 to Ent Update 1, as that was the media I had. This provided all sorts…

withaK
- 27
- 1
- 7
0
votes
1 answer
Application Insights 2.0 makes IntelliTrace stop working
As soon as I install Application Insights 2.0, my IntelliTrace stops working. I have isolated to Application Insights, 100% sure.
Does anyone else have this problem?

Fernando Silva
- 334
- 6
- 16
0
votes
1 answer
How to retrieve function parameters
I used standalone collector to gather traces from a production system using standalone collector and default collection_plan.ASP.NET.trace.xml plan. When I open the trace file, using Visual Studio 2015, I can see certain excpetions thrown from my…

paul deter
- 857
- 2
- 7
- 20
0
votes
1 answer
Cannot collect trace from standalone collector
When I try to run following from command prompt launched as admininstrator
C:\IntelliTraceCollector\IntelliTraceSC.exe
/cp:"C:\IntelliTraceCollector\collection_plan.ASP.NET.default.xml"
/f:"C:\IntelliTraceLogs\test.itrace" "C:\Program Files
…

paul deter
- 857
- 2
- 7
- 20
0
votes
1 answer
Trace calls to external assembly to create correct unit test
I am linking my application to a 3rd party library. Now I have found a bug within this module and I can even reproduce it in the application. To make an example for the developers of this module I am now doing a unit test but the error does not show…

schoetbi
- 12,009
- 10
- 54
- 72
0
votes
1 answer
Looking to use intellitrace for VS 2015, Which one comes with it?
I would like to use intellitrace to debug. What version of Visual Studio 2015 comes with intellitrace?

ramnz
- 631
- 1
- 6
- 24
0
votes
1 answer
IntellitraceFile throwing strange error
Can someone explain this error? (it showed up after enabling tracing in the collection plan.)
Test method ExecuteTaskTest threw exception:
System.ArgumentException: An item with the same key has already been…

Keynan
- 1,338
- 1
- 10
- 18
0
votes
1 answer
Adding custom IntelliTrace diagnostics events with ProgrammableDataQuery
I have created a couple of Custom DiagnosticEventSpecification for IntelliTrace. This works as expected.
…

Nickolai Nielsen
- 932
- 6
- 19
0
votes
1 answer
How to customize VS intellitrace collectionplan.xml to trace a function inside a nested private class
I'm now using Visual Studio 2015 with Update 1 to debug an app. I customized the collectionplan.xml according to this article http://blog.qetza.net/en/2010/03/08/vs-2010-personnalisation-des-vnements-de-lintellitrace/ to trace my own code. When I…

Robert
- 51
- 4
0
votes
1 answer
How to produce a memory image in Visual Studio
In Visual Studio, is there a way to produce a memory image of a solution? Similar to the Show on Code Map, except the image would keep track of pointers, values, etc.

Blake Winchester
- 1
- 1