Reputation: 15541
I need some advice on how to measure some statistics with my FTP application. Basically, I have a threaded application that FTPS to several machines which could be local or remote. Some are on the company LAN (Ethernet 100 Mbit/s) and others are contactable via ADSL lines (max bandwidth 1.5 Mbit/s).
What I would like to do is knowing which machines would take a long time to send data to (that is, the ADSL lines) and then delay transferring to them until other FTP transfers have finished.
Upvotes: 0
Views: 80
Reputation:
The only way I know is sending data and measuring how long it takes. It may not be possible to send test data in your case. So you'll have to measure, and remember per host what the transmission speed is. You can try to predict based on the IP adress range.
Upvotes: 1