@jitesoft/yolog-slack-plugin

2.0.6 • Public • Published

Yolog Slack plugin

npm (scoped) Known Vulnerabilities pipeline status coverage report npm Back project

Plugin for the @jitesoft/yolog logger to post logs to Slack.

This plugin makes use of the slack WebHooks, hence it is only supported on the server side and not browser.

Example view

Usage:

Install with your favorite package manager!

npm i @jitesoft/yolog-slack-plugin --save
yarn add @jitesoft/yolog-slack-plugin

Import and use just as with any other yolog plugin!

import logger from '@jitesoft/yolog';
import SlackPlugin from '@jitesoft/yolog-slack-plugin';
logger.addPlugin(new SlackPlugin('https://webhook/uri'));

The constructor of the slack plugin takes a slack webhook uri, (please check the slack documentation on how to acquire one of those) and an optional channel with the # prefix (or user with the @ prefix). If the channel argument is not set, it will use the default channel set up with the webhook.

Notification

The notification text can be changed with the notificationText setter. It defaults to A log message with the tag '%s' was logged! where %s will be changed the tag name.
You may also add another %s (check the @jitesoft/sprintf module for more info about the placeholders) which will be changed to the log message.

Call stack

In case the message is one of the 'higher level' logging types (error, critical, alert or emergency), the call stack (from the yolog #log method as of now) will be printed as an extra section in the message.

Package Sidebar

Install

npm i @jitesoft/yolog-slack-plugin

Weekly Downloads

4

Version

2.0.6

License

MIT

Unpacked Size

430 kB

Total Files

6

Last publish

Collaborators

  • jitesoft~
  • johannestegner