mirror of
https://github.com/golang/go
synced 2024-11-06 09:16:16 -07:00
65e3620a7a
Change-Id: I5de33edc352a5202fdf9e38538a224dd6adafedb Reviewed-on: https://go-review.googlesource.com/c/tools/+/190799 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
25 lines
654 B
Go
25 lines
654 B
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"
|
|
|
|
"golang.org/x/tools/internal/telemetry"
|
|
)
|
|
|
|
// Null returns an observer that does nothing.
|
|
func Null() Exporter {
|
|
return null{}
|
|
}
|
|
|
|
type null struct{}
|
|
|
|
func (null) StartSpan(context.Context, *telemetry.Span) {}
|
|
func (null) FinishSpan(context.Context, *telemetry.Span) {}
|
|
func (null) Log(context.Context, telemetry.Event) {}
|
|
func (null) Metric(context.Context, telemetry.MetricData) {}
|
|
func (null) Flush() {}
|