.NET Profiler for Azure?

前端 未结 6 1982
醉酒成梦
醉酒成梦 2021-02-05 12:22

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.

6条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-05 12:54

    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).

提交回复
热议问题