2020-03-07 16:02:27 -07:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Package event provides support for event based telemetry.
|
|
|
|
package event
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type eventType uint8
|
|
|
|
|
|
|
|
const (
|
2020-03-20 10:00:56 -06:00
|
|
|
invalidType = eventType(iota)
|
|
|
|
LogType // an event that should be recorded in a log
|
|
|
|
StartSpanType // the start of a span of time
|
|
|
|
EndSpanType // the end of a span of time
|
|
|
|
LabelType // some values that should be noted for later events
|
|
|
|
DetachType // an event that causes a context to detach
|
|
|
|
RecordType // a value that should be tracked
|
2020-03-07 16:02:27 -07:00
|
|
|
)
|
|
|
|
|
2020-03-20 10:00:56 -06:00
|
|
|
// sTags is used to hold a small number of tags inside an event whichout
|
|
|
|
// requiring a separate allocation.
|
|
|
|
// As tags are often on the stack, this avoids an allocation at all for
|
|
|
|
// the very common cases of simple events.
|
|
|
|
// The length needs to be large enough to cope with the majority of events
|
|
|
|
// but no so large as to cause undue stack pressure.
|
|
|
|
// A log message with two values will use 3 tags (one for each value and
|
|
|
|
// one for the message itself).
|
|
|
|
type sTags [3]Tag
|
|
|
|
|
|
|
|
// Event holds the information about an event of note that ocurred.
|
2020-03-07 16:02:27 -07:00
|
|
|
type Event struct {
|
2020-03-20 10:00:56 -06:00
|
|
|
At time.Time
|
2020-03-20 06:29:48 -06:00
|
|
|
|
2020-03-20 10:00:56 -06:00
|
|
|
typ eventType
|
|
|
|
static sTags // inline storage for the first few tags
|
|
|
|
dynamic []Tag // dynamically sized storage for remaining tags
|
2020-03-07 16:02:27 -07:00
|
|
|
}
|
|
|
|
|
2020-03-30 06:09:07 -06:00
|
|
|
// eventTagMap implements TagMap for a the tags of an Event.
|
|
|
|
type eventTagMap struct {
|
|
|
|
event Event
|
|
|
|
}
|
|
|
|
|
2020-03-24 19:11:55 -06:00
|
|
|
func (ev Event) IsLog() bool { return ev.typ == LogType }
|
|
|
|
func (ev Event) IsEndSpan() bool { return ev.typ == EndSpanType }
|
|
|
|
func (ev Event) IsStartSpan() bool { return ev.typ == StartSpanType }
|
|
|
|
func (ev Event) IsLabel() bool { return ev.typ == LabelType }
|
|
|
|
func (ev Event) IsDetach() bool { return ev.typ == DetachType }
|
|
|
|
func (ev Event) IsRecord() bool { return ev.typ == RecordType }
|
2020-03-07 16:02:27 -07:00
|
|
|
|
2020-03-24 19:11:55 -06:00
|
|
|
func (ev Event) Format(f fmt.State, r rune) {
|
2020-03-20 10:00:56 -06:00
|
|
|
tagMap := ev.Map()
|
2020-03-24 19:11:55 -06:00
|
|
|
if !ev.At.IsZero() {
|
|
|
|
fmt.Fprint(f, ev.At.Format("2006/01/02 15:04:05 "))
|
2020-03-07 16:02:27 -07:00
|
|
|
}
|
2020-03-20 10:00:56 -06:00
|
|
|
msg := Msg.Get(tagMap)
|
|
|
|
err := Err.Get(tagMap)
|
|
|
|
fmt.Fprint(f, msg)
|
|
|
|
if err != nil {
|
2020-03-07 16:02:27 -07:00
|
|
|
if f.Flag('+') {
|
2020-03-20 10:00:56 -06:00
|
|
|
fmt.Fprintf(f, ": %+v", err)
|
2020-03-07 16:02:27 -07:00
|
|
|
} else {
|
2020-03-20 10:00:56 -06:00
|
|
|
fmt.Fprintf(f, ": %v", err)
|
2020-03-07 16:02:27 -07:00
|
|
|
}
|
|
|
|
}
|
2020-03-24 19:11:55 -06:00
|
|
|
for it := ev.Tags(); it.Valid(); it.Advance() {
|
2020-03-20 06:29:48 -06:00
|
|
|
tag := it.Tag()
|
2020-03-24 21:29:41 -06:00
|
|
|
fmt.Fprintf(f, "\n\t%v", tag)
|
2020-03-20 06:29:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ev Event) Tags() TagIterator {
|
2020-03-20 10:00:56 -06:00
|
|
|
return ChainTagIterators(
|
|
|
|
NewTagIterator(ev.static[:]...),
|
|
|
|
NewTagIterator(ev.dynamic...))
|
2020-03-20 06:29:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ev Event) Map() TagMap {
|
2020-03-30 06:09:07 -06:00
|
|
|
return &eventTagMap{event: ev}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *eventTagMap) Find(key interface{}) Tag {
|
|
|
|
for _, tag := range m.event.static {
|
|
|
|
if tag.Key == key {
|
|
|
|
return tag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, tag := range m.event.dynamic {
|
|
|
|
if tag.Key == key {
|
|
|
|
return tag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Tag{}
|
2020-03-20 10:00:56 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func makeEvent(typ eventType, static sTags, tags []Tag) Event {
|
|
|
|
return Event{
|
|
|
|
typ: typ,
|
|
|
|
static: static,
|
|
|
|
dynamic: tags,
|
|
|
|
}
|
2020-03-07 16:02:27 -07:00
|
|
|
}
|