blob: 77cbe75e9fd9559a6d4aef6159497808beecb620 [file] [log] [blame]
// 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.
// +build disable_events
package event
import (
"context"
"time"
)
type Builder struct{ ctx context.Context }
type Exporter struct {
Now func() time.Time
}
func NewExporter(h interface{}) *Exporter { return &Exporter{} }
func To(ctx context.Context) Builder { return Builder{} }
func (b Builder) Clone() Builder { return b }
func (b Builder) With(label Label) Builder { return b }
func (b Builder) WithAll(labels ...Label) Builder { return b }
func (b Builder) Log(message string) {}
func (b Builder) Logf(template string, args ...interface{}) {}
func (b Builder) Metric() {}
func (b Builder) Annotate() {}
func (b Builder) End() {}
func (b Builder) Event() *Event { return &Event{} }
func (b Builder) Start(name string) (context.Context, func()) {
return b.ctx, func() {}
}
func newContext(ctx context.Context, exporter *Exporter, parent uint64) context.Context {
return ctx
}
func FromContext(ctx context.Context) (*Exporter, uint64) { return nil, 0 }
func setDefaultExporter(e *Exporter) {}