Mobile app version of vmapp.org
Login or Join
Sarah324

: How to test the speed of my server inet connection? The connection speed our webapp is showing (from my office) is much slower than my connection speed to a SpeedTest.net site in the same

@Sarah324

Posted in: #Performance #Webserver

The connection speed our webapp is showing (from my office) is much slower than my connection speed to a SpeedTest.net site in the same city.

I can test my internet using SpeedTest.net to Houston (where our server is): 37 Mb/s
And we have a built in test in our app which shows 3.5 Mb/s

I'd like to test both "houston" and $ourDomain with the SAME service. But all I can find are sites that test the actual page, which I assume introduces a lot of extra variables.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Sarah324

3 Comments

Sorted by latest first Latest Oldest Best

 

@Angela700

There's a few options for you. Take a look:



WGET and CURL are installed with some linux distributions. WGET is convenient as it reports the average speed of a download. They can be run on your server if it has linux with the standard utilities installed. That way, you can measure the speed from your server to anything that's remote to it.

Ping also works, but you'll only know how long it takes to get any sort of answer from a remote server.

If you prefer to test a connection to your server, you can use the same utilities if the client machine has linux. If the client uses windows, then tests can be made with ping. Also, clients can test speeds to any server when using the opera browser as it always reports statistics while the page is loading.

Everything is shown in the large image.

10% popularity Vote Up Vote Down


 

@Ann8826881

But all I can find are sites that test the actual page, which I assume introduces a lot of extra variables.


Yes, this is also going to test the performance of your server (page generation, database lookups etc). As mentioned in comments, you could try uploading a large file and test that by making a direct request for the file (the file being the "page") and thus minimising the stress on the server? Although this is still measuring the servers initial response and its ability to stream the file. Bare in mind also that the connection might not be the same speed in both directions?

You also mentioned a Pingdom "Real User Test" that might help.

10% popularity Vote Up Vote Down


 

@Sims2060225

You can use various tools to do this,

tools.pingdom.com/fpt/ http://www.webpagetest.org/


All of the websites above will show your website's speed and how you could improve, the services are also able to use their infrastructure to provide accurate results from various countries around the world as well as different browsers and how your website may appear.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme