mirror of
https://github.com/golang/go
synced 2024-11-06 04:36:15 -07:00
224c947ce5
This separates the concerns of tag collections that have to be iterated and tag collections that need lookup by key. Also make it so that events just carry a plain slice of tags. We pass a TagMap down through the exporters and allow it to be extended on the way. We no longer need the event.Query method (or the event type) We now exclusivley use Key as the identity, and no longer have a common core implementation but just implement it directly in each type. This removes some confusion that was causing the same key through different paths to end up with a different identity. Change-Id: I61e47adcb397f4ca83dd90342b021dd8e9571ed3 Reviewed-on: https://go-review.googlesource.com/c/tools/+/224278 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
// 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 export
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
"golang.org/x/tools/internal/telemetry/event"
|
|
)
|
|
|
|
// LogWriter returns an Exporter that logs events to the supplied writer.
|
|
// If onlyErrors is true it does not log any event that did not have an
|
|
// associated error.
|
|
// It ignores all telemetry other than log events.
|
|
func LogWriter(w io.Writer, onlyErrors bool) event.Exporter {
|
|
lw := &logWriter{writer: w, onlyErrors: onlyErrors}
|
|
return lw.ProcessEvent
|
|
}
|
|
|
|
type logWriter struct {
|
|
writer io.Writer
|
|
onlyErrors bool
|
|
}
|
|
|
|
func (w *logWriter) ProcessEvent(ctx context.Context, ev event.Event, tagMap event.TagMap) context.Context {
|
|
switch {
|
|
case ev.IsLog():
|
|
if w.onlyErrors && ev.Error == nil {
|
|
return ctx
|
|
}
|
|
fmt.Fprintf(w.writer, "%v\n", ev)
|
|
case ev.IsStartSpan():
|
|
if span := GetSpan(ctx); span != nil {
|
|
fmt.Fprintf(w.writer, "start: %v %v", span.Name, span.ID)
|
|
if span.ParentID.IsValid() {
|
|
fmt.Fprintf(w.writer, "[%v]", span.ParentID)
|
|
}
|
|
}
|
|
case ev.IsEndSpan():
|
|
if span := GetSpan(ctx); span != nil {
|
|
fmt.Fprintf(w.writer, "finish: %v %v", span.Name, span.ID)
|
|
}
|
|
}
|
|
return ctx
|
|
}
|