69 lines
3.1 KiB
Go
69 lines
3.1 KiB
Go
package haystack
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/ExpediaDotCom/haystack-client-go"
|
|
"github.com/containous/traefik/v2/pkg/log"
|
|
"github.com/opentracing/opentracing-go"
|
|
)
|
|
|
|
// Name sets the name of this tracer
|
|
const Name = "haystack"
|
|
|
|
// Config provides configuration settings for a haystack tracer
|
|
type Config struct {
|
|
LocalAgentHost string `description:"Set haystack-agent's host that the reporter will used." json:"localAgentHost,omitempty" toml:"localAgentHost,omitempty" yaml:"localAgentHost,omitempty"`
|
|
LocalAgentPort int `description:"Set haystack-agent's port that the reporter will used." json:"localAgentPort,omitempty" toml:"localAgentPort,omitempty" yaml:"localAgentPort,omitempty"`
|
|
GlobalTag string `description:"Key:Value tag to be set on all the spans." json:"globalTag,omitempty" toml:"globalTag,omitempty" yaml:"globalTag,omitempty" export:"true"`
|
|
TraceIDHeaderName string `description:"Specifies the header name that will be used to store the trace ID." json:"traceIDHeaderName,omitempty" toml:"traceIDHeaderName,omitempty" yaml:"traceIDHeaderName,omitempty" export:"true"`
|
|
ParentIDHeaderName string `description:"Specifies the header name that will be used to store the parent ID." json:"parentIDHeaderName,omitempty" toml:"parentIDHeaderName,omitempty" yaml:"parentIDHeaderName,omitempty" export:"true"`
|
|
SpanIDHeaderName string `description:"Specifies the header name that will be used to store the span ID." json:"spanIDHeaderName,omitempty" toml:"spanIDHeaderName,omitempty" yaml:"spanIDHeaderName,omitempty" export:"true"`
|
|
BaggagePrefixHeaderName string `description:"Specifies the header name prefix that will be used to store baggage items in a map." json:"baggagePrefixHeaderName,omitempty" toml:"baggagePrefixHeaderName,omitempty" yaml:"baggagePrefixHeaderName,omitempty" export:"true"`
|
|
}
|
|
|
|
// SetDefaults sets the default values.
|
|
func (c *Config) SetDefaults() {
|
|
c.LocalAgentHost = "LocalAgentHost"
|
|
c.LocalAgentPort = 35000
|
|
}
|
|
|
|
// Setup sets up the tracer
|
|
func (c *Config) Setup(serviceName string) (opentracing.Tracer, io.Closer, error) {
|
|
tag := strings.SplitN(c.GlobalTag, ":", 2)
|
|
|
|
value := ""
|
|
if len(tag) == 2 {
|
|
value = tag[1]
|
|
}
|
|
|
|
host := "localhost"
|
|
port := 35000
|
|
if len(c.LocalAgentHost) > 0 {
|
|
host = c.LocalAgentHost
|
|
}
|
|
if c.LocalAgentPort > 0 {
|
|
port = c.LocalAgentPort
|
|
}
|
|
|
|
tracer, closer := haystack.NewTracer(serviceName, haystack.NewAgentDispatcher(host, port, 3*time.Second, 1000),
|
|
haystack.TracerOptionsFactory.Tag(tag[0], value),
|
|
haystack.TracerOptionsFactory.Propagator(opentracing.HTTPHeaders,
|
|
haystack.NewTextMapPropagator(haystack.PropagatorOpts{
|
|
TraceIDKEYName: c.TraceIDHeaderName,
|
|
ParentSpanIDKEYName: c.ParentIDHeaderName,
|
|
SpanIDKEYName: c.SpanIDHeaderName,
|
|
BaggagePrefixKEYName: c.BaggagePrefixHeaderName,
|
|
}, haystack.DefaultCodex{})),
|
|
haystack.TracerOptionsFactory.Logger(&haystackLogger{logger: log.WithoutContext()}),
|
|
)
|
|
|
|
// Without this, child spans are getting the NOOP tracer
|
|
opentracing.SetGlobalTracer(tracer)
|
|
|
|
log.WithoutContext().Debug("haystack tracer configured")
|
|
|
|
return tracer, closer, nil
|
|
}
|