fluent-logger

Version, currently master branch1 version
  • master branchlatestSep 5, 2017

github.com/tobyapi/fluent-logger-crystal

A Fluentd client for Crystal.

7 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  fluent-logger:
    github: tobyapi/fluent-logger-crystal
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.23.1
License
MIT
Author
TobiasGSmollett <landofscala@gmail.com>

Dependencies

Runtime Dependencies

  • msgpack*github: benoist/msgpack-crystal

Development Dependencies

  • spec2*github: waterlink/spec2.crdev
  • timecop*github: TobiasGSmollett/timecop.crdev

README

# fluent-logger-crystal
[![Build Status](https://travis-ci.org/TobiasGSmollett/fluent-logger-crystal.svg?branch=master)](https://travis-ci.org/TobiasGSmollett/fluent-logger-crystal)

A [Fluentd](https://www.fluentd.org/) client for Crystal.

## Installation

Add this to your application's `shard.yml`:

```yaml
dependencies:
  fluent-logger:
    github: TobiasGSmollett/fluent-logger-crystal
```

## Usage

### Simple
```crystal
require "fluent-logger"

log = Fluent::Logger::FluentLogger.new
log.post("myapp.access", {"agent" => "foo"})

# output: myapp.access {"agent":"foo"}
```

### ConsoleLogger
```crystal
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

- [TobiasGSmollett](https://github.com/TobiasGSmollett)  - creator, maintainer

## Thanks
Thanks to FURUHASHI Sadayuki for his awesome work on [fluent-logger-ruby](https://github.com/fluent/fluent-logger-ruby).