concurrency: integer
timeout: integer
base: string
iterations: integer
schema:
requests:
- name: string
url: string
timeout: integer
method: string
headers:
- string:string
body: >
{
"key":"value"
}
concurrency
: Number of concurrent iterations. (default: 1)
timeout
: Global timeout: Applied to requests that don't have their own timeout. (default 0s)
base
: Base URL for all schema requests. Each request URL is appended to the base URL
iterations
: Number of loops to do (default: 1)
schema
: Wrapper over requests: List of requests
requests
:
name
: request name
url
: Url to call
timeout (Optional)
: Local timeout. Only this request must be executed within the timeout
method
: Http method (default GET)
headers
: list key:value pairs
body
: json string body