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