Skip to content
Snippets Groups Projects
metadata.go 1.57 KiB
Newer Older
// Copyright 2017 Monax Industries Limited
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

Silas Davis's avatar
Silas Davis committed
package logging

import (
Silas Davis's avatar
Silas Davis committed
	"time"
Silas Davis's avatar
Silas Davis committed

	kitlog "github.com/go-kit/kit/log"
Silas Davis's avatar
Silas Davis committed
	"github.com/go-stack/stack"
Benjamin Bollen's avatar
Benjamin Bollen committed
	"github.com/monax/eris-db/logging/loggers"
	"github.com/monax/eris-db/logging/structure"
Silas Davis's avatar
Silas Davis committed
)

const (
	// To get the Caller information correct on the log, we need to count the
	// number of calls from a log call in the code to the time it hits a kitlog
	// context: [log call site (5), Info/Trace (4), MultipleChannelLogger.Log (3),
	// kitlog.Context.Log (2), kitlog.bindValues (1) (binding occurs),
	// kitlog.Caller (0), stack.caller]
	infoTraceLoggerCallDepth = 5
)

Silas Davis's avatar
Silas Davis committed
var defaultTimestampUTCValuer kitlog.Valuer = func() interface{} {
	return time.Now()
}

func WithMetadata(infoTraceLogger loggers.InfoTraceLogger) loggers.InfoTraceLogger {
	return infoTraceLogger.With(structure.TimeKey, defaultTimestampUTCValuer,
		structure.CallerKey, kitlog.Caller(infoTraceLoggerCallDepth),
		"trace", TraceValuer())
Silas Davis's avatar
Silas Davis committed
}
func TraceValuer() kitlog.Valuer {
	return func() interface{} { return stack.Trace() }