2.0.8 • Published 3 months ago

pino-discord-transport v2.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

pino-discord-transport

npm version npm downloads

This module provides a transport for pino to send logs over discord webhooks.

Install

yarn add pino-discord-transport

Usage

For test purposes

import { createTransport } from 'pino-discord-transport';
import { pino }  from 'pino';

const options = {
  webhookUrl: 'add your webhook url here',
  webhookType: 1,
  title: 'Test'
};

const logger = pino(createTransport(options));

logger.info('Hello World!');

The code above should produce this message on your discord chat

message-type-info

This was created to be used within a Fastify application.

Here is an example on how to to use this transport within a fastify application.

import Fastify from 'fastify';
import { createTransport } from 'pino-discord-transport';
import { pino } from 'pino';

const options = {
  webhookUrl: 'add your webhook url here', 
  webhookType: 1, // optional, defaults to 1 if not specified
  title: 'Test',
};

const discordLogger = pino(createTransport(options));

const fastify = Fastify({
  logger: discordLogger,
});

const server = async () => {
  await fastify.ready();

  try {
    fastify.listen({
      host: 'localhost',
      port: 3000,
    });
  } catch (err) {
    fastify.log.error(err);
    process.exit(1);
  }
};

server();

You can also exclude some tags from being sent with the removeTags property

const logger = pino(createTransport(options, ['pid', 'hostname']));

It's also possible to search for specific keywords in the log message and stop them from being sent using the filterMsgByKeyword property

const logger = pino(createTransport(options, [], ["hello"]));

The log message is parsed to lowercase before the search, so you should add only lowercase keywords.

Contribution

Feel free to contribute to this package by opening up a pull request.

This package was inspired on the package pino-slack-transport. I believe the creator of the package is due some credit.

2.0.8

3 months ago

2.0.3

6 months ago

2.0.2

6 months ago

2.0.5

6 months ago

2.0.4

6 months ago

2.0.7

6 months ago

2.0.6

6 months ago

2.0.1

6 months ago

2.0.0

6 months ago

1.0.1

2 years ago

1.0.0

2 years ago