xesite/vendor/github.com/Xe/ln
Cadey Ratio 3a21ef1926 convert to go buildpack 2017-12-13 11:42:37 -08:00
..
ex convert to go buildpack 2017-12-13 11:42:37 -08:00
example convert to go buildpack 2017-12-13 11:42:37 -08:00
LICENSE convert to go buildpack 2017-12-13 11:42:37 -08:00
README.md convert to go buildpack 2017-12-13 11:42:37 -08:00
action.go convert to go buildpack 2017-12-13 11:42:37 -08:00
context.go convert to go buildpack 2017-12-13 11:42:37 -08:00
doc.go convert to go buildpack 2017-12-13 11:42:37 -08:00
filter.go convert to go buildpack 2017-12-13 11:42:37 -08:00
formatter.go convert to go buildpack 2017-12-13 11:42:37 -08:00
logger.go convert to go buildpack 2017-12-13 11:42:37 -08:00
logger_test.go convert to go buildpack 2017-12-13 11:42:37 -08:00
stack.go add vendor dependencies 2017-05-20 15:43:42 -07:00

README.md

ln: The Natural Logger for Go

ln provides a simple interface to logging, and metrics, and obviates the need to utilize purpose built metrics packages, like go-metrics for simple use cases.

The design of ln centers around the idea of key-value pairs, which can be interpreted on the fly, but "Filters" to do things such as aggregated metrics, and report said metrics to, say Librato, or statsd.

"Filters" are like WSGI, or Rack Middleware. They are run "top down" and can abort an emitted log's output at any time, or continue to let it through the chain. However, the interface is slightly different than that. Rather than encapsulating the chain with partial function application, we utilize a simpler method, namely, each plugin defines an Apply function, which takes as an argument the log event, and performs the work of the plugin, only if the Plugin "Applies" to this log event.

If Apply returns false, the iteration through the rest of the filters is aborted, and the log is dropped from further processing.

Current Status: Initial Development / Concept

(c) 2015, Andrew Gwozdziewycz, BSD Licensed. See LICENSE for more info.