2022-04-06 23:20:29 +00:00
|
|
|
package tracing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
2022-04-11 23:02:13 +00:00
|
|
|
"fmt"
|
2022-04-06 23:20:29 +00:00
|
|
|
"net/http"
|
2022-04-11 23:02:13 +00:00
|
|
|
"os"
|
|
|
|
"runtime"
|
2022-04-06 23:20:29 +00:00
|
|
|
|
2022-04-11 19:57:50 +00:00
|
|
|
"github.com/rs/zerolog"
|
2022-04-21 21:37:16 +00:00
|
|
|
otelContrib "go.opentelemetry.io/contrib/propagators/jaeger"
|
2022-04-06 23:20:29 +00:00
|
|
|
"go.opentelemetry.io/otel"
|
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
|
|
"go.opentelemetry.io/otel/codes"
|
|
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace"
|
|
|
|
"go.opentelemetry.io/otel/propagation"
|
|
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
tracesdk "go.opentelemetry.io/otel/sdk/trace"
|
|
|
|
semconv "go.opentelemetry.io/otel/semconv/v1.7.0"
|
|
|
|
"go.opentelemetry.io/otel/trace"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
service = "cloudflared"
|
|
|
|
tracerInstrumentName = "origin"
|
|
|
|
|
2022-04-11 23:02:13 +00:00
|
|
|
TracerContextName = "cf-trace-id"
|
|
|
|
TracerContextNameOverride = "uber-trace-id"
|
2022-04-11 19:57:50 +00:00
|
|
|
|
|
|
|
IntCloudflaredTracingHeader = "cf-int-cloudflared-tracing"
|
2022-04-06 23:20:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-04-11 19:57:50 +00:00
|
|
|
CanonicalCloudflaredTracingHeader = http.CanonicalHeaderKey(IntCloudflaredTracingHeader)
|
2022-04-11 23:02:13 +00:00
|
|
|
Http2TransportAttribute = trace.WithAttributes(transportAttributeKey.String("http2"))
|
|
|
|
QuicTransportAttribute = trace.WithAttributes(transportAttributeKey.String("quic"))
|
|
|
|
HostOSAttribute = semconv.HostTypeKey.String(runtime.GOOS)
|
|
|
|
HostArchAttribute = semconv.HostArchKey.String(runtime.GOARCH)
|
2022-04-06 23:20:29 +00:00
|
|
|
|
2022-04-11 23:02:13 +00:00
|
|
|
otelVersionAttribute attribute.KeyValue
|
|
|
|
hostnameAttribute attribute.KeyValue
|
|
|
|
cloudflaredVersionAttribute attribute.KeyValue
|
|
|
|
serviceAttribute = semconv.ServiceNameKey.String(service)
|
|
|
|
|
|
|
|
transportAttributeKey = attribute.Key("transport")
|
|
|
|
otelVersionAttributeKey = attribute.Key("jaeger.version")
|
2022-04-06 23:20:29 +00:00
|
|
|
|
|
|
|
errNoopTracerProvider = errors.New("noop tracer provider records no spans")
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Register the jaeger propagator globally.
|
|
|
|
otel.SetTextMapPropagator(otelContrib.Jaeger{})
|
2022-04-11 23:02:13 +00:00
|
|
|
otelVersionAttribute = otelVersionAttributeKey.String(fmt.Sprintf("go-otel-%s", otel.Version()))
|
|
|
|
if hostname, err := os.Hostname(); err == nil {
|
|
|
|
hostnameAttribute = attribute.String("hostname", hostname)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Init(version string) {
|
|
|
|
cloudflaredVersionAttribute = semconv.ProcessRuntimeVersionKey.String(version)
|
2022-04-06 23:20:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type TracedRequest struct {
|
|
|
|
*http.Request
|
|
|
|
trace.TracerProvider
|
|
|
|
exporter InMemoryClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTracedRequest creates a new tracer for the current request context.
|
|
|
|
func NewTracedRequest(req *http.Request) *TracedRequest {
|
|
|
|
ctx, exists := extractTrace(req)
|
|
|
|
if !exists {
|
|
|
|
return &TracedRequest{req, trace.NewNoopTracerProvider(), &NoopOtlpClient{}}
|
|
|
|
}
|
|
|
|
mc := new(InMemoryOtlpClient)
|
|
|
|
exp, err := otlptrace.New(req.Context(), mc)
|
|
|
|
if err != nil {
|
|
|
|
return &TracedRequest{req, trace.NewNoopTracerProvider(), &NoopOtlpClient{}}
|
|
|
|
}
|
|
|
|
tp := tracesdk.NewTracerProvider(
|
|
|
|
// We want to dump to in-memory exporter immediately
|
|
|
|
tracesdk.WithSyncer(exp),
|
|
|
|
// Record information about this application in a Resource.
|
|
|
|
tracesdk.WithResource(resource.NewWithAttributes(
|
|
|
|
semconv.SchemaURL,
|
2022-04-11 23:02:13 +00:00
|
|
|
serviceAttribute,
|
|
|
|
otelVersionAttribute,
|
|
|
|
hostnameAttribute,
|
|
|
|
cloudflaredVersionAttribute,
|
|
|
|
HostOSAttribute,
|
|
|
|
HostArchAttribute,
|
2022-04-06 23:20:29 +00:00
|
|
|
)),
|
|
|
|
)
|
|
|
|
|
|
|
|
return &TracedRequest{req.WithContext(ctx), tp, mc}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cft *TracedRequest) Tracer() trace.Tracer {
|
|
|
|
return cft.TracerProvider.Tracer(tracerInstrumentName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spans returns the spans as base64 encoded protobuf otlp traces.
|
2022-04-11 19:57:50 +00:00
|
|
|
func (cft *TracedRequest) AddSpans(headers http.Header, log *zerolog.Logger) {
|
|
|
|
enc, err := cft.exporter.Spans()
|
|
|
|
switch err {
|
|
|
|
case nil:
|
|
|
|
break
|
|
|
|
case errNoTraces:
|
|
|
|
log.Error().Err(err).Msgf("expected traces to be available")
|
|
|
|
return
|
|
|
|
case errNoopTracer:
|
|
|
|
return // noop tracer has no traces
|
|
|
|
default:
|
|
|
|
log.Error().Err(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// No need to add header if no traces
|
|
|
|
if enc == "" {
|
|
|
|
log.Error().Msgf("no traces provided and no error from exporter")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
headers[CanonicalCloudflaredTracingHeader] = []string{enc}
|
2022-04-06 23:20:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// EndWithStatus will set a status for the span and then end it.
|
|
|
|
func EndWithStatus(span trace.Span, code codes.Code, status string) {
|
|
|
|
if span == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
span.SetStatus(code, status)
|
|
|
|
span.End()
|
|
|
|
}
|
|
|
|
|
2022-04-11 23:02:13 +00:00
|
|
|
// extractTrace attempts to check for a cf-trace-id from a request and return the
|
|
|
|
// trace context with the provided http.Request.
|
2022-04-06 23:20:29 +00:00
|
|
|
func extractTrace(req *http.Request) (context.Context, bool) {
|
|
|
|
// Only add tracing for requests with appropriately tagged headers
|
2022-04-11 23:02:13 +00:00
|
|
|
remoteTraces := req.Header.Values(TracerContextName)
|
2022-04-06 23:20:29 +00:00
|
|
|
if len(remoteTraces) <= 0 {
|
|
|
|
// Strip the cf-trace-id header
|
2022-04-11 23:02:13 +00:00
|
|
|
req.Header.Del(TracerContextName)
|
2022-04-06 23:20:29 +00:00
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
2022-04-11 23:02:13 +00:00
|
|
|
traceHeader := map[string]string{}
|
2022-04-06 23:20:29 +00:00
|
|
|
for _, t := range remoteTraces {
|
|
|
|
// Override the 'cf-trace-id' as 'uber-trace-id' so the jaeger propagator can extract it.
|
|
|
|
// Last entry wins if multiple provided
|
2022-04-11 23:02:13 +00:00
|
|
|
traceHeader[TracerContextNameOverride] = t
|
2022-04-06 23:20:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Strip the cf-trace-id header
|
2022-04-11 23:02:13 +00:00
|
|
|
req.Header.Del(TracerContextName)
|
2022-04-06 23:20:29 +00:00
|
|
|
|
2022-04-11 23:02:13 +00:00
|
|
|
if traceHeader[TracerContextNameOverride] == "" {
|
2022-04-06 23:20:29 +00:00
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
remoteCtx := otel.GetTextMapPropagator().Extract(req.Context(), propagation.MapCarrier(traceHeader))
|
|
|
|
return remoteCtx, true
|
|
|
|
}
|