ahmet alp balkan
ahmet alp balkan

Reputation: 45282

How to code a Download/Upload Speed Monitor in PHP,Python, or Java?

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

Answers (2)

ahmet alp balkan
ahmet alp balkan

Reputation: 45282

JPCAP (a java packet capture library-sniffer) is suitable for this job and I've done it.

Upvotes: 1

The Archetypal Paul
The Archetypal Paul

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

Related Questions