winston-stackify

1.0.3 • Public • Published

Stackify Log API for Winston

npm version

Winston transport for Stackify

Errors and Logs Overview:

http://support.stackify.com/errors-and-logs-overview/

Sign Up for a Trial:

http://www.stackify.com/sign-up/

Installation

$ npm install stackify-logger
$ npm install winston-stackify

Usage

Using the default logger:

var winston = require('winston');
var stackify = require('stackify-logger');
 
stackify.start({apiKey: '***', env: 'dev'});
 
require('winston-stackify').Stackify;
 
winston.add(winston.transports.Stackify, {storage : stackify});

Instantiating your own logger:

var winston = require('winston');
var stackify = require('stackify-logger');
 
stackify.start({apiKey: '***', env: 'dev'});
 
require('winston-stackify').Stackify;
 
var logger = new (winston.Logger)({
    transports: [
        new (winston.transports.Console)(),
        new (winston.transports.Stackify)(options)
    ]
});

The following options could be passed to the start method:

  • apiKey (Required): Stackify API key
  • env: Environment name. If a Stackify agent is installed, this does not need to be set. If a Stackify agent is not installed, this should be set to the environment name.
  • proxy: HTTP proxy
  • debug: Enables internal debug logging for troubleshooting. Defaults to false.

The Stackify Winston transport takes the following options:

  • storage (Required): Stackify logging library instance. You should specify it directly by passing stackify-logger module instance.
  • level: Level of messages that this transport should log.
  • silent: Boolean flag indicating whether to suppress output, defaults to false.
  • handleExceptions: Property set to false by default for this transport because Stackify Logger Library handles exceptions itself already. If you're not using default logger and instantiating your own, you don't need to set this option for Stackify transport.

Troubleshooting

If logging isn't working, enable internal debug logging for Stackify by setting the debug flag in the Stackify options.

stackify.start({apiKey: '***', env: 'dev', debug: true});

You will see stackify-debug.log in your application's directory.

License

Copyright 2019 Stackify, LLC.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Package Sidebar

Install

npm i winston-stackify

Weekly Downloads

2

Version

1.0.3

License

Apache-2.0

Unpacked Size

16 kB

Total Files

4

Last publish

Collaborators

  • tlair-netreo
  • darinhoward
  • pmarvin