0.1.2 • Published 7 years ago

bunyan-pagerduty v0.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

bunyan-pagerduty

bunyan-pagerduty bunyan-pagerduty bunyan-pagerduty Build Status Coveralls code climate

Bunyan stream for PagerDuty chat integration

First install bunyan...

npm install bunyan

Then install bunyan-pagerduty

npm install bunyan-pagerduty

##Basic Setup

var bunyan  = require("bunyan"),
	BunyanPagerDuty = require('bunyan-pagerduty'),
	log;

log = bunyan.createLogger({
	name: "myApp",
	stream: new BunyanPagerDuty({
		service_key: "myservicekey",
	}),
	level: "error"
});

log.error("hello bunyan PD");

You can also pass an optional error handler.

new BunyanPagerDuty({
	service_key: "myservicekey",
}, function(error){
	console.log(error);
});

##Custom Formatters

By default the logs are formatted like so: [LOG_LEVEL] message, unless you specify a customFormatter function.

	log = bunyan.createLogger({
	name: "myApp",
	stream: new BunyanPagerDuty({
		service_key: "myservicekey",
		customFormatter: function(record, levelName){
			return {description: "[" + levelName + "] " + record.msg }
		}
	}),
	level: "error"
});

##Custom Formatter Options

Check the PagerDuty docs for custom formatter options.

###Putting it all together

var bunyan  = require("bunyan"),
	BunyanPagerDuty = require('bunyan-pagerduty'),
	log;

log = bunyan.createLogger({
	name: 'myapp',
	stream: new BunyanPagerDuty({
		service_key: "myservicekey",
		customFormatter: function(record, levelName) {
			return {
				description: `[${levelName}] ${record.msg}`,
        details: record,
        client: 'My Client Name',
        incident_key: 'Unique incident key',
        client_url: 'https://some.custom.url.com',
        contexts: [
          {
            type: "link",
            href: "http://acme.pagerduty.com"
          },{
            type: "link",
            href: "http://acme.pagerduty.com",
            text: "View the incident on PagerDuty"
          },{
            type: "image",
            src: "https://chart.googleapis.com/chart?chs=600x400&chd=t:6,2,9,5,2,5,7,4,8,2,1&cht=lc&chds=a&chxt=y&chm=D,0033FF,0,0,5,1"
          }
        ]
			};
		}
	}),
	level: 'error'
});

This library was adapted from bunyan-slack

The MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.