Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/pkg/traces/contextkeys/keys.go
4094 views
1
package contextkeys
2
3
type key int
4
5
const (
6
// Logs is used to pass *logs.Logs through the context
7
Logs key = iota
8
9
// Metrics is used to pass instance.Manager through the context
10
Metrics
11
12
// PrometheusRegisterer is used to pass prometheus.Registerer through the context
13
PrometheusRegisterer
14
)
15
16