Does anyone know of a .NET profiler which works with Azure to figure out code bottlenecks.
I have tried to integrate dotTrace profiler - but haven\'t had any success.
Our C# Profiler should be able to do this.
It instruments your source code; you compile the application and include the probe data dump code as an extra .cs file. We supply this with a default that writes the data to the "local file system", but you can completely replace this with code that writes the probe data to an arbitrary place, so you can control where the probe data goes completely (pick a place on your Azure VM, or send it to your corporate machine, or whatever). You can display the profile data anywhere (e.g., your desktop machine).