Ping Result Analyzer
Parse pasted ping output for packet loss and min/avg/max latency, with interpretation.
Paste the raw output of a ping run and this tool extracts the packets sent/received, packet loss percentage, and the min/avg/max round-trip time (RTT), then grades it ok / warning / danger at a glance. It recognizes both the Windows form (Packets: Sent = 4, Received = 4) and the Linux/macOS form (4 packets transmitted, 4 received).
You no longer have to read the numbers by hand to tell whether there is loss or high latency, which makes it handy for first-pass network triage. To turn repeated latency samples into statistics, use the latency percentile calculator; to grade a server's speed, see the response time tiers.
Formats you can paste
You only need the summary lines of a ping run. Either of these two formats is recognized.
- Linux / macOS:
4 packets transmitted, 4 received, 0% packet lossandrtt min/avg/max/mdev = 1.2/3.4/5.6/0.7 ms(orround-trip min/avg/max = ...) - Windows:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)andMinimum = 1ms, Maximum = 3ms, Average = 2ms
How it grades
The status uses the rules below, taking whichever of average latency or loss is worse.
- OK: 0% loss and average RTT below 100ms
- Warning: loss up to 10%, or average RTT 100–250ms
- Danger: loss above 10%, or average RTT above 250ms
High latency points to path congestion or physical distance; packet loss points to a wireless hop, overload, or an MTU problem.