What means mdev in the ping output (last row below)?

me@callisto ~ % ping -c 1 example.org   
PING example.org (192.0.43.10) 56(84) bytes of data.
64 bytes from 43-10.any.icann.org (192.0.43.10): icmp_seq=1 ttl=245 time=119 ms

--- example.org ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 119.242/119.242/119.242/0.000 ms
link|improve this question

45% accept rate
1  
mdev is the moving standard deviation, sometimes also abbreviated "MSTD". It's not possible to calculate the true standard deviation until all the data points have been collected. A moving number is calculated on known data only. – Chris S Nov 25 '11 at 2:55
feedback

3 Answers

up vote 6 down vote accepted

It's the standard deviation, essentially an average of how far each ping RTT is from the mean RTT. The higher mdev is, the more variable the RTT is (over time).

With a high RTT variability, you will have speed issues with bulk transfers (they will take longer than is strictly speaking necessary, as the variability will eventually cause the sender to wait for ACKs) and you will have middling to poor VoIP quality.

link|improve this answer
feedback

From the source code [1]:

                    tsum += triptime;
                    tsum2 += (long long)triptime * (long long)triptime

and,

            tsum /= nreceived + nrepeats;
            tsum2 /= nreceived + nrepeats;
            tmdev = llsqrt(tsum2 - tsum * tsum);

we can conclude that:

mdev = SQRT(SUM(RTT*RTT) / N – (SUM(RTT)/N)^2)

which exactly matches Vatine's answer above.

  1. http://www.skbuff.net/iputils
link|improve this answer
feedback

It's the standard deviation - not sure why the label mdev has been used for it.

link|improve this answer
2  
Google said that it could be mean (or median) devviation. – quanta Nov 21 '11 at 9:26
Okay. The ping(8) man pages does not tell me anything about deviations. What is it exactly or how should I interpret this particular value? – Daniel Nov 21 '11 at 9:37
@Daniel: standard deviation is a statistics concept, it tells you how the samples were distributed from the average. See en.wikipedia.org/wiki/Standard_deviation – Matteo Nov 21 '11 at 13:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.