https://github.com/ananthakumaran/toxiproxy-elixir
elixir client for Toxiproxy
https://github.com/ananthakumaran/toxiproxy-elixir
elixir toxiproxy
Last synced: about 1 year ago
JSON representation
elixir client for Toxiproxy
- Host: GitHub
- URL: https://github.com/ananthakumaran/toxiproxy-elixir
- Owner: ananthakumaran
- Created: 2017-02-13T15:55:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-03-05T11:16:21.000Z (over 4 years ago)
- Last Synced: 2025-04-10T22:04:27.071Z (about 1 year ago)
- Topics: elixir, toxiproxy
- Language: Elixir
- Homepage:
- Size: 18.6 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toxiproxy
[](https://hex.pm/packages/toxiproxy)
elixir client for [toxiproxy](https://github.com/Shopify/toxiproxy)
## Installation
Add `toxiproxy` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:toxiproxy, "~> 0.6.0"}]
end
```
Add the hostname and adapter in the config file.
```elixir
config :toxiproxy,
host: "http://127.0.0.1:8474",
adapter: Tesla.Adapter.Hackney
```
See [tesla](https://github.com/teamon/tesla#adapters-1) for the list of supported adapters.