Popularity
2.3
Growing
Activity
0.0
Stable
8
2
2
Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Tags:
Logging
rogger alternatives and similar packages
Based on the "Logging" category.
Alternatively, view rogger alternatives based on common mentions on social networks and blogs.
-
logger_logstash_backend
A backend for the Elixir Logger that will send logs to the Logstash UDP input. -
mstore
MStore is a experimental metric store build in erlang, the primary functions are open, new, get and put. -
youtrack_logger_backend
A logger backend that will post messages to YouTrack (an issue tracker made by JetBrains).
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of rogger or a related project?
README
Rogger
Simple Elixir logger which publishes messages in RabbitMQ
Usage
Add Rogger as a dependency in your mix.exs file.
def deps do
[{:rogger, "~> 0.0.3"}]
end
Include :rogger in your application list:
def application do
[applications: [:rogger]]
end
Add configuration related to your RabbitMQ instance:
config :rogger,
host: "localhost",
username: "guest",
password: "guest"
Start Rogger process using Rogger.start_link([]) anywhere in your application or register it as a supervised process.
Then, run mix deps.get to fetch and compile Rogger.
Publish your logs :
Rogger.info "Some info message"
Rogger.warn "Some warning message"
Rogger.error "Some error message"