mirror of
https://github.com/wg/wrk
synced 2026-05-19 20:19:52 +08:00
add a few example scripts
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
-- example reporting script which demonstrates a custom
|
||||
-- done() function that prints latency percentiles as CSV
|
||||
|
||||
done = function(summary, latency, requests)
|
||||
io.write("------------------------------\n")
|
||||
for _, p in pairs({ 50, 90, 99, 99.999 }) do
|
||||
n = latency:percentile(p)
|
||||
io.write(string.format("%g%%,%d\n", p, n))
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user