driller 0.10.2

A clean HTTP load-test drill. Ansible-style YAML plans, Rust runtime, RPS and percentiles per run -- no fancy bits.
# Example of a test plan with 1 iteration and 2 requests.
# This is an example of how to send custom headers.

---
base: 'http://localhost:3000'
iterations: 1

plan:
  - name: Custom headers
    request:
      url: /
      headers:
        Authorization: Basic aHR0cHdhdGNoOmY=
        X-Foo: Bar

  - name: Dynamic Custom headers
    request:
      url: /
      headers:
        Authorization: Basic aHR0cHdhdGNoOmY=
        X-Foo: Bar {{ item }}
    with_items:
      - 70
      - 73