How to view network traffic in Visual Studio

According to this blog post, there is something called the Visual Studio Network Tool in performance and diagnostics, but I cannot find it. If I start a new performance profiling session, I have all kinds of tools (CPU, Memory), but no network. Tried in Visual Studio 2015 and 2017.

+4
source share
1 answer

To open the Network tool, open the Diagnostic Tools window in Visual Studio 2015 and in the Debug menu, select Start Diagnostic Tools Without Debugging (or just press Alt + F2).

enter image description here

On the diagnostics page, select "Analysis target" (your launch project is pre-selected as the analysis target, but instead you can target the installed or running application), then select "Network" and click "Start". Alternatively, since this tool is part of the Performance and Diagnostics hub, you can also select additional tools to start a combined session.

enter image description here

https://blogs.msdn.microsoft.com/visualstudio/2015/05/04/introducing-visual-studios-network-tool/

0

Source: https://habr.com/ru/post/1666982/


All Articles