Documentation ¶
Overview ¶
Package telemetry provides the hooks and adapters to allow use of telemetry throughout gopls.
Index ¶
Constants ¶
View Source
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") Snapshot = tag.Key("snapshot") )
View Source
const ( Inbound = "in" Outbound = "out" )
Variables ¶
View Source
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) )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.