1.1.1 • Published 11 years ago
winston-splunkstorm v1.1.1
winston-splunkstorm 
In their Logging Best Practises Splunk strongly encourages the usage of key-value pairs in logs. This winston plugin takes messages and meta data hashes and creates a key-value structured string out of it.
Installation
npm install winston-splunkstormExample Usage
var winston = require('winston');
var splunkstorm = require('winston-splunkstorm');
winston.add(splunkstorm, {
apiKey: 'api-key',
projectId: 'project-id',
apiHostName: 'api-host-name'
});
winston.info({a: 'b'});
//output: 2013-12-09T07:10:49.522Z a=b, lvl=info, hst=fooHostParameters for the splunkstorm constructor:
apiKeyyour apiKey at splunkstorm.com (mandatory)projectIdyour projectId at splunkstorm.com (mandatory)apiHostNamethe hostname assigned to your project by splunkStorm
Find more Details here.
Built with splunkstorm the client for the splunkstorm api.
Happy Logging!

