Module: Datadog::Tracing::Contrib::RestClient::RequestPatch::InstanceMethods

Defined in:
lib/datadog/tracing/contrib/rest_client/request_patch.rb

Overview

InstanceMethods - implementing instrumentation

Instance Method Summary collapse

Instance Method Details

#datadog_tag_request(uri, span) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/datadog/tracing/contrib/rest_client/request_patch.rb', line 34

def datadog_tag_request(uri, span)
  span.resource = method.to_s.upcase

  if datadog_configuration[:peer_service]
    span.set_tag(
      Tracing::Metadata::Ext::TAG_PEER_SERVICE,
      datadog_configuration[:peer_service]
    )
  end

  # Tag original global service name if not used
  if span.service != Datadog.configuration.service
    span.set_tag(Tracing::Contrib::Ext::Metadata::TAG_BASE_SERVICE, Datadog.configuration.service)
  end

  span.set_tag(Tracing::Metadata::Ext::TAG_KIND, Tracing::Metadata::Ext::SpanKind::TAG_CLIENT)

  span.set_tag(Tracing::Metadata::Ext::TAG_COMPONENT, Ext::TAG_COMPONENT)
  span.set_tag(Tracing::Metadata::Ext::TAG_OPERATION, Ext::TAG_OPERATION_REQUEST)

  span.set_tag(Tracing::Metadata::Ext::TAG_PEER_HOSTNAME, uri.host)

  # Set analytics sample rate
  Contrib::Analytics.set_sample_rate(span, analytics_sample_rate) if analytics_enabled?

  span.set_tag(Tracing::Metadata::Ext::HTTP::TAG_URL, uri.path)
  span.set_tag(Tracing::Metadata::Ext::HTTP::TAG_METHOD, method.to_s.upcase)
  span.set_tag(Tracing::Metadata::Ext::NET::TAG_TARGET_HOST, uri.host)
  span.set_tag(Tracing::Metadata::Ext::NET::TAG_TARGET_PORT, uri.port)
  span.set_tags(
    Datadog.configuration.tracing.header_tags.request_tags(
      Core::Utils::Hash::CaseInsensitiveWrapper.new(processed_headers)
    )
  )

  Contrib::SpanAttributeSchema.set_peer_service!(span, Ext::PEER_SERVICE_SOURCES)
end

#datadog_trace_request(uri) ⇒ Object



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/datadog/tracing/contrib/rest_client/request_patch.rb', line 72

def datadog_trace_request(uri)
  span = Tracing.trace(
    Ext::SPAN_REQUEST,
    service: datadog_configuration[:split_by_domain] ? uri.host : datadog_configuration[:service_name],
    span_type: Tracing::Metadata::Ext::HTTP::TYPE_OUTBOUND
  )

  trace = Tracing.active_trace

  datadog_tag_request(uri, span)

  yield(span, trace).tap do |response|
    # Verify return value is a response
    # If so, add additional tags.
    if response.is_a?(::RestClient::Response)
      span.set_tag(Tracing::Metadata::Ext::HTTP::TAG_STATUS_CODE, response.code)

      span.set_tags(
        Datadog.configuration.tracing.header_tags.response_tags(
          Core::Utils::Hash::CaseInsensitiveWrapper.new(response.net_http_res.to_hash)
        )
      )
    end
  end
rescue ::RestClient::ExceptionWithResponse => e
  span.set_error(e) if Tracing::Metadata::Ext::HTTP::ERROR_RANGE.cover?(e.http_code)
  span.set_tag(Tracing::Metadata::Ext::HTTP::TAG_STATUS_CODE, e.http_code)

  raise e
  # rubocop:disable Lint/RescueException
rescue Exception => e
  # rubocop:enable Lint/RescueException
  span.set_error(e) if span

  raise e
ensure
  span.finish if span
end

#execute(&block) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/datadog/tracing/contrib/rest_client/request_patch.rb', line 22

def execute(&block)
  uri = URI.parse(url)

  return super(&block) unless Tracing.enabled?

  datadog_trace_request(uri) do |_span, trace|
    Tracing::Propagation::HTTP.inject!(trace, processed_headers) if datadog_configuration[:distributed_tracing]

    super(&block)
  end
end