rsyslog-winston

v1.1.1
rsyslog transport for winston.

rsyslog-winston

A pure Javascript rsyslog module for winston with support for RFC3164, RFC5424 based on syslog-pro

By default, rsyslog-winston is use format rfc3164.

Installation

npm install rsyslog-winston

Example Usage

Example of using rsyslog-winston.

import winston from 'winston'
import RSyslog from 'rsyslog-winston'

const logger = winston.createLogger({
  level: 'error',
  transports: [
    new RSyslog({
      host: 'send_to_remote_host',
      port: 'send_to_remote_port'
    })
  ]
})

Options

{
  app: string, // application name
  host?: string, // rsyslog host
  port?: number, // rysylog port
  rfc?: 'RFC5424' | 'RFC3164',
  format?: Format, // winston log format
}

Metadata

  • MIT
  • >= 12
  • Unknown
  • released 10/12/2022

Downloads

Maintainers