mirror of
https://github.com/golang/go
synced 2024-11-06 03:16:10 -07:00
d780ff7bdd
This is now the only package that is exposed to normal use, and should be the only thing to appear in libraries. Change-Id: I90ee47c6519f30db16ff5d5d2910be86e91e5df2 Reviewed-on: https://go-review.googlesource.com/c/tools/+/222557 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
56 lines
1.3 KiB
Go
56 lines
1.3 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"
|
|
"os"
|
|
|
|
"golang.org/x/tools/internal/telemetry/event"
|
|
)
|
|
|
|
func init() {
|
|
event.SetExporter(LogWriter(os.Stderr, true))
|
|
}
|
|
|
|
// 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 {
|
|
return &logWriter{writer: w, onlyErrors: onlyErrors}
|
|
}
|
|
|
|
type logWriter struct {
|
|
writer io.Writer
|
|
onlyErrors bool
|
|
}
|
|
|
|
func (w *logWriter) ProcessEvent(ctx context.Context, ev event.Event) 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
|
|
}
|
|
|
|
func (w *logWriter) Metric(context.Context, event.MetricData) {}
|