Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions site/content/leaderboard/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,37 @@ html.dark .http-ver[data-ver="ws"].active { color: #22d3ee; background: rgba(8,1
document.getElementById('lb-composite-wrapper').style.display = ver === 'composite' ? '' : 'none';
document.getElementById('lb-grpc-wrapper').style.display = ver === 'grpc' ? '' : 'none';
document.getElementById('lb-ws-wrapper').style.display = ver === 'ws' ? '' : 'none';
/* Reset all type filters to Framework */
document.querySelectorAll('.lb-type-filter').forEach(function(f) {
f.classList.toggle('active', f.dataset.type === 'framework');
});
/* Reset composite type filter too */
document.querySelectorAll('.composite-type-filter').forEach(function(f) {
f.classList.toggle('active', f.dataset.type === 'framework');
});
/* Sync language filters — capture active langs, apply to all, then trigger re-filter */
var activeLangs = new Set();
var allActive = false;
document.querySelectorAll('.lb-lang-filter').forEach(function(f) {
if (f.classList.contains('active')) {
if (f.dataset.lang === 'all') allActive = true;
else activeLangs.add(f.dataset.lang);
}
});
document.querySelectorAll('.lb-lang-filter').forEach(function(f) {
if (f.dataset.lang === 'all') f.classList.toggle('active', allActive);
else f.classList.toggle('active', allActive || activeLangs.has(f.dataset.lang));
});
/* Trigger re-filter on the newly visible wrapper by clicking its type filter */
var wrapperIds = { h1: 'lb-wrapper', h2: 'lb-h2-wrapper', h3: 'lb-h3-wrapper', grpc: 'lb-grpc-wrapper', ws: 'lb-ws-wrapper' };
var wrapperId = wrapperIds[ver];
if (wrapperId) {
var w = document.getElementById(wrapperId);
if (w) {
var typeBtn = w.querySelector('.lb-type-filter[data-type="framework"]');
if (typeBtn) typeBtn.click();
}
}
});
});
})();
Expand Down
14 changes: 7 additions & 7 deletions site/data/baseline-16384.json
Original file line number Diff line number Diff line change
Expand Up @@ -602,19 +602,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 2612019,
"avg_latency": "6.12ms",
"p99_latency": "28.30ms",
"cpu": "6127.7%",
"rps": 2648676,
"avg_latency": "5.97ms",
"p99_latency": "31.30ms",
"cpu": "6051.4%",
"memory": "3.6GiB",
"connections": 16384,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "353.53MB/s",
"input_bw": "201.77MB/s",
"bandwidth": "358.36MB/s",
"input_bw": "204.60MB/s",
"reconnects": 0,
"status_2xx": 13060097,
"status_2xx": 13243383,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
14 changes: 7 additions & 7 deletions site/data/baseline-4096.json
Original file line number Diff line number Diff line change
Expand Up @@ -602,19 +602,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 2864881,
"avg_latency": "1.43ms",
"p99_latency": "9.57ms",
"cpu": "6256.3%",
"rps": 2897562,
"avg_latency": "1.41ms",
"p99_latency": "9.05ms",
"cpu": "6285.0%",
"memory": "3.5GiB",
"connections": 4096,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "387.77MB/s",
"input_bw": "221.31MB/s",
"bandwidth": "392.11MB/s",
"input_bw": "223.83MB/s",
"reconnects": 0,
"status_2xx": 14324408,
"status_2xx": 14487814,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
14 changes: 7 additions & 7 deletions site/data/baseline-512.json
Original file line number Diff line number Diff line change
Expand Up @@ -602,19 +602,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 2485804,
"avg_latency": "205us",
"p99_latency": "1.59ms",
"cpu": "6523.9%",
"rps": 2518385,
"avg_latency": "202us",
"p99_latency": "1.57ms",
"cpu": "6326.5%",
"memory": "3.5GiB",
"connections": 512,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "336.42MB/s",
"input_bw": "192.02MB/s",
"bandwidth": "340.86MB/s",
"input_bw": "194.54MB/s",
"reconnects": 0,
"status_2xx": 12429020,
"status_2xx": 12591926,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
13 changes: 7 additions & 6 deletions site/data/baseline-h2-1024.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,18 +253,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 3336622,
"avg_latency": "22.24ms",
"p99_latency": "22.24ms",
"cpu": "6876.1%",
"rps": 3391354,
"avg_latency": "22.35ms",
"p99_latency": "22.35ms",
"cpu": "6922.0%",
"memory": "3.6GiB",
"connections": 1024,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "273.67MB/s",
"bandwidth": "278.15MB/s",
"input_bw": "",
"reconnects": 0,
"status_2xx": 16683113,
"status_2xx": 16956772,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
13 changes: 7 additions & 6 deletions site/data/baseline-h2-256.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,18 +253,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 3273185,
"avg_latency": "6.87ms",
"p99_latency": "6.87ms",
"cpu": "6877.3%",
"rps": 3259534,
"avg_latency": "6.88ms",
"p99_latency": "6.88ms",
"cpu": "6892.2%",
"memory": "3.5GiB",
"connections": 256,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "268.46MB/s",
"bandwidth": "267.34MB/s",
"input_bw": "",
"reconnects": 0,
"status_2xx": 16365925,
"status_2xx": 16297672,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
13 changes: 7 additions & 6 deletions site/data/baseline-h3-256.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 543491,
"avg_latency": "9.85ms",
"p99_latency": "31.37ms",
"cpu": "1473.3%",
"rps": 538781,
"avg_latency": "10.08ms",
"p99_latency": "31.73ms",
"cpu": "1405.9%",
"memory": "3.8GiB",
"connections": 256,
"threads": 64,
"duration": "5s",
"pipeline": 32,
"bandwidth": "0.52MB/s",
"bandwidth": "0.51MB/s",
"input_bw": "",
"reconnects": 0,
"status_2xx": 2719077,
"status_2xx": 2693548,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
11 changes: 6 additions & 5 deletions site/data/baseline-h3-512.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 493454,
"avg_latency": "17.41ms",
"p99_latency": "54.93ms",
"cpu": "1485.3%",
"rps": 498559,
"avg_latency": "18.02ms",
"p99_latency": "56.61ms",
"cpu": "1535.6%",
"memory": "3.9GiB",
"connections": 512,
"threads": 64,
"duration": "5s",
"pipeline": 32,
"bandwidth": "0.47MB/s",
"input_bw": "",
"reconnects": 0,
"status_2xx": 2470589,
"status_2xx": 2492571,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
11 changes: 6 additions & 5 deletions site/data/compression-16384.json
Original file line number Diff line number Diff line change
Expand Up @@ -571,18 +571,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 10913,
"rps": 10966,
"avg_latency": "1.22s",
"p99_latency": "2.08s",
"cpu": "11577.8%",
"p99_latency": "1.96s",
"cpu": "11560.0%",
"memory": "3.7GiB",
"connections": 16384,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "2.39GB/s",
"bandwidth": "2.40GB/s",
"input_bw": "792.46KB/s",
"reconnects": 0,
"status_2xx": 54566,
"status_2xx": 54830,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
11 changes: 6 additions & 5 deletions site/data/compression-4096.json
Original file line number Diff line number Diff line change
Expand Up @@ -571,18 +571,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 11075,
"avg_latency": "349.51ms",
"p99_latency": "554.20ms",
"cpu": "12447.2%",
"rps": 11072,
"avg_latency": "347.99ms",
"p99_latency": "537.10ms",
"cpu": "11952.3%",
"memory": "3.6GiB",
"connections": 4096,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "2.42GB/s",
"input_bw": "800.12KB/s",
"reconnects": 0,
"status_2xx": 55379,
"status_2xx": 55361,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
2 changes: 1 addition & 1 deletion site/data/current.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"os": "Ubuntu 24.04.4 LTS",
"kernel": "6.17.0-19-generic",
"docker": "29.3.0",
"commit": "957a34e",
"commit": "7417d7a",
"governor": "performance",
"docker_runtime": "runc",
"threads_per_core": "2",
Expand Down
13 changes: 7 additions & 6 deletions site/data/json-16384.json
Original file line number Diff line number Diff line change
Expand Up @@ -591,18 +591,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 1533361,
"avg_latency": "7.65ms",
"p99_latency": "37.20ms",
"cpu": "7435.8%",
"rps": 1571138,
"avg_latency": "7.41ms",
"p99_latency": "39.70ms",
"cpu": "7462.7%",
"memory": "3.6GiB",
"connections": 16384,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "12.33GB/s",
"bandwidth": "12.63GB/s",
"input_bw": "",
"reconnects": 0,
"status_2xx": 7666806,
"status_2xx": 7855693,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
13 changes: 7 additions & 6 deletions site/data/json-4096.json
Original file line number Diff line number Diff line change
Expand Up @@ -591,18 +591,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 1181287,
"avg_latency": "1.12ms",
"p99_latency": "8.19ms",
"cpu": "5161.9%",
"rps": 1137341,
"avg_latency": "1.11ms",
"p99_latency": "7.47ms",
"cpu": "6920.9%",
"memory": "3.5GiB",
"connections": 4096,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "9.50GB/s",
"bandwidth": "9.14GB/s",
"input_bw": "",
"reconnects": 0,
"status_2xx": 5906435,
"status_2xx": 5686708,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
15 changes: 8 additions & 7 deletions site/data/limited-conn-4096.json
Original file line number Diff line number Diff line change
Expand Up @@ -590,18 +590,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 1969362,
"avg_latency": "1.94ms",
"p99_latency": "10.30ms",
"cpu": "6032.7%",
"rps": 1998830,
"avg_latency": "1.90ms",
"p99_latency": "10.10ms",
"cpu": "6011.9%",
"memory": "3.5GiB",
"connections": 4096,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "266.56MB/s",
"reconnects": 982995,
"status_2xx": 9846812,
"bandwidth": "270.55MB/s",
"input_bw": "154.40MB/s",
"reconnects": 997730,
"status_2xx": 9994153,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
15 changes: 8 additions & 7 deletions site/data/limited-conn-512.json
Original file line number Diff line number Diff line change
Expand Up @@ -590,18 +590,19 @@
{
"framework": "nginx",
"language": "C",
"rps": 1530493,
"avg_latency": "314us",
"p99_latency": "2.75ms",
"cpu": "5331.5%",
"rps": 1580568,
"avg_latency": "304us",
"p99_latency": "2.61ms",
"cpu": "5166.1%",
"memory": "3.5GiB",
"connections": 512,
"threads": 64,
"duration": "5s",
"pipeline": 1,
"bandwidth": "207.19MB/s",
"reconnects": 765241,
"status_2xx": 7652468,
"bandwidth": "213.93MB/s",
"input_bw": "122.10MB/s",
"reconnects": 790266,
"status_2xx": 7902841,
"status_3xx": 0,
"status_4xx": 0,
"status_5xx": 0
Expand Down
Loading