Popularity
2.2
Declining
Activity
0.0
Stable
7
1
1
Programming language: Crystal
License: MIT License
Tags:
Logging And Monitoring
fluent-logger-crystal alternatives and similar shards
Based on the "Logging and monitoring" category.
Alternatively, view fluent-logger-crystal alternatives based on common mentions on social networks and blogs.
-
instana
🔮 Crystal Distributed Tracing & Metrics Sensor for Instana -
crafana
Crystal library to help autogenerate Grafana dashboards -
fiber_metrics.cr
Runtime and memory allocation metrics -
crystal-logreader
Reading lines in the text file which is growing and may be rotated, such as unix system log file.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of fluent-logger-crystal or a related project?
README
fluent-logger-crystal
A Fluentd client for Crystal.
Installation
Add this to your application's shard.yml
:
dependencies:
fluent-logger:
github: TobiasGSmollett/fluent-logger-crystal
Usage
Simple
require "fluent-logger"
log = Fluent::Logger::FluentLogger.new
log.post("myapp.access", {"agent" => "foo"})
# output: myapp.access {"agent":"foo"}
ConsoleLogger
stdout = IO::Memory.new
log = Fluent::Logger::ConsoleLogger.new stdout
log.post("myapp.access", {"agent" => "foo"})
puts stdout.to_s # => Aug 30 23:56:41 myapp.access: agent="foo"
Contributing
- Fork it ( https://github.com/TobiasGSmollett/fluent-logger-crystal/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- TobiasGSmollett - creator, maintainer
Thanks
Thanks to FURUHASHI Sadayuki for his awesome work on fluent-logger-ruby.