Reputation: 833
I would like to determine the network usage of my application. It uses various methods for data transfer (web services, net.tcp WCF contracts, P2P contracts) so I guess I'm interested in the statistics for the running process. Something like uTorrent displays for it's total transfer rates.
Upvotes: 0
Views: 1256
Reputation: 117360
Performance monitors will provide you with the information you require at process level.
Upvotes: 0
Reputation: 32727
Wireshark is a very powerful network analysis tool. Is does more than you are asking for as it allows packet inspection of everything passing your network card.
However, it does have some nice analysis tools so you can capture the network traffic from your application and look at its IO profile over time, filter by IP address or protocol, save snapshots, etc.
Upvotes: 1