npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sumologic-winston-logger

v1.0.4

Published

log wrapper for sumo and winston

Downloads

18

Readme

Synopsis

Sumologic-winston-logger is a log wrapper that can write to multiple logging services. Currently, Winston and SumoLogic are supported. The package also adds strackTrace info. This gets tacked on to Sumo calls, and method, module, and line info or concatenated to the end of winston lines. This is not currently configrable.

Motivation

To centralize logging in a single npm registry/node package

Installation

The logger is discoverable on npmjs.org.

To install:

npm install sumologic-winston-logger --save

Configuration - Environment Variables:

The logger expects certain environment variables to be present in order to be operational. If they environment variables are not set, the logger will not load.

The expected environment variables are:

  • LOG_LEVEL
  • SUMO_LOGIC_ENDPOINT
  • SUMO_LOGIC_COLLECTOR_CODE

The following sections decribe the details of each of the environment variables listed above.

LOG_LEVEL

Log levels supported inclusively according to the following list, as borrowed from winston:

  • silly
  • verbose
  • debug
  • info
  • warn
  • error

Thus, if one declares a log level of silly, the levels error, warn, info, debug, and verbose are reported too.

|Example to set the environment varible LOG_LEVEL| |---| |export LOG_LEVEL=error|

SUMO_LOGIC_ENDPOINT

The endpoint defined in SumoLogic to where log information will be sent. See the section, Finding SumoLogic endpoint and collector code, below to find the value to assign to this environment variable.

|Example to set the environment varible SUMO_LOGIC_ENDPOINT| |---| |export SUMO_LOGIC_ENDPOINT=https://endpoint1.collection.us2.sumologic.com/receiver/v1/http/|

SUMO_LOGIC_COLLECTOR_CODE

The collector code as defined in SumoLogic. The Collector Code is the Base64 string that appears after the last slash in the URL defined in the SumoLogic Control Panel.

|Example to set the environment varible SUMO_LOGIC_COLLECTOR_CODE| |---| |export SUMO_LOGIC_COLLECTOR_CODE=SSBhbSBzb21lIGJhc2U2NCBlbmNvZGluZw==|

To learn more about setting this environment variable, see the section, Finding SumoLogic endpoint and collector code, below.

Finding SumoLogic endpoint and collector code

To find the values that you will apply the environment variables, SUMO_LOGIC_ENDPOINT and SUMO_LOGIC_COLLECTOR_CODE, in the SumoLogic Control Panel, goto: Manage > Collection, and get the source category

Screen Shot 2016-10-10 at 2.03.31 PM.png

Screen Shot 2016-10-10 at 2.03.57 PM.png

Screen Shot 2016-10-10 at 2.04.18 PM.png

The endpoint is the part of the url that ends with a slash. i.e. https://endpoint1.collection.us2.sumologic.com/receiver/v1/http/

The collector code is the Base64 encrypted part of the URL that follows the last slash in the url.

JavaScript/ECMAScript support

ECMAScript 6 is the primary version that this logger supports and is coded in. ECMAScript 5 is also supported.

Simply choose the verion you want when you include the package

javascript

// to load ES6
const logger = require('sumologic-winston-logger').ES6;

// to load ES5
const logger = require('sumologic-winston-logger').ES5;

Sample Use

The intent of this package is to support all the behavior common to console.log while also including support of multiple arguements and all data types.

Formatting console logs is left to winston, except that some stackTrace info is appended to each line.

Formatting of SumoLogic logs is handled by this module in the foloowing ways:

  • strings from multiple parameters are join with a space
  • if multiple objects are passed in, their keys and values are combined, which makes data more searchable on SumoLogic
  • structued stackTrace info is added to every log.

If a function is provided as the last argument, it will be used as a callback. Both SumoLogic and winton return callbacks, so the results will be combined into one object. Winston resolves with the log level. Sumo resolves with an empty string. example:

{ 
  winston: 'debug',
  sumoLogic: ''
}

Logging Examples

const logger = require('sumologic-winston-logger').ES6;

logger.log(debug', 'this is a debug statement using log');
logger.debug({ message: 'this is a debug statement using an object'});
logger.error('this is an error statement');
logger.error(new Error('this is an error statement'));
logger.warn('this is a warning statement', { meta: 'data' });
logger.info('this is an info statement', { meta: 'data' });
logger.verbose('this is a verbose statement');
logger.silly('this is a silly statement o_O');
logger.debug('this is a debug statement with 2 params', { meta: 'data' });
logger.debug('debug', 'this is a debug with 4 params', { meta: 'data' }, (err, data) => {
    if (err) doSomething(err);
});

You can also send SumoLogic metadata as a third parameter (optional, advanced) in the log method call. There is also a fourth parameter which is a callback to detect failures to sumo (optional).
By default, these are logged to console. The log() method is also supported, and adds a level parameter in position 1.

Tailing

Trailing allows you to scroll through log output in real time. You can trail log data in SumoLogic.

To trail in SumoLogic go to Search > Live Tail in the SumoLogic user interface and enter sourceCategory=<source category> in the search bar, where <source category> is the log you want to trail. Then click, Run

|Example| |---| |sourceCategory=local/node/challengeAPI/logs|

Making Code Changes to the Logger

In short, work under the src-ES6 folder. When you are ready to build to ES5, use the command npm build.

Stack Trace

All logging to error() are added the stack trace. All other log levels will include a line number and file name.

License

ISC