Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ananthakumaran/toxiproxy-elixir
elixir client for Toxiproxy
https://github.com/ananthakumaran/toxiproxy-elixir
elixir toxiproxy
Last synced: about 1 month 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-03-05T11:16:21.000Z (over 2 years ago)
- Last Synced: 2024-09-23T22:47:50.289Z (about 2 months ago)
- Topics: elixir, toxiproxy
- Language: Elixir
- Homepage:
- Size: 18.6 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toxiproxy
[![Hex.pm](https://img.shields.io/hexpm/v/toxiproxy.svg)](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.