Quick readme change
This commit is contained in:
parent
4251ffe8ef
commit
6ff8c79a58
1 changed files with 9 additions and 2 deletions
11
README.md
11
README.md
|
@ -2,10 +2,17 @@
|
||||||
|
|
||||||
A lightweight REST load testing tool with rubust support for different verbs, token auth, and stats.
|
A lightweight REST load testing tool with rubust support for different verbs, token auth, and stats.
|
||||||
|
|
||||||
Example:
|
Example using source:
|
||||||
`go run main.go -rate=20 -max=100 -url=https://api.example.com/resource -type=POST -json=./data.json -token=YourBearerTokenHere`
|
|
||||||
|
1. `go run main.go -rate=20 -max=100 -url=https://api.example.com/resource -type=POST -json=./data.json -token=YourBearerTokenHere`
|
||||||
|
|
||||||
|
Example using binary:
|
||||||
|
|
||||||
|
1. go build
|
||||||
|
2. `./loadr -rate=20 -max=100 -url=https://api.example.com/resource -type=POST -json=./data.json -token=YourBearerTokenHere`
|
||||||
|
|
||||||
Flags:
|
Flags:
|
||||||
|
|
||||||
- `-rate`: Number of requests per second. Default is 10.
|
- `-rate`: Number of requests per second. Default is 10.
|
||||||
- `-max`: Maximum number of requests to send. If 0, there is no limit. Default is 0.
|
- `-max`: Maximum number of requests to send. If 0, there is no limit. Default is 0.
|
||||||
- `-url`: The URL to make requests to. Default is "https://example.com".
|
- `-url`: The URL to make requests to. Default is "https://example.com".
|
||||||
|
|
Loading…
Add table
Reference in a new issue