Skip to content

Commit 89b6348

Browse files
committed
Update benchmarks
1 parent da50dc9 commit 89b6348

7 files changed

Lines changed: 1791 additions & 2738 deletions

File tree

bench/index.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,7 @@ async function bench () {
137137
{ alias: 'req/sec', width: 12 },
138138
{ alias: 'latency', width: 12 },
139139
{ alias: 'throughput', width: 14 },
140-
{ alias: 'errors', width: 11 },
141-
{ alias: 'memory (start)' },
142-
{ alias: 'memory (end)' }
140+
{ alias: 'errors', width: 11 }
143141
].map((h) => Object.assign({ paddingLeft: 0, paddingRight: 0 }, h))
144142

145143
results.sort((a, b) => b.requests.average - a.requests.average)
@@ -148,9 +146,7 @@ async function bench () {
148146
r.requests.average,
149147
r.latency.average,
150148
formatBytes(r.throughput.average),
151-
r.errors + r.non2xx,
152-
memory[r.title].start.split('/').map(formatBytes).join('\n'),
153-
memory[r.title].end.split('/').map(formatBytes).join('\n')
149+
r.errors + r.non2xx
154150
])
155151

156152
const consoleOut = table(head, rows).render()

0 commit comments

Comments
 (0)