A logger backend for posting errors to Slack.
You can find the hex package here, and the docs here.
First, add the client to your mix.exs
dependencies:
def deps do
[{:slack_logger_backend, "~> 0.0.1"}]
end
Then run $ mix do deps.get, compile
to download and compile your dependencies.
Finally, add the :slack_logger_backend
application as your list of applications in mix.exs
:
def application do
[applications: [:logger, :slack_logger_backend]]
end
You can set the log levels you want posted to slack in the config:
config :slack_logger_backend, :levels, [:debug, :info, :warn, :error]
You'll need to create a custom incoming webhook URL for your Slack team. You can either configure the webhook in your config:
config :slack_logger_backend, :slack, [url: "http://example.com"]
... or you can put the webhook URL in the SLACK_LOGGER_WEBHOOK_URL
environment variable if you prefer. If
you have both the environment variable will be preferred.
- Improve documentation
- Backoff strategies