chaos
Creates, updates, deletes, gets or lists a chaos resource.
Overview
| Name | chaos |
| Type | Resource |
| Id | azure.service_fabric_dataplane.chaos |
Fields
The following fields are returned by SELECT queries:
- get_chaos
| Name | Datatype | Description |
|---|---|---|
ChaosParameters | object | Defines all the parameters to configure a Chaos run. |
ScheduleStatus | string | |
Status | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_chaos | select | endpoint | timeout | Get the status of Chaos. Get the status of Chaos indicating whether or not Chaos is running, the Chaos parameters used for running Chaos and the status of the Chaos Schedule. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
SELECT examples
- get_chaos
Get the status of Chaos. Get the status of Chaos indicating whether or not Chaos is running, the Chaos parameters used for running Chaos and the status of the Chaos Schedule.
SELECT
ChaosParameters,
ScheduleStatus,
Status
FROM azure.service_fabric_dataplane.chaos
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;