Top Qs
Timeline
Chat
Perspective
Vegeta (software)
HTTP load testing tool From Wikipedia, the free encyclopedia
Remove ads
Vegeta is an HTTP load testing tool written in Go that can be used as a command in a command-line interface or as a library.[4] The program tests how an HTTP-based application behaves when multiple users access it at the same time[4] by generating a background load of GET requests.[5] Vegeta is used to generate a sustained, constant number of requests per second in order to discover how long a service can sustain a peak load before dropping in performance.[6]
Remove ads
In addition to preemptive load testing, the program can also be used for shadow testing,[7] where traffic from a live version of an application is mirrored onto a test version to determine how it handles the same traffic load, without causing potential disruption to the live version of the application.[8] Shadow testing is done in this way in order to analyze anticipated server performance.[9]
Vegeta is provided for use by web hosting services such as Scaleway[4] to use varied and multiple requests to stress test client HTTP services.[10] It is also used with dedicated load-testing platform services such as BlazeMeter.[11]
Remove ads
Usage
Summarize
Perspective
The command-line usage is in the format of vegeta [global flags] <command> [command flags]. The three global flags are -cpus int which specifies the number of CPUs to use, -profile string which enables profiling, and -version which prints the software version and then terminates the program.[1]
The commands available are attack, encode, plot, and report, each with its own various command flag options, and both attack input and report output can be done in an optional JSON format when specified with the appropriate flag.[1]
Vegeta can specify targets as URLs in a separate file with optional custom headers and requests, which can then be used as an input option on the command line.[12]
Example
An example usage would be to issue echo "GET http://localhost/" | vegeta attack -duration=5s | tee results.bin | vegeta report from the command-line.[1] This example uses the echo command to output GET http://localhost/, and then executes the attack command for that output for five seconds. After that, it uses the tee command to write results to a file called results.bin, and runs the report command to display the output of the attack results.
Remove ads
References
Wikiwand - on
Seamless Wikipedia browsing. On steroids.
Remove ads