Popularity
1.9
Stable
Activity
0.0
Stable
9
2
2
Monthly Downloads: 16
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.
-
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...) -
mstore
MStore is a experimental metric store build in erlang, the primary functions are open, new, get and put.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.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"