winston-splunk
v0.1.0
Published
A Splunk transport for winston
Downloads
1,677
Readme
winston-splunk
A splunk transport for winston. Inspired by winston-greylog2.
Installation
Tested on node-0.6.x, requires npm.
$ # Currently not in npm use git for now.
$ npm install winston
$ npm install winston-splunk
Usage
var winston = require('winston');
winston.add(require('winston-splunk').splunk, options);
Splunk props.conf
Example props.conf
[udp:54321]
NO_BINARY_CHECK=1
SHOULD_LINEMERGE=false
TIME_PREFIX={"_timestamp":
Options are the following:
level: Level of messages this transport should log. (default: info)
silent: Boolean flag indicating whether to suppress output. (default: false)
splunkHost: IP address or hostname of the Splunk server. (default: localhost)
splunkPort: Port to send messages to on the Splunk server. (default: 54321)
splunkHostname: The hostname associated with Splunk messages. (default: require('os').hostname())
splunkFacility: The Splunk facility to send log messages.. (default: nodejs)