Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 382 Bytes

bunyan.md

File metadata and controls

18 lines (14 loc) · 382 Bytes

Bunyan filter

Status : core plugin, unit tested and maintained.

The bunyan filter parse the bunyan log format.

Example 1 : parse the logs with type toto, using the bunyan log format. Config using url: filter://bunyan://?only_type=toto

Config using logstash format:

filter {
  if [type] == 'toto' {
    bunyan {}
  }
}