Usando httping

Manual de referencia:

http://www.tail-f.com.ar/servicios/httpd/httping-herramienta-para-medir-la-latencia-de-un-servidor-web.html

sudo apt-get install httping

httping -c 5 -g http://localhost [Para comparar]

 httping -c 5 -g http://www.galiciacity.com

PING www.galiciacity.com:80 (http://www.galiciacity.com):

connected to www.galiciacity.com:80, seq=0 time=679.69 ms

connected to www.galiciacity.com:80, seq=1 time=553.75 ms

connected to www.galiciacity.com:80, seq=2 time=598.93 ms

connected to www.galiciacity.com:80, seq=3 time=535.28 ms

connected to www.galiciacity.com:80, seq=4 time=588.60 ms

— http://www.galiciacity.com ping statistics —

5 connects, 5 ok, 0.00% failed

round-trip min/avg/max = 535.3/591.3/679.7 ms

 

httping -c 5 -Sg http://www.galiciacity.com

(se separa el tiempo de conexión y el del procesamiento.

Hace una peteición HEAD al servidor)

 PING www.galiciacity.com:80 (http://www.galiciacity.com):

connected to www.galiciacity.com:80, seq=0 time=221.14+468.09=689.23 ms

connected to www.galiciacity.com:80, seq=1 time=210.64+369.85=580.50 ms

connected to www.galiciacity.com:80, seq=2 time=209.51+391.28=600.78 ms

connected to www.galiciacity.com:80, seq=3 time=217.89+344.31=562.19 ms

connected to www.galiciacity.com:80, seq=4 time=206.94+340.29=547.24 ms

— http://www.galiciacity.com ping statistics —

5 connects, 5 ok, 0.00% failed

round-trip min/avg/max = 547.2/596.0/689.2 ms

httping -c 5 -Gg http://www.galiciacity.com

(En este caso la petición es GET y vemos cuanto tiempo tarda en

generar la respuesta de una aplicación)

PING www.galiciacity.com:80 (http://www.galiciacity.com):

connected to www.galiciacity.com:80, seq=0 time=1360.14 ms

connected to www.galiciacity.com:80, seq=1 time=1410.24 ms

connected to www.galiciacity.com:80, seq=2 time=1372.91 ms

connected to www.galiciacity.com:80, seq=3 time=1405.80 ms

connected to www.galiciacity.com:80, seq=4 time=1571.40 ms

— http://www.galiciacity.com ping statistics —

5 connects, 5 ok, 0.00% failed

round-trip min/avg/max = 1360.1/1424.1/1571.4 ms

httping -fg http://www.galiciacity.com

(Para hacer pruebas de stressing -f flood connect

que envía sin esperar respuesta)

… y otras muchas opciones con man httping 

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Este sitio usa Akismet para reducir el spam. Aprende cómo se procesan los datos de tus comentarios.