Popularity
5.3
Declining
Activity
0.0
Stable
10
24
2

Monthly Downloads: 0
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    
Latest version: v0.1.3

instrumental alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view instrumental alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of instrumental or a related project?

Add another 'Third Party APIs' Package

README

Instrumental

An Elixir client for Instrumental

Requirements

  • Elixir ~> 1.0

Installation

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.

Configuration

Add an instrumental config option and a value for token in your config.exs

config :instrumental,
  token: "mytoken"

Options

  • token (required) - api key for authenticating with instrumental
  • host (optional) - host of instrumental collector
  • port (optional) - port of instrumental collector

Authors