1
0
mirror of https://github.com/wg/wrk synced 2025-01-08 06:52:55 +08:00
wrk/scripts/report.lua
2013-12-07 14:09:44 +09:00

11 lines
347 B
Lua

-- 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