Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Latest commit

 

History

History
37 lines (33 loc) · 1010 Bytes

SYNTAX.md

File metadata and controls

37 lines (33 loc) · 1010 Bytes

Syntax

concurrency: integer
timeout: integer
base: string
iterations: integer
schema:
  requests:
    - name: string
      url: string
      timeout: integer
      method: string
      headers:
        - string:string
      body: >
            {
              "key":"value"
            }
Global settings

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 settings

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