Is there any way to detect packet loss with the help of performance counters or am I better of using a 3rd-party tool? What tools would you recommend?
+2
A:
We've always found tools based on the PCAP library to be useful. In particular Wireshark (www.wireshark.org) is great for getting a network traffic trace and it will highlight problems such as packet loss in its output.
Big GH
2008-11-07 00:26:54
+1
A:
Are you trying to track the total number of TCP retries because of packet losses? If so, then yes, Performance Counters will work fine.
Rizwan Kassim
2008-11-07 01:51:50
A:
netstat -s will show you the total count of retransmissions. Wireshark can capture traffic and got an "expert info" (under Analyze) that will tell you about obious network related errors.
Helge Olav Helgesen
2009-12-02 13:37:27