slapper icon indicating copy to clipboard operation
slapper copied to clipboard

Simple load testing tool with real-time updated histogram of request timings

Results 3 slapper issues
Sort by recently updated
recently updated
newest added

see for details https://github.com/tsenart/vegeta#-targets

enhancement

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

bug

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