vote up 6 vote down star
3

I'd like to find out which processes are using my network. This is quite easy in Linux, but I'm stumped as to how to do this in Windows.

Essentially, I'd like, for each process, to know how many bytes it has read/written to the network over a time period. If I could know IP addresses/port numbers, etc., that would be awesome.

Any pointers? Windows Vista/Windows 2008 seem to be able to do this in Resource Monitor. How do they do it? What's the overhead?

I want to do this in my own code, so utilities (TCPView, PerfMon) aren't useful to me. I'd also like to have separate disk and network I/O counters, so the default performance counters aren't enough.

Windows XP, 2003, Vista, 2008 and 7 preferred. Win32 or COM OK.

flag

69% accept rate
From the answers so far, it looks like people think you're looking for a utility to do this with. Are you looking for a tool, or looking to program this yourself in your own app? I suggest clarifying, and letting us know what programming environment you're using if appropriate, etc. – Jay Mar 10 at 14:34

3 Answers

vote up 2 vote down check

I wrote a solution to this.

A TDI filter driver to collect the stats, a service which communicates with the driver and gets the stats once per second. Since the filter is at the TDI layer, I know which sockets belong to which applications. The service is a server for this data, offering it via shared memory to arbitrary third party clients via an API I wrote. I wrote a GUI and a command line client.

You can also bandwidth shape sends (per interface and/or application and/or socket) and watch data passing over a socket in real time, in a window.

link|flag
where's your solution ???? – Mustafa A. Jabbar Oct 22 at 8:51
I know! I too wondered why I got "accepted solution". – Blank Xavier Oct 22 at 15:49
I'll take your word that you looked at this problem and decided that "write a custom TDI filter driver" was the best solution. I assumed that if you have some code you could have published, you would have done, and I'm not one of those people that says "show m3 the c0deZ!". Pointing me in the right direction is plenty, thanks. – Roger Lipscombe Nov 16 at 16:32
vote up 1 vote down

You will need to use the IPHelper API.

Here is a good article detailing its use from .NET: http://www.codeproject.com/KB/IP/iphlpapi.aspx

Enjoy.

link|flag
That doesn't appear to contain per-process statistics. – Roger Lipscombe Mar 11 at 10:23
No, but it does link a process to a network connection. It's one peice of the puzzle, dummy. – Boo Mar 11 at 23:10
Some details would be appreciated. – Roger Lipscombe Mar 30 at 8:10
vote up 0 vote down

You'd be amazed at the stuff you can get out of Perfmon.

Bring it up, right click in the graph area, and select "Add Counters...". Surf around and see if anything does what you want.

From my reading of what you are asking, I'd select "Process" as my performance object, and start selecting likely looking culprits from the list of processes, with perhaps "IO Data Bytes/sec" counters being watched. If you mess around in there you may find something more useful to you to look at though.

Edit: I'm noticing that it says "Programatically" (did it say that yesterday?)

Well, you can actually get pretty much all the information Perfmon gets from the registry with the key HKEY_PERFORMANCE_DATA. I think that's what Perfmon enumerates and uses, so you should be able to poke around with perfmon to see what's there and works for you, then write code to read it out in realtime in your own program.

One of the really nice things about this method, is that it even works remotely, if you have the right privs.

link|flag
-1: IO bytes in perfom rolls up disk and network IO together. – Patrick Cuff Mar 10 at 15:28
That is true. However, if you aren't running anything that has any reason to do a lot of disk I/O, it should do fairly well for you. – T.E.D. Mar 11 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.