Winston logger for use with Google Container Engine's "fluentd-cloud-logging-gke" container
npm install winston-gkeGoogle 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.
These match what's available with Google Cloud Logging:
* debug
* info
* warning
* error
* critical
``javascript
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"}}
``