Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 784 Bytes

File metadata and controls

44 lines (35 loc) · 784 Bytes

Squadron abstract

Purpose

Main purpose of this tool is to provide easy way to create and manage your load testing scenarios.

Features :

  • Simple DSL
  • Run in most of OS and main Linux distros
  • Make easy to run on most of major cloud providers

Scenario example

For sake of simplicity, scenario description will be described in json format

Standard configuration

{    
    "url" : "http://localhost:9999/users",
    "verb" : "get",
    "headers" : [
        "Accept": "application/json"
    ] 
}

Advance configuration

{
    "runner": {
        "interval" : "30s",
        "time": "2m",
        "clients": "5"
    },
    "url" : "http://localhost:9999/users",
    "verb" : "get",
    "headers" : [
        "Accept": "application/json"
    ] 
}