This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
done = function(summary, latency, requests) | |
-- open output file | |
f = io.open("result.csv", "a+") | |
-- write below results to file | |
-- minimum latency | |
-- max latency | |
-- mean of latency | |
-- standard deviation of latency | |
-- 50percentile latency |