Skip to content

drobune/goluent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

goluent

Log mapper of [fluend-logger] (https://github.com/fluent/fluent-logger-golang).

Log style is the same as glog.

All log message print stdout and fluentd with tag goluent.<your hostname>.*.

This is inspired by http://12factor.net/

fluentd configuration

add this

<match goluent.**>
  @type stdout
  @id stdout_output
</match>

How to use

in your *.go file

import (
       log "github.com/drobune/goluent"
)
log.Info("goluent now")
// 2015/07/03 15:33:10 goluent now

log.Errorf("over %v sec", 10)
//2015/07/03 15:37:00 over 10 sec

About

Override standard log library by using fluend-logger https://github.com/fluent/fluent-logger-golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages