execute_k6_test_with_options
Run k6 load tests with specific duration and virtual user settings. Specify a test script, desired duration, and VUs to evaluate system performance under simulated user loads.
Instructions
Execute a k6 load test with custom duration and VUs.
Args: script_file: Path to the k6 test script (.js) duration: Duration of the test (e.g., "30s", "1m", "5m") vus: Number of virtual users to simulate
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | Yes | ||
script_file | Yes | ||
vus | Yes |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"title": "Duration",
"type": "string"
},
"script_file": {
"title": "Script File",
"type": "string"
},
"vus": {
"title": "Vus",
"type": "integer"
}
},
"required": [
"script_file",
"duration",
"vus"
],
"title": "execute_k6_test_with_optionsArguments",
"type": "object"
}