winston-gke

Winston logger for use with Google Container Engine's "fluentd-cloud-logging-gke" container

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
winston-gke
1101.0.27 years ago7 years agoMinified + gzip package size for winston-gke in KB

Readme

winston-gke
Winston logger decorator for use with Google Container Engine's fluentd-cloud-logging-gke container
Google Container Engine makes it really easy to get your logs from stdout to Google Cloud Logging, but Winston's Console transport doesn't play nice by default. Pass any logger instance to winston-gke and it will configure things for you.

Available Log Levels

These match what's available with Google Cloud Logging:
  • debug
  • info
  • warning
  • error
  • critical

Usage

var winston = require('winston');
var gke = require('winston-gke');

var logger = gke(new winston.Logger());

logger.debug('debug!'); // {"severity":"DEBUG","message":"debug!"}
logger.info('info!', {somekey: 'This is some metadata'}); // {"severity":"INFO","message":"info!","meta":{"somekey":"This is some metadata"}}