OneWebDesk

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.

Paste the full ping output and we will analyze packet loss and response time.

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 loss and rtt min/avg/max/mdev = 1.2/3.4/5.6/0.7 ms (or round-trip min/avg/max = ...)
  • Windows: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss) and Minimum = 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.

RTT reference by distance and link type

To judge whether an average RTT is good, compare it against the “physically possible minimum” rather than an absolute number. Light travels through fiber at roughly 2/3 of its vacuum speed (~200km/ms), and the signal makes a round trip, so a 1,000km path costs about 10ms at best. The ranges below are typical when measuring from East Asia.

Path / linkTypical avg RTTNote
Same LAN / 127.0.0.1< 1msLoopback is effectively 0ms, often shown as 0ms
Home router → wired PC1–3msOver Wi-Fi this jumps to 5–30ms and fluctuates
Same country (e.g. coast to coast in a small region)5–20msDomestic CDN / game servers
Nearby region (e.g. Japan, Hong Kong)30–60msClose overseas region
US West Coast120–160msTrans-Pacific cable; over 100ms is normal here
Europe / LTE·5G mobile200–300ms / 30–80msMobile adds latency and jitter at the wireless first hop

So if you ping a US server and see an average of 150ms, that is perfectly normal for the distance even though this tool flags it as “warning”. The grade is a generic baseline—always weigh it against how far away the target actually is.

Reading a real example

Suppose you paste this Linux output.

  • 10 packets transmitted, 9 received, 10% packet loss, time 9012ms
  • rtt min/avg/max/mdev = 28.4/41.7/210.3/52.1 ms

The tool reads 10% loss and an average of 41.7ms. The average alone looks fine, but 10% loss trips the threshold, so the overall verdict is “warning”. The bigger clue is hidden: withmin 28.4 the max 210.3 is more than 7× higher and mdev 52.1is very large. A healthy-looking average is masking individual packets that spike badly—a classic fingerprint of bufferbloat (congestion) or a flaky wireless hop. Never trust the average in isolation; always read max and mdev alongside it.

Common pitfall

  • Calling loss after only 4 pings: Windows ping defaults to just 4 probes, so a single drop shows as 25% loss. Loss percentage is meaningless on tiny samples—paste a run with plenty of probes, e.g. ping -n 50 (Windows) or ping -c 50 (Linux/macOS).
  • Relaxing because the average is low: even with a low average RTT, a large max/mdev (jitter) makes video calls and games stutter. Perceived quality is often driven by the variation, not the mean.

Frequently asked questions

Which lines should I copy and paste?
Paste the entire ping output. The tool automatically finds the summary line (packets transmitted / Packets: Sent) and the RTT line. Even a partial paste works as long as a recognizable line is present.
Does it support both Windows and Linux formats?
Yes. It recognizes Windows 'Packets: Sent/Received/Lost' and 'Minimum/Maximum/Average', as well as Linux/macOS 'packets transmitted/received', '% packet loss', and 'rtt'/'round-trip min/avg/max' lines.
How much packet loss is a problem?
Ideally it should be 0%. Even sporadic 1-2% loss can affect TCP retransmission and video-call quality, and anything above 10% is treated as a clear fault.
What does a high average response time suggest?
Physical distance (intercontinental), path congestion, wireless-hop delay, or router queuing. It also helps to watch how much it varies (mdev/jitter).
Is what I paste sent to a server?
No. All parsing runs entirely in your browser with regular expressions, and the ping output you paste is never transmitted or stored anywhere.

Related tools

Network / IP