Skip to main content

Chaos Toolkit toxiproxy support by SKY

Project description

Chaos Toolkit tokiproxy driver

pypi travis readthedocs

This module provides actions to configure toxiproxy proxies and toxies.

WARNING: This module exposes actions that have rather strong impacts on your cluster. While Chaos Engineering is all about disrupting and weaknesses, it is important to take the time to fully appreciate what those actions do and how they do it.

Install

To be used from your experiment, this package must be installed in the Python environment where chaostoolkit already lives.

$ pip install sky-chaostoolkit-toxiproxy

Usage

Configuration

In your experiment configuration section you can set the toxiproxy server address if different from localhost:

  "configuration":{
    "toxiproxy_host": "<defaults to localhost...>",
    "toxiproxy_port": 1234  
  }

If more than one toxiproxy server needs to be addressed, you can set the list using the "toxiproxy" configuration key:

  "configuration":{
      "toxiproxy": [
        {
          "host": "<defaults to localhost>",
          "port": "<defaults to 8474>"
        },
      ]

Exported actions

Adding a toxic

  add_toxic(
    server: Dict = {'host': 'localhost', 'port': 8474}, 
    random_server: bool = False, 
    proxy_name: str = None, 
    toxic_name: str = None, 
    type: str = None, 
    stream: str = 'downstream', 
    toxicity: float = 1.0, 
    attributes: str = None 
  )

Add a toxic to a proxy

The server can be specifically passed as parameter. Alternatively, if the "toxiproxy" configuration section is present, a random server is picked setting the "random_server" parameter to True.

The name of the proxy to add the toxic to can be specified, otherwise a random proxy for the server is picked up

Creating a new proxy

  create_proxy(
    proxy_name, 
    upstream, 
    listen, 
    enabled: bool = True, 
    server: Dict = {'host': 'localhost', 'port': 8474}

Deleting all proxies attached to a server

  delete_all_proxies(
    server: Dict = {'host': 'localhost', 'port': 8474}
  )

Deleting all toxic attached to a proxy

  delete_all_toxics(
    server: Dict = {'host': 'localhost', 'port': 8474}, 
    proxy_name: str = None
  )

Deleting a proxy

  delete_proxy(
    proxy_name: str, 
    server: Dict = {'host': 'localhost', 'port': 8474}
  )

Deleting a toxic

  delete_toxic(
    server: Dict = {'host': 'localhost', 'port': 8474}, 
    proxy_name: str = None, 
    stream: str = 'downstream', 
    type: str = None
  )

Disabling a proxy

  disable_proxy(
    server: Dict = {'host': 'localhost', 'port': 8474}, 
    proxy_name: str = None
  )

Enabling a proxy

  enable_proxy(
    server: Dict = {'host': 'localhost', 'port': 8474}, 
    proxy_name: str = None
  )

Populating a server

  populate(
    proxies, 
    server: Dict = {'host': 'localhost', 'port': 8474}
  )

Resetting all servers

  reset_all()

Enable all proxies and remove all active toxics for all servers

Resetting a server

  reset_server(
    server: Dict = {'host': 'localhost', 'port': 8474}
  )

Enable all proxies and remove all active toxics

Sample experiment

{
  "version": "1.0.0",
  "title": "What happens if a latency is introduced on a proxy for cassandra",
  "description": "We introduce a 400 ms latency on a single cassandra node",
  "tags": ["proxy"],
  "steady-state-hypothesis": {
    "title": "Proxy is found",
    "probes": [
      {
        "type": "probe",
        "name": "proxy-is-found",
        "tolerance": "c1",
        "provider": {
          "type": "python",
          "module": "chaostp.proxy.probes",
          "func": "get_proxy",
          "arguments": {
              "name": "c1"
          }
        }
      }
    ]
  },
  "method": [
    {
      "type": "action",
      "name": "delete_all_toxics",
      "provider": {
          "type": "python",
          "module": "chaostp.proxy.actions",
          "func": "delete_all_toxics",
          "arguments": {
              "proxy_name": "localhost",
              "name": "c1"
          }
      }
    },
    {
      "type": "action",
      "name": "add-a-latency-toxic",
      "provider": {
          "type": "python",
          "module": "chaostp.proxy.actions",
          "func": "add_toxic",
          "arguments": {
              "proxy_name": "c1",
              "toxic_name": "t1",
              "type": "latency",
              "stream": "upstream",
              "toxicity": 0.5,
              "attributes": {"latency": 100}
          }
      },
      "pauses": {
          "before": 10,
          "after": 40
      }
    },
    {
      "type": "action",
      "name": "add-a-bandwidth-degradation-toxic",
      "provider": {
          "type": "python",
          "module": "chaostp.proxy.actions",
          "func": "add_toxic",
          "arguments": {
              "proxy_name": "c1",
              "toxic_name": "bandwidth_degradation_toxic",
              "type": "bandwidth",
              "stream": "upstream",
              "toxicity": 0.5,
              "attributes": {"rate": 400}
          }
      },
      "pauses": {
          "before": 10,
          "after": 40
      }
    },
    {
      "type": "action",
      "name": "delete_all_toxics", "provider": {
          "type": "python",
          "module": "chaostp.proxy.actions",
          "func": "delete_all_toxics",
          "arguments": {
              "name": "c1"
          }
      }
    }
  ],
  "rollbacks": []
}

Please explore the code to see existing probes and actions.

Discovery

You may use the Chaos Toolkit to discover the capabilities of this extension:

$ chaos discover sky-chaostoolkit-toxiproxy  --no-install

Configuration

The module expects a toxiproxy-server running and listening on the default port 8474, there is currently no way to configure another server address.

Contribute

If you wish to contribute more functions to this package, you are more than welcome to do so. Please fork this project, make your changes following the usual PEP 8 code style, add appropriate tests and submit a PR for review.

The Chaos Toolkit projects require all contributors must sign a Developer Certificate of Origin on each commit they would like to merge into the master branch of the repository. Please, make sure you can abide by the rules of the DCO before submitting a PR.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sky-chaostoolkit-toxiproxy-2-0.1.7.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sky_chaostoolkit_toxiproxy_2-0.1.7-py2.py3-none-any.whl (9.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file sky-chaostoolkit-toxiproxy-2-0.1.7.tar.gz.

File metadata

  • Download URL: sky-chaostoolkit-toxiproxy-2-0.1.7.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for sky-chaostoolkit-toxiproxy-2-0.1.7.tar.gz
Algorithm Hash digest
SHA256 fa61044ee2343d112e1cf4e92d93a0846221036b111cfa00e81e77aac6e3632f
MD5 7b70943e8faa33a173e659a2f00e2c31
BLAKE2b-256 f2c1dfaaee28482b2c74a4934af2734c6d4f36bb2234dd4c87d2fa2805eea226

See more details on using hashes here.

File details

Details for the file sky_chaostoolkit_toxiproxy_2-0.1.7-py2.py3-none-any.whl.

File metadata

  • Download URL: sky_chaostoolkit_toxiproxy_2-0.1.7-py2.py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for sky_chaostoolkit_toxiproxy_2-0.1.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6dc0a3944d1d402db2bdaa350cbade0a79632bb7a272091ef38081759d519f18
MD5 620aedd58bb8789f135e31bb2c6e39dd
BLAKE2b-256 0c394c27e46acc9009b3e46cfc0adc4da6bbfc1ee475e1d3cdb9290f8003e332

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page