Extatic
Delightfully simple metric and error recording with pluggable backends
** WARNING **
- There are no tests (yet)
- The code is a mess (for now)
- Use at your own risk (always)
- The API WILL change
Installation
If available in Hex, the package can be installed as:
- Add
extaticto your list of dependencies inmix.exs:
```elixir
def deps do
[{:extatic, "~> 0.1.0"}]
end
```
- Ensure
extaticis started before your application:
```elixir
def application do
[applications: [:extatic]]
end
```
Configuration
With extatic_datadog
config :extatic, :config,
metric_reporter: Extatic.Reporters.Metrics.Datadog,
metric_config: %{
url: "https://app.datadoghq.com/api/v1/series",
api_key: "nope",
host: "www.example.com"
},
event_reporter: Extatic.Reporters.Events.Datadog,
event_config: %{
url: "https://app.datadoghq.com/api/v1/events",
api_key: "nope",
host: "www.example.com"
}
or (with extatic_console)
config :extatic, :config,
metric_reporter: Extatic.Reporters.Metrics.Console,
metric_config: %{},
event_reporter: Extatic.Reporters.Events.Console,
event_config: %{}
or a combination.
Providers
Outputs metrics and errors to the console (it's not pretty but helps when implementing monitoring in development
Send metrics and errors to datadog