Actions
| Action | Description |
|---|---|
list | List all benchmarks in the organization |
create | Create a new benchmark |
get | Get a benchmark by ID |
update | Update a benchmark |
delete | Delete a benchmark |
Parameters
list
No parameters.
create
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | yes | Name of the benchmark |
description | string | no | Description of the benchmark |
timeout | number | no | Default timeout in seconds for tasks in this benchmark |
concurrency | number | no | Max concurrent task runs |
get
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Benchmark ID |
update
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Benchmark ID |
name | string | no | Updated name |
description | string | null | no | Updated description, or null to clear |
timeout | number | null | no | Updated timeout, or null to clear |
concurrency | number | null | no | Updated concurrency, or null to clear |
delete
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Benchmark ID |