rittenhop-ghost/versions/5.94.2/node_modules/gelf-stream
2024-09-23 19:05:38 -04:00
..
test adding local files for running this....locally 2024-09-23 19:05:38 -04:00
.npmignore adding local files for running this....locally 2024-09-23 19:05:38 -04:00
.travis.yml adding local files for running this....locally 2024-09-23 19:05:38 -04:00
example.js adding local files for running this....locally 2024-09-23 19:05:38 -04:00
gelf-stream.js adding local files for running this....locally 2024-09-23 19:05:38 -04:00
LICENSE.txt adding local files for running this....locally 2024-09-23 19:05:38 -04:00
package.json adding local files for running this....locally 2024-09-23 19:05:38 -04:00
README.md adding local files for running this....locally 2024-09-23 19:05:38 -04:00

gelf-stream

Build Status

A node.js stream to send JS objects to a Graylog2 server (in GELF format).

Also provides a stream that can be used directly in Bunyan and provides a number of sane mappings.

Example

var split = require('split'),
    bunyan = require('bunyan'),
    gelfStream = require('gelf-stream')

// gelf-stream comes with Bunyan support

var stream = gelfStream.forBunyan('localhost')

var log = bunyan.createLogger({name: 'foo', streams: [{type: 'raw', stream: stream}]})

log.info('Testing Bunyan') // will be sent to the Graylog2 server on localhost

log.error(new Error('Oh noes!')) // will extract file/line numbers too

stream.end() // Bunyan doesn't currently end the stream when the program has finished

// Or you can use it to stream any sort of object/string

process.stdin
  .pipe(split()) // split into lines
  .pipe(gelfStream.create('localhost', {defaults: {level: 6}}))

process.stdin.resume()

API

gelfStream.create([host], [port], [options])

gelfStream.forBunyan([host], [port], [options])

Installation

With npm do:

npm install gelf-stream