Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

winston-to-newrelic-logs

rudouglas6.1kMIT1.0.11

A transport for winston to send to New Relic Log Product

logging, sysadmin, tools, winston, newrelic

readme

winston-to-newrelic-logs

Build Status

A newrelic transport for winston that sends logs to New Relic's Log Product

Installation

Tested on node-6.x, requires npm.

  $ npm install winston --save
  $ npm install winston-to-newrelic-logs --save

Usage

const winston = require('winston');
const NRLogsWinston = require('winston-to-newrelic-logs');
const logger = winston.createLogger({
    transports: [
      new NewrelicWinston({ 
        licenseKey: process.env.NR_LICENCE, 
        apiUrl: 'https://log-api.newrelic.com' 
      }),
    ]
});

logger.log({
    level: 'info',
    message: 'Message'
  });

All other possible winston's levels, or custom levels, will noop