Docs / Performance Optimization / How to Benchmark Your Server Performance

How to Benchmark Your Server Performance

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 139 views · 1 min read

Measure your Breeze's performance to establish baselines and verify upgrades.

CPU Benchmark

apt install sysbench -y\nsysbench cpu --threads=2 run

Memory Benchmark

sysbench memory --threads=2 run

Disk Benchmark

# Write test\ndd if=/dev/zero of=/tmp/test bs=1M count=1024 oflag=dsync\n\n# Read test\ndd if=/tmp/test of=/dev/null bs=1M\n\n# Cleanup\nrm /tmp/test

Network

speedtest-cli --simple

Web Server (Apache Bench)

apt install apache2-utils -y\nab -n 1000 -c 100 http://localhost/

Was this article helpful?