Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wireshark - How do I filter just traffic from visual studio?

Tags:

wireshark

I am trying to use wireshark to discover why visual studio is not downloading debug symbols.

1) How do I determine which of the addresses that I see in the wireshark capture is that of visual studio?

2) How do I filter so I just see traffic froma and to Visual Studio in the capture pane?

My related question on trying to discover why visual studio is not downloading debug symbols is here - Debug Symbols not loading

like image 444
Duncan Gravill Avatar asked Mar 20 '12 16:03

Duncan Gravill


1 Answers

Process Monitor is a nice lightweight tool for seeing which sockets a process is using. You can filter the PID or the .exe name (e.g. devenv.exe)

If you run Wireshark at the same time you can then filter on the right sockets to do your performance analysis.

enter image description here

like image 129
rupello Avatar answered Oct 13 '22 18:10

rupello