VPS Benchmark Generator

Run a network benchmark against your server and get a shareable scorecard. For true CPU/RAM/disk numbers, copy the ready-made server-side commands below.

๐Ÿ”’ Runs entirely in your browser ยท nothing is uploaded or stored

Run real CPU / RAM / Disk benchmarks on the server

SSH into the VPS and paste these. A browser can't reach into the OS โ€” these give Geekbench-style ground truth.

Server-side benchmark commands
# CPU (single + multi-core) sysbench cpu --threads=$(nproc) run # Memory bandwidth sysbench memory --memory-block-size=1M --memory-total-size=10G run # Disk IO (4K random read IOPS) fio --name=rand --ioengine=libaio --rw=randread --bs=4k --size=1G --numjobs=1 --runtime=30 --group_reporting # Network (vs a nearby endpoint of your choice) curl -o /dev/null -s -w 'TTFB:%{time_starttransfer}s Total:%{time_total}s\n' https://your-test-endpoint.example/10mb.bin

๐Ÿ“Š What the grade means

  • A โ€” p95 < 120ms
  • B โ€” p95 < 250ms
  • C โ€” p95 < 500ms
  • D/F โ€” slower; check region & load

๐Ÿš€ sysbench / fio

The classic Linux benchmarking trio. sysbench covers CPU & memory, fio covers disk IOPS โ€” the number that actually separates good VPS hosts from oversold ones.

๐Ÿ”— Sharing

The report link encodes results in the URL fragment (after #), so it never touches a server. Send it to compare hosts with a teammate.

Frequently Asked Questions

Is this like Geekbench for a VPS?

Geekbench-style CPU/RAM/disk scores can only be produced by running a benchmark on the server itself. This page gives you (1) a real network performance scorecard from your browser and (2) copy-paste sysbench/fio commands to get the on-box numbers in under a minute.

How is the shareable URL private?

Results are encoded in the URL fragment after #, which browsers never send to any server. Nothing is uploaded.