module Sentry::Utils::HttpTracing

def propagate_trace?(url)

def propagate_trace?(url)
  url &&
    Sentry.initialized? &&
    Sentry.configuration.propagate_traces &&
    Sentry.configuration.trace_propagation_targets.any? { |target| url.match?(target) }
end