8

Do we have any alternative for intellitrace for visual studio 2012 professional version. It looks like Intellitrace is only available for Visual Studio 2012 Ultimate version.

Thanks

Prince Ashitaka
  • 8,623
  • 12
  • 48
  • 71
  • I just wanted to confirm that IntelliTrace is available only with Visual Studio Ultimate. – Colin Thomsen Sep 12 '13 at 22:43
  • 1
    just as a sidenote: what you are searching for is called a 'record-replay' reverse debugger. There are also 'real' reverse debuggers, but to my knowledge none for C#/Visual Studio. More informations over here -> http://programmers.stackexchange.com/questions/181527/why-is-reverse-debugging-rarely-used – Steffen Winkler Dec 05 '14 at 12:35

1 Answers1

3

A few alternatives that I've used:

PerfView

Just amazing.. if the UI doesn't put you off, and you don't mind waiting an extra few minutes for the traces to be viewable. It contains the most used features of intellitrace: Exception Stacks, Threads, Processes, File Access, Registery Access, Network Access.

There are a few more ETW Tracers and viewers: Microsoft Message Analyzer, Windows Performance Analyzer, ....

Stackify Prefix or Glimpse

Very good for debugging problems with IIS. Runs on the server end as an IIS Http handler. Most used feature from these are: Application execution path, Exception stacks, request/response cycle with raw data.

Community
  • 1
  • 1
Frison Alexander
  • 3,228
  • 2
  • 29
  • 32