I want to create a bandwidth meter for Windows using vb.net, but I cannot seem to find anything in the .net framework for monitoring the amount of data in or out. I want to create this because I cannot find a good one for free, and I think it is something that people might want.
If there is nothing in the .net framework for monitoring this, is there some P/Invoke calls I can make? If so, what are they?
Is this project feasible? I want to try and measure the exact amount of data in and out, from ALL programs and connections if possible.
Thank you for the help!
EDIT: To clarify, while I doubt that there will be something simple like My.Computer.Network.IO
or something like that, I don't really want to make this too complex.
EDIT AGAIN: Perhaps this would be too complicated. If I simply wanted to monitor http activity on port 80, how could I do this without actually disturbing the data?
You need to go down to driver level and monitor your ethernet device and count up the bytes coming and out.
It'll involve P/Invoke I'm pretty sure. Don't think it's that simple...
You could cheat this easily:
- Create a process using cmd.exe
- Call the command `netstat -e 10' (for 10 seconds)
- Pipe the output back to your application as an input stream
- Parse the input stream
- If the user decides to quit the program send a ctrl-c break sequence to the process.
What do you think?
Hope this helps,
Best regards,
Tom.
Here's a couple of possibilities:
- WMI - http://msdn.microsoft.com/en-us/library/aa394340(VS.85).aspx
- Performance Counters /Logs and Alerts - http://msdn.microsoft.com/en-us/library/bb509354(VS.85).aspx
Your best bet is to use performance counters or WMI and do sampling at a frequency that is comfortable for you. IF you are trying to get something similar to the byte counts on the network card properties those counters are in the performance counter set.
If you are trying to also measure all devices (USB, etc) you will probably need to write your own customer drivers to intercept data transfer events.
There are several performance counters that give you basic numbers on throughput on the network interface card. Start by taking a look at them with Perfmon.exe, you'll see their category, name and instance name. Those same numbers are available with the .NET PerformanceCounter class.
Using them to measure bandwidth is a rather tricky, you are more likely to measure the bandwidth of the server you are talking to, combined with the dozen or so routers that pipe the IP message to your machine.