This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
76 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Load Test | ||
|
||
## Run load test | ||
|
||
`HttpRunner+` supports running load test without extra work. You can use `hrp boom` command to run YAML/JSON testcases in load testing mode. | ||
|
||
By default, hrp will print load testing results in console output, refreshed every 3 seconds. | ||
|
||
``` | ||
$ hrp boom examples/demo.json --spawn-count 10 --spawn-rate 1 | ||
6:09PM INF Set log to pretty console | ||
6:09PM INF Set log level to INFO | ||
6:09PM INF Set log level to WARN | ||
2021/12/02 18:09:48 Spawning 10 clients immediately | ||
Current time: 2021/12/02 18:09:51, Users: 10, Total RPS: 20, Total Fail Ratio: 0.0% | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
| TYPE | NAME | # REQUESTS | # FAILS | MEDIAN | AVERAGE | MIN | MAX | CONTENT SIZE | # REQS/SEC | # FAILS/SEC | | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
| request-GET | get with params | 10 | 0 | 2400 | 2423.00 | 2422 | 2424 | 300 | 10 | 0 | | ||
| request-POST | post json data | 10 | 0 | 310 | 304.50 | 301 | 307 | 420 | 10 | 0 | | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
Current time: 2021/12/02 18:09:54, Users: 10, Total RPS: 16, Total Fail Ratio: 0.0% | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
| TYPE | NAME | # REQUESTS | # FAILS | MEDIAN | AVERAGE | MIN | MAX | CONTENT SIZE | # REQS/SEC | # FAILS/SEC | | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
| request-GET | get with params | 18 | 0 | 1200 | 1157.39 | 1083 | 1367 | 300 | 9 | 0 | | ||
| request-POST | post json data | 10 | 0 | 290 | 290.20 | 287 | 293 | 420 | 10 | 0 | | ||
| request-POST | post form data | 20 | 0 | 310 | 300.00 | 287 | 311 | 441 | 10 | 0 | | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
Current time: 2021/12/02 18:09:57, Users: 10, Total RPS: 17, Total Fail Ratio: 0.0% | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
| TYPE | NAME | # REQUESTS | # FAILS | MEDIAN | AVERAGE | MIN | MAX | CONTENT SIZE | # REQS/SEC | # FAILS/SEC | | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
| request-GET | get with params | 12 | 0 | 1100 | 1153.92 | 1081 | 1464 | 300 | 6 | 0 | | ||
| request-POST | post json data | 20 | 0 | 270 | 279.70 | 269 | 337 | 420 | 6 | 0 | | ||
| request-POST | post form data | 20 | 0 | 270 | 272.85 | 269 | 279 | 441 | 10 | 0 | | ||
+--------------+-----------------+------------+---------+--------+---------+------+------+--------------+------------+-------------+ | ||
``` | ||
|
||
If you want to disable console output, you can add a `--disable-console-output` flag. | ||
|
||
``` | ||
$ hrp boom examples/demo.json --spawn-count 10 --spawn-rate 1 --disable-console-output | ||
``` | ||
|
||
You can reference this [doc](cmd/hrp_boom.md) for all command arguments. | ||
|
||
## Report metrics to Prometheus Pushgateway | ||
|
||
Besides printing load testing results in console, you can also push metrics to [Prometheus Pushgateway][pushgateway_github], and then you can configure pretty graphs on [Grafana][Grafana]. | ||
|
||
``` | ||
$ hrp boom examples/demo.json --spawn-count 10 --spawn-rate 1 --prometheus-gateway http://127.0.0.1:9091 | ||
``` | ||
|
||
You can deploy the Pushgateway using the [prom/pushgateway][pushgateway_docker] Docker image at ease. | ||
|
||
``` | ||
$ docker pull prom/pushgateway | ||
$ docker run -d -p 9091:9091 prom/pushgateway | ||
``` | ||
|
||
[pushgateway_github]: https://github.com/prometheus/pushgateway | ||
[pushgateway_docker]: https://hub.docker.com/r/prom/pushgateway | ||
[Grafana]: https://grafana.com/ |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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