Skip to content

RisingStack/winston-gke

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"}}

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%