An Elixir client for Instrumental
- Elixir ~> 1.0
Add Instrumental as a dependency in your mix.exs
file
def application do
[applications: [:instrumental]]
end
defp deps do
[
{:instrumental, "~> 0.1.0"}
]
end
Then run mix deps.get
in your shell to fetch the dependencies.
Add an instrumental config option and a value for token in your config.exs
config :instrumental,
token: "mytoken"
- token (required) - api key for authenticating with instrumental
- host (optional) - host of instrumental collector
- port (optional) - port of instrumental collector
- Jamie Winsor (jamie@undeadlabs.com)