logglix alternatives and similar packages
Based on the "Logging" category.
Alternatively, view logglix alternatives based on common mentions on social networks and blogs.
-
timber
Structured logging platform; turns raw text logs into rich structured events. -
logster
Easily parsable single line, plain text and JSON logger for Plug and Phoenix applications -
logger_logstash_backend
Logstash backend for the Elixir Logger -
bunyan
The all-plugins-included package of the Bunyan distributed and pluggable logging system. -
metrix
Elixir library to log custom application metrics, in a well-structured, human and machine readable format, for use by downstream log processing systems (Librato, Reimann, etc...) -
lager_logger
A lager backend that forwards all log messages to Elixir's Logger -
slack_logger_backend
An Elixir logger backend for posting errors to Slack. -
mstore
MStore is a experimental metric store build in erlang, the primary functions are open, new, get and put. -
youtrack_logger_backend
Adding youtrack as a logger backend to your elixir application. -
quiet_logger
A simple plug to suppress health check logging (e.g.: when using Kubernetes).
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of logglix or a related project?
Popular Comparisons
README
🎱 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, "~> 1.0.0"}]
end
Ensure logger_loggly_backend is started before your application:
def application do
[applications: [:logglix, :httpoison]]
end
Configure the logger
config :logger,
backends: [{Logglix, :logglix}, :console]
config :logger, :logglix,
loggly_key: "your loggly key",
tags: ["elixir"],
level: :info
Resources
License
MIT License © Ivan Santos
*Note that all licence references and agreements mentioned in the logglix README section above
are relevant to that project's source code only.