Reputation: 45282
I have to code a up/download speed monitor. It will obtain the current download and upload transfer speed of the computer which it has been installed and post it to another server periodically. c But I don't have an idea about how to catch instant transfer rates of a computer. As you know some of network monitoring programs can trace it but I could not find anything written in PHP, Python or Java?
Upvotes: 3
Views: 2658
Reputation: 45282
JPCAP (a java packet capture library-sniffer) is suitable for this job and I've done it.
Upvotes: 1
Reputation: 41769
You don't say which operating system you're interested in.
A quick google turned up this: http://excess.org/speedometer/
"Measure and display the rate of data across a network connection or data being stored in a file"
Opensource, written in Python
Upvotes: 3