项目作者: hirosassa

项目描述 :
Zerolog based logging library optimized for Cloud Logging (formerly Stackdriver Logging)
高级语言: Go
项目地址: git://github.com/hirosassa/zerodriver.git
创建时间: 2021-02-11T01:58:41Z
项目社区:https://github.com/hirosassa/zerodriver

开源协议:MIT License

下载


zerodriver

Actions Status: test
Actions Status: golangci-lint
Go Reference
Go Report Card
Coverage Status
Apache-2.0

Zerolog based logging libary optimized for Cloud Logging (formerly Stackdriver Logging). This package is inspired by Zapdriver.

What is this package?

This package provides simple structured logger optimized for Cloud Logging based on zerolog.

Key features of zerodriver are:

Usage

First of all, initialize a logger.

  1. logger := zerodriver.NewProductionLogger() // production mode (global log level set to `info`)
  2. logger := zerodriver.NewDevelopmentLogger() // development mode (global log level set to `debug`)

Then, write logs by using zerolog based fluent API!

  1. logger.Info().Str("key", "value").Msg("Hello World!")
  2. // output: {"severity":"INFO","key":"value","time":"2009-11-10T23:00:00Z","message":"hello world"}

Here’s complete example:

  1. package main
  2. import (
  3. "github.com/hirosassa/zerodriver"
  4. )
  5. func main() {
  6. logger := zerodriver.NewProductionLogger()
  7. logger.Info().Str("key", "value").Msg("hello world")
  8. }
  9. // output: {"severity":"INFO","key":"value","time":"2009-11-10T23:00:00Z","message":"hello world"}

GCP specific fields

If your log follows LogEntry format,
you can query logs or create metrics alert easier and efficiently on GCP Cloud Logging console.

HTTP request

To log HTTP related metrics and information, you can use following function

  1. func (e *Event) HTTP(req *HTTPPayload) *zerolog.Event

This feature is forked from zapdriver. You can generate zerodriver.HTTPPayload from http.Request and http.Response using NewHTTP function.
Same as zapdriver.NewHTTP, following fields needs to be set manually:

  • ServerIP
  • Latency
  • CacheLookup
  • CacheHit
  • CacheValidatedWithOriginServer
  • CacheFillBytes

Using these feature, you can log HTTP related information as follows,

  1. p := NewHTTP(req, res)
  2. p.Latency = time.Since(start) // add some fields manually
  3. logger.Info().HTTP(p).Msg("request received")

Trace context

To add trace information to your log, you can use TraceContext. The signature of the function is as follows:

  1. func (e *Event) TraceContext(trace string, spanId string, sampled bool, projectID string) *zerolog.Event

You can use this feature as follows:

  1. import "go.opencensus.io/trace"
  2. span := trace.FromContext(r.Context()).SpanContext()
  3. logger.Info().TraceContext(span.TraceID.String(), span.SpanID.String(), true, "my-project").Msg("trace contexts")
  4. // {"severity":"INFO","logging.googleapis.com/trace":"projects/my-project/traces/00000000000000000000000000000000","logging.googleapis.com/spanId":"0000000000000000","logging.googleapis.com/trace_sampled":true,"message":"trace contexts"}

Labels

You can add any “labels” to your log by following:

  1. logger.Info().Labels(zerodriver.Label("foo", "var")).Msg("labeled log")
  2. // {"severity":"INFO","logging.googleapis.com/labels":{"foo":"var"},"message":"labeled log"}

Operations

You can add additional information about a potentially long-running operation with which a log entry is associated by following function:

  1. func (e *Event) Operation(id, producer string, first, last bool) *zerolog.Event

Log entries with the same id are assumed to be part of the same operation.
The producer is an arbitrary identifier that should be globally unique amongst all the logs of all your applications (meaning it should probably be the unique name of the current application).
You should set first to true for the first log in the operation, and last to true for the final log of the operation.

Also see, https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#LogEntryOperation

For readable implementation of operation log, you can use following functions:

  1. func (e *Event) OperationStart(id, producer string) *zerolog.Event
  2. func (e *Event) OperationContinue(id, producer string) *zerolog.Event
  3. func (e *Event) OperationEnd(id, producer string) *zerolog.Event

A concrete example of operation log is as follows:

  1. logger.Info().OperationStart("foo", "bar").Msg("started")
  2. logger.Debug().OperationContinue("foo", "bar").Msg("processing")
  3. logger.Info().OperationEnd("foo", "bar").Msg("done")