Google Cloud Engine Logging Formatter for Logrus
package main
import (
log "github.com/Sirupsen/logrus"
logrusgce "github.com/znly/logrus-gce"
)
func main() {
log.SetFormatter(logrusgce.NewGCEFormatter(true))
log.WithField("myfield", "myvalue").Info("hey")
}