Skip to content

Commit

Permalink
Merge pull request #39 from scohen/elixometer_1_1
Browse files Browse the repository at this point in the history
Elixometer 1.1
  • Loading branch information
scohen committed Feb 29, 2016
2 parents 9fbc919 + c8939ec commit cd778fd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,24 @@ Updating a metric is similarly easy:
end
end
```

## Additional Reporters

By default, Elixometer only includes the `exometer_core` package. However, some reporters (namely OpenTSDB and Statsd) are only available by installing `exometer`. This is fairly easy to do, all you need to do is update your `mix.exs` to include exometer as a dependency and start it as an application. For example:

```elixir
def application do
[
applications: [:exometer,
... other applications go here
],
...
]
end

defp deps do
[
{:exometer, github: "PSPDFKit-labs/exometer_core"}
]
end
```
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ defmodule Elixometer.Mixfile do

def project do
[app: :elixometer,
version: "1.0.0",
elixir: "~> 1.0",
version: "1.1.0",
elixir: ">= 1.0.0",
description: description,
source_url: project_url,
homepage_url: project_url,
Expand Down

0 comments on commit cd778fd

Please sign in to comment.