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 to demonstrate the delay action.

---
base: 'http://localhost:9000'
iterations: 1
rampup: 0

plan:
  - name: Fetch users
    request:
      url: /api/users.json

  - name: Waiting some seconds
    delay:
      seconds: 3

  - name: Fetch organizations
    request:
      url: /api/organizations