action Fault Injection Simulator

stop_experiments_by_tags

Stops the experiments matching the given tags

Run it now
View details
Typeaction
Modulechaosaws.fis.actions
Namestop_experiments_by_tags
Returnlist

Usage

JSON

{
  "name": "stop-experiments-by-tags",
  "type": "action",
  "provider": {
    "type": "python",
    "module": "chaosaws.fis.actions",
    "func": "stop_experiments_by_tags",
    "arguments": {
      "tags": {}
    }
  }
}

YAML

name: stop-experiments-by-tags
provider:
  arguments:
    tags: {}
  func: stop_experiments_by_tags
  module: chaosaws.fis.actions
  type: python
type: action

Arguments

NameTypeDefaultRequiredTitleDescription
tagsstringYesTagsComma separated list of tags used to identify experiments to stop

Signature

def stop_experiments_by_tags(
        tags: Dict[str, str],
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Union[str, Dict[str, str]] = None) -> List[Dict[str, Any]]:
    pass