Skip to content

Latest commit

 

History

History
57 lines (53 loc) · 970 Bytes

README.md

File metadata and controls

57 lines (53 loc) · 970 Bytes

Logstash UDP stream for Bunyan

Configuration options

level string info
server string os.hostname()
host string "127.0.0.1"
port number 9999
application string process.title
pid string process.pid
tags array|string[] ["bunyan"]

Adding the bunyan-logstash stream to Bunyan

var log = bunyan.createLogger({
  streams: [
    {
      type: "raw",
      stream: require('bunyan-logstash').createStream({
        host: '127.0.0.1',
        port: 5505
      })
    }
  ]
});