Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

intellitrace standalone recorder

I know that Test Case Management app silently records intellitrace data dump files (http://blogs.msdn.com/jennifer/archive/2008/12/05/visual-studio-team-system-vsts-2010-making-testing-easier.aspx)

I was curious if there is a standalone version that allows to record intellitrace logs (e.g. something that would sit in the tray window).

like image 991
Lenik Avatar asked Dec 23 '22 07:12

Lenik


2 Answers

VSTraceLog.exe under "Microsoft Visual Studio 10.0\Team Tools\TraceDebugger Tools" could be what you are looking for.

VSTraceLog.exe /? to get the different options.

A simple example: VSTracelog.exe launch /cp:CollectionPlan.xml /f:logfilename.tdlog TheExecutableToLog.exe

You'll want to copy the file "Microsoft Visual Studio 10.0\Team Tools\TraceDebugger Tools\en\CollectionPlan.xml" to a known location and modify it. Open the XML file and find "DiagnosticEventInstrumentation" set the enabled attribute to true. Optionally you can enable "TraceInstrumentation" as well. Enabling TraceInstrumentation would be like enabling Tools->Options->IntelliTrace->events and call information.

like image 161
Evan Avatar answered Feb 08 '23 06:02

Evan


With Visual Studio 2012 there is a fully supported standalone version available. http://www.microsoft.com/en-us/download/details.aspx?id=29036

like image 37
Larry Guger Avatar answered Feb 08 '23 06:02

Larry Guger