mirror of
https://github.com/golang/go
synced 2024-11-19 02:44:44 -07:00
234df48a20
The metadata for the workspace packages may not be available when we need it, so we should allow loading a single package ID. This can be improved in follow-up CLs by consolidating the individual IDs into one call to packages.Load. Some adjustments from CL 212102 were split out into this CL. Change-Id: I173a79a3cb136530bc99d093f1c2be189eac8ce2 Reviewed-on: https://go-review.googlesource.com/c/tools/+/212628 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com>
42 lines
1.3 KiB
Go
42 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 telemetry provides the hooks and adapters to allow use of telemetry
|
|
// throughout gopls.
|
|
package telemetry
|
|
|
|
import (
|
|
"golang.org/x/tools/internal/telemetry/stats"
|
|
"golang.org/x/tools/internal/telemetry/tag"
|
|
"golang.org/x/tools/internal/telemetry/unit"
|
|
)
|
|
|
|
const (
|
|
// create the tag keys we use
|
|
Method = tag.Key("method")
|
|
StatusCode = tag.Key("status.code")
|
|
StatusMessage = tag.Key("status.message")
|
|
RPCID = tag.Key("id")
|
|
RPCDirection = tag.Key("direction")
|
|
File = tag.Key("file")
|
|
Directory = tag.Key("directory")
|
|
URI = tag.Key("URI")
|
|
Package = tag.Key("package")
|
|
PackagePath = tag.Key("package_path")
|
|
Query = tag.Key("query")
|
|
)
|
|
|
|
var (
|
|
// create the stats we measure
|
|
Started = stats.Int64("started", "Count of started RPCs.", unit.Dimensionless)
|
|
ReceivedBytes = stats.Int64("received_bytes", "Bytes received.", unit.Bytes)
|
|
SentBytes = stats.Int64("sent_bytes", "Bytes sent.", unit.Bytes)
|
|
Latency = stats.Float64("latency_ms", "Elapsed time in milliseconds", unit.Milliseconds)
|
|
)
|
|
|
|
const (
|
|
Inbound = "in"
|
|
Outbound = "out"
|
|
)
|