Low commit activity in last 3 years
No release in over a year
Transfer utiltity for docker log to Fluentd
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.14
~> 3.0
~> 0.48
~> 13.0

Runtime

~> 0.5
~> 3.10.0
~> 1.0
 Project Readme

DockerFluentLogger

Output Rails log to JSON format.

e.g.

HTTP request outputs following log to STDOUT.

{
  "method": "GET",
  "path": "/",
  "format": "html",
  "controller": "IndexController",
  "action": "index",
  "status": 403,
  "duration": 428.27,
  "view": 0.29,
  "db": 0.0,
  "timestamp": "2019-12-11T12:21:00.050200Z",
  "hostname": "f78a33527a16",
  "uuid": "a4ecff04-d6d9-4477-8746-0b78ccae0e13",
  "url": "http://localhost:3000/",
  "remote_ip": "172.29.0.1",
  "referer": null,
  "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"
}

Rails logger also output logs in JSON as well.

logger.info('example')
# Or
DockerFluentLogger.create.info('example')

Following log is output.

{
  "severity": "INFO",
  "timestamp": "2019-12-11T12:19:01.599089Z",
  "message": "example"
}

Installation

Add this line to your application's Gemfile:

gem 'docker-fluent-logger'

And then execute:

$ bundle

Or install it yourself as:

$ gem install docker-fluent-logger

Setup

Execute following command in root directory of application.

$ bundle exec docker-fluent-logger install
create config/initializers/lograge.rb

Add following code to app/controllers/application_controller.rb.

class ApplicationController < ActionController::Base
  include DockerFluentLogger::Payload

  rescue_from Exception, with: :render_500 if Rails.env.production?

  def render_500(e = nil)
    append_payload_error(e) if e.present?
  end
end

Add following code to config/environments/***.rb.

config.logger = DockerFluentLogger.create

License

MIT