Azure
network_latency
Increases the response time of the virtual machine
Below are the details and signature of the activity Python module.
Type | probe |
Module | chaosazure.machine.probes |
Name | describe_machines |
Return | None |
Usage
JSON
{
"name": "describe-machines",
"type": "probe",
"provider": {
"type": "python",
"module": "chaosazure.machine.probes",
"func": "describe_machines"
}
}
YAML
name: describe-machines
provider:
func: describe_machines
module: chaosazure.machine.probes
type: python
type: probe
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
filter | string | null | No | Filter | Target filter selector |
If the filter is omitted all machines in the subscription will be selected as potential chaos candidates.
Filtering example: 'where resourceGroup=="myresourcegroup" and name="myresourcename"'
Signature
def describe_machines(filter: str = None,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None):
pass