1
0
mirror of https://github.com/golang/go synced 2024-11-06 03:16:10 -07:00
go/internal/telemetry/event/metric.go

14 lines
301 B
Go
Raw Normal View History

// 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
import (
"context"
)
func Record(ctx context.Context, tags ...Tag) {
dispatch(ctx, makeEvent(RecordType, sTags{}, tags))
}