Skip to content

Instantly share code, notes, and snippets.

@piyoki
Last active January 15, 2024 02:19
Show Gist options
  • Save piyoki/f132bfb993856e4d680cdec640c30e4c to your computer and use it in GitHub Desktop.
Save piyoki/f132bfb993856e4d680cdec640c30e4c to your computer and use it in GitHub Desktop.
{
"load_type": "linear",
"iteration_count": 10000,
"duration": 10,
"debug": false,
"output": "stdout",
"env": {
"TARGET_ENDPOINT": "http://10.0.0.229/staging/echo"
},
"steps": [
{
"id": 1,
"url": "{{TARGET_ENDPOINT}}",
"method": "GET",
"headers": {
"Content-Type": "application/json",
"Host": "myhost.com"
},
"timeout": 5
}
],
"success_criterias": [
{
"rule": "p90(iteration_duration) < 5000",
"abort": false
},
{
"rule": "fail_count_perc < 0.1",
"abort": true,
"delay": 1
},
{
"rule": "fail_count < 100",
"abort": true,
"delay": 0
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment