Skip to content
Logger backend app for Loggly requests
Elixir
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
config
lib
test
.gitignore
README.md
mix.exs
mix.lock

README.md

Logglix

A simple elixir Logger backend which sends logs to Loggly service.

Installation

Logglix is a custom backend for the elixir :logger application. As such, it relies on the :logger application to start the relevant processes.

Add logger_loggly_backend to your list of dependencies in mix.exs:

def deps do
  [{:logglix, "~> 0.0.1"}]
end

Ensure logger_loggly_backend is started before your application:

def application do
  [applications: [:logglix, :httpoison]]
end

Configure the logger

config :logger,
  backends: [{Logglix, :loggly}, :console]

config :logger, :logglix,
  loggly_key: "your loggly key",
  tags: ["elixir"],
  level: :info

Roadmap

[ ] Subscription by environment

Something went wrong with that request. Please try again.