slapper
slapper copied to clipboard
Simple load testing tool with real-time updated histogram of request timings
see for details https://github.com/tsenart/vegeta#-targets
if this projects ever gets bigger it needs to take into account "coordinated omission" problem. http://highscalability.com/blog/2015/10/5/your-load-generator-is-probably-lying-to-you-take-the-red-pi.html
Please note this tool does not works as-is for bodies larger than 64KB. To fix it, add the following lines after https://github.com/ikruglov/slapper/blob/master/slapper.go#L135: ```go buf := make([]byte, 0, 64*1024) scanner.Buffer(buf, 1024*1024)...