Documentation ¶
Index ¶
- type Encoder
- type Field
- func Bool(key string, val bool) Field
- func Error(err error) Field
- func Float32(key string, val float32) Field
- func Float64(key string, val float64) Field
- func Int(key string, val int) Field
- func Int32(key string, val int32) Field
- func Int64(key string, val int64) Field
- func InterleavedKVToFields(keyValues ...interface{}) ([]Field, error)
- func Lazy(ll LazyLogger) Field
- func Object(key string, obj interface{}) Field
- func String(key, val string) Field
- func Uint32(key string, val uint32) Field
- func Uint64(key string, val uint64) Field
- type LazyLogger
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Encoder ¶
type Encoder interface { EmitString(key, value string) EmitBool(key string, value bool) EmitInt(key string, value int) EmitInt32(key string, value int32) EmitInt64(key string, value int64) EmitUint32(key string, value uint32) EmitUint64(key string, value uint64) EmitFloat32(key string, value float32) EmitFloat64(key string, value float64) EmitObject(key string, value interface{}) EmitLazyLogger(value LazyLogger) }
Encoder allows access to the contents of a Field (via a call to Field.Marshal).
Tracer implementations typically provide an implementation of Encoder; OpenTracing callers typically do not need to concern themselves with it.
type Field ¶
type Field struct {
// contains filtered or unexported fields
}
Field instances are constructed via LogBool, LogString, and so on. Tracing implementations may then handle them via the Field.Marshal method.
"heavily influenced by" (i.e., partially stolen from) https://github.com/uber-go/zap
func InterleavedKVToFields ¶
InterleavedKVToFields converts keyValues a la Span.LogKV() to a Field slice a la Span.LogFields().
func Lazy ¶
func Lazy(ll LazyLogger) Field
Lazy adds a LazyLogger to a Span.LogFields() record; the tracing implementation will call the LazyLogger function at an indefinite time in the future (after Lazy() returns).
func (Field) Marshal ¶
Marshal passes a Field instance through to the appropriate field-type-specific method of an Encoder.
type LazyLogger ¶
type LazyLogger func(fv Encoder)
LazyLogger allows for user-defined, late-bound logging of arbitrary data