Documentation ¶
Index ¶
- Constants
- func Database(name string) zapcore.Field
- func DurationLiteral(key string, val time.Duration) zapcore.Field
- func IsTerminal(w io.Writer) bool
- func LoggerFromContext(ctx context.Context) *zap.Logger
- func New(w io.Writer) *zap.Logger
- func NewContextWithLogger(ctx context.Context, log *zap.Logger) context.Context
- func NewOperation(ctx context.Context, log *zap.Logger, msg, name string, ...) (*zap.Logger, func())
- func OperationElapsed(d time.Duration) zapcore.Field
- func OperationEventEnd() zapcore.Field
- func OperationEventStart() zapcore.Field
- func OperationName(name string) zapcore.Field
- func RetentionPolicy(name string) zapcore.Field
- func Shard(id uint64) zapcore.Field
- func ShardGroup(id uint64) zapcore.Field
- func TraceFields(ctx context.Context) []zap.Field
- func TraceID(ctx context.Context) zap.Field
- type Config
Constants ¶
const ( // OperationNameKey is the logging context key used for identifying name of an operation. OperationNameKey = "op_name" // OperationEventKey is the logging context key used for identifying a notable // event during the course of an operation. OperationEventKey = "op_event" // OperationElapsedKey is the logging context key used for identifying time elapsed to finish an operation. OperationElapsedKey = "op_elapsed" // DBInstanceKey is the logging context key used for identifying name of the relevant database. DBInstanceKey = "db_instance" // DBRetentionKey is the logging context key used for identifying name of the relevant retention policy. DBRetentionKey = "db_rp" // DBShardGroupKey is the logging context key used for identifying relevant shard group. DBShardGroupKey = "db_shard_group" // DBShardIDKey is the logging context key used for identifying name of the relevant shard number. DBShardIDKey = "db_shard_id" // TraceIDKey is the logging context key used for identifying the current trace. TraceIDKey = "ot_trace_id" // TraceSampledKey is the logging context key used for determining whether the current trace will be sampled. TraceSampledKey = "ot_trace_sampled" )
const TimeFormat = "2006-01-02T15:04:05.000000Z07:00"
Variables ¶
This section is empty.
Functions ¶
func IsTerminal ¶
IsTerminal checks if w is a file and whether it is an interactive terminal session.
func LoggerFromContext ¶
LoggerFromContext returns the zap.Logger associated with ctx or nil if no logger has been assigned.
func NewContextWithLogger ¶
NewContextWithLogger returns a new context with log added.
func NewOperation ¶
func NewOperation(ctx context.Context, log *zap.Logger, msg, name string, fields ...zapcore.Field) (*zap.Logger, func())
NewOperation uses the exiting log to create a new logger with context containing a trace id and the operation. Prior to returning, a standardized message is logged indicating the operation has started. The returned function should be called when the operation concludes in order to log a corresponding message which includes an elapsed time and that the operation has ended.
func OperationElapsed ¶
OperationElapsed returns a field for tracking the duration of an operation.
func OperationEventEnd ¶
OperationEventFinish returns a field for tracking the end of an operation.
func OperationEventStart ¶
OperationEventStart returns a field for tracking the start of an operation.
func OperationName ¶
OperationName returns a field for tracking the name of an operation.
func RetentionPolicy ¶
Database returns a field for tracking the name of a database.
func ShardGroup ¶
ShardGroup returns a field for tracking the shard group identifier.
func TraceFields ¶
TraceFields returns a fields "ot_trace_id" and "ot_trace_sampled", values pulled from the (Jaeger) trace ID found in the given context. Returns nil if the context doesn't have a trace ID.