fluent-logger-crystal

A Fluentd client for Crystal.

fluent-logger-crystal

Build Status

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

  1. Fork it ( https://github.com/TobiasGSmollett/fluent-logger-crystal/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

Thanks

Thanks to FURUHASHI Sadayuki for his awesome work on fluent-logger-ruby.

Repository

fluent-logger-crystal

Owner
Statistic
  • 7
  • 1
  • 0
  • 0
  • 1
  • about 7 years ago
  • August 22, 2017
License

MIT License

Links
Synced at

Thu, 07 Nov 2024 09:21:54 GMT

Languages