generated from xmidt-org/.go-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.go
47 lines (37 loc) · 1.73 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// SPDX-FileCopyrightText: 2021 Comcast Cable Communications Management, LLC
// SPDX-License-Identifier: Apache-2.0
package candlelight
import (
"go.opentelemetry.io/otel/trace"
)
// Config specifies parameters relevant for otel trace provider.
type Config struct {
// ApplicationName is the name for this application.
ApplicationName string `json:"applicationName"`
// Provider is the name of the trace provider to use.
Provider string `json:"provider"`
// Endpoint is the endpoint to which spans need to be submitted.
Endpoint string `json:"endpoint"`
// SkipTraceExport works only in case of provider stdout. Set
// SkipTraceExport = true if you don't want to print the span
// and tracer information in stdout.
SkipTraceExport bool `json:"skipTraceExport"`
// Providers are useful when client wants to add their own custom
// TracerProvider.
Providers map[string]ProviderConstructor `json:"-"`
// ParentBased and NoParent dictate if and when new spans should be created.
// ParentBased = "ignore" (default), tracing is effectively turned off and the "NoParent" value is ignored
// ParentBased = "honor", the sampling decision is made by the parent of the span
ParentBased string `json:"parentBased"`
// NoParent decides if a root span should be initiated in the case where there is no existing parent
// This value is ignored if ParentBased = "ignore"
// NoParent = "never" (default), root spans are not initiated
// NoParent = "always", roots spans are initiated
NoParent string `json:"noParent"`
}
// TraceConfig will be used in TraceMiddleware to use config and TraceProvider
// objects created by ConfigureTracerProvider.
// (Deprecated). Consider using Tracing instead.
type TraceConfig struct {
TraceProvider trace.TracerProvider
}