Class: Datadog::Span

Inherits:
Object
  • Object
show all
Defined in:
lib/ddtrace/span.rb

Overview

Represents a logical unit of work in the system. Each trace consists of one or more spans. Each span consists of a start time and a duration. For example, a span can describe the time spent on a distributed call on a separate machine, or the time spent in a small component within a larger operation. Spans can be nested within each other, and in those instances will have a parent-child relationship.

Constant Summary collapse

MAX_ID =

The max value for a Span identifier. Span and trace identifiers should be strictly positive and strictly inferior to this limit.

Limited to 63-bit positive integers, as some other languages might be limited to this, and IDs need to be easy to port across various languages and platforms.

2**63

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tracer, name, options = {}) ⇒ Span

Create a new span linked to the given tracer. Call the Tracer method start_span() and then finish() once the tracer operation is over.

  • service: the service name for this span

  • resource: the resource this span refers, or name if it’s missing

  • span_type: the type of the span (such as http, db and so on)

  • parent_id: the identifier of the parent span

  • trace_id: the identifier of the root span for this trace

  • context: the context of the span



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/ddtrace/span.rb', line 38

def initialize(tracer, name, options = {})
  @tracer = tracer

  @name = name
  @service = options.fetch(:service, nil)
  @resource = options.fetch(:resource, name)
  @span_type = options.fetch(:span_type, nil)

  @span_id = Datadog::Utils.next_id
  @parent_id = options.fetch(:parent_id, 0)
  @trace_id = options.fetch(:trace_id, Datadog::Utils.next_id)

  @context = options.fetch(:context, nil)

  @meta = {}
  @metrics = {}
  @status = 0

  @parent = nil
  @sampled = true

  @start_time = nil # set by Tracer.start_span
  @end_time = nil # set by Span.finish
end

Instance Attribute Details

#contextObject

Returns the value of attribute context.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def context
  @context
end

#end_timeObject

Returns the value of attribute end_time.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def end_time
  @end_time
end

#nameObject

Returns the value of attribute name.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def name
  @name
end

#parentObject

Returns the value of attribute parent.



27
28
29
# File 'lib/ddtrace/span.rb', line 27

def parent
  @parent
end

#parent_idObject

Returns the value of attribute parent_id.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def parent_id
  @parent_id
end

#resourceObject

Returns the value of attribute resource.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def resource
  @resource
end

#sampledObject

Returns the value of attribute sampled.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def sampled
  @sampled
end

#serviceObject

Returns the value of attribute service.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def service
  @service
end

#span_idObject

Returns the value of attribute span_id.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def span_id
  @span_id
end

#span_typeObject

Returns the value of attribute span_type.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def span_type
  @span_type
end

#start_timeObject

Returns the value of attribute start_time.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def start_time
  @start_time
end

#statusObject

Returns the value of attribute status.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def status
  @status
end

#trace_idObject

Returns the value of attribute trace_id.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def trace_id
  @trace_id
end

#tracerObject

Returns the value of attribute tracer.



21
22
23
# File 'lib/ddtrace/span.rb', line 21

def tracer
  @tracer
end

Instance Method Details

#finish(finish_time = nil) ⇒ Object

Mark the span finished at the current time and submit it.



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/ddtrace/span.rb', line 104

def finish(finish_time = nil)
  # A span should not be finished twice. Note that this is not thread-safe,
  # finish is called from multiple threads, a given span might be finished
  # several times. Again, one should not do this, so this test is more a
  # fallback to avoid very bad things and protect you in most common cases.
  return if finished?

  # Provide a default start_time if unset, but this should have been set by start_span.
  # Using now here causes 0-duration spans, still, this is expected, as we never
  # explicitely say when it started.
  @start_time ||= Time.now.utc

  @end_time = finish_time.nil? ? Time.now.utc : finish_time # finish this

  # Finish does not really do anything if the span is not bound to a tracer and a context.
  return self if @tracer.nil? || @context.nil?

  # spans without a service would be dropped, so here we provide a default.
  # This should really never happen with integrations in contrib, as a default
  # service is always set. It's only for custom instrumentation.
  @service ||= @tracer.default_service unless @tracer.nil?

  begin
    @context.close_span(self)
    @tracer.record(self)
  rescue StandardError => e
    Datadog::Tracer.log.debug("error recording finished trace: #{e}")
  end
  self
end

#finished?Boolean

Return whether the span is finished or not.

Returns:

  • (Boolean)


136
137
138
# File 'lib/ddtrace/span.rb', line 136

def finished?
  !@end_time.nil?
end

#get_metric(key) ⇒ Object

Return the metric with the given key, nil if it doesn’t exist.



89
90
91
# File 'lib/ddtrace/span.rb', line 89

def get_metric(key)
  @metrics[key]
end

#get_tag(key) ⇒ Object

Return the tag with the given key, nil if it doesn’t exist.



74
75
76
# File 'lib/ddtrace/span.rb', line 74

def get_tag(key)
  @meta[key]
end

#pretty_print(q) ⇒ Object

Return a human readable version of the span



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/ddtrace/span.rb', line 190

def pretty_print(q)
  start_time = (@start_time.to_f * 1e9).to_i rescue '-'
  end_time = (@end_time.to_f * 1e9).to_i rescue '-'
  duration = ((@end_time - @start_time) * 1e9).to_i rescue 0
  q.group 0 do
    q.breakable
    q.text "Name: #{@name}\n"
    q.text "Span ID: #{@span_id}\n"
    q.text "Parent ID: #{@parent_id}\n"
    q.text "Trace ID: #{@trace_id}\n"
    q.text "Type: #{@span_type}\n"
    q.text "Service: #{@service}\n"
    q.text "Resource: #{@resource}\n"
    q.text "Error: #{@status}\n"
    q.text "Start: #{start_time}\n"
    q.text "End: #{end_time}\n"
    q.text "Duration: #{duration}\n"
    q.group(2, 'Tags: [', "]\n") do
      q.breakable
      q.seplist @meta.each do |key, value|
        q.text "#{key} => #{value}"
      end
    end
    q.group(2, 'Metrics: [', ']') do
      q.breakable
      q.seplist @metrics.each do |key, value|
        q.text "#{key} => #{value}"
      end
    end
  end
end

#set_error(e) ⇒ Object

Mark the span with the given error.



94
95
96
97
98
99
100
101
# File 'lib/ddtrace/span.rb', line 94

def set_error(e)
  e = Error.build_from(e)

  @status = Ext::Errors::STATUS
  set_tag(Ext::Errors::TYPE, e.type) unless e.type.empty?
  set_tag(Ext::Errors::MSG, e.message) unless e.message.empty?
  set_tag(Ext::Errors::STACK, e.backtrace) unless e.backtrace.empty?
end

#set_metric(key, value) ⇒ Object

This method sets a tag with a floating point value for the given key. It acts like ‘set_tag()` and it simply add a tag without further processing.



80
81
82
83
84
85
86
# File 'lib/ddtrace/span.rb', line 80

def set_metric(key, value)
  # enforce that the value is a floating point number
  value = Float(value)
  @metrics[key] = value
rescue StandardError => e
  Datadog::Tracer.log.debug("Unable to set the metric #{key}, ignoring it. Caused by: #{e}")
end

#set_parent(parent) ⇒ Object

DEPRECATED: remove this function in the next release, replaced by “parent=“



146
147
148
# File 'lib/ddtrace/span.rb', line 146

def set_parent(parent)
  self.parent = parent
end

#set_tag(key, value) ⇒ Object

Set the given key / value tag pair on the span. Keys and values must be strings. A valid example is:

span.set_tag('http.method', request.method)


67
68
69
70
71
# File 'lib/ddtrace/span.rb', line 67

def set_tag(key, value)
  @meta[key] = value.to_s
rescue StandardError => e
  Datadog::Tracer.log.debug("Unable to set the tag #{key}, ignoring it. Caused by: #{e}")
end

#to_hashObject

Return the hash representation of the current span.



167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/ddtrace/span.rb', line 167

def to_hash
  h = {
    span_id: @span_id,
    parent_id: @parent_id,
    trace_id: @trace_id,
    name: @name,
    service: @service,
    resource: @resource,
    type: @span_type,
    meta: @meta,
    metrics: @metrics,
    error: @status
  }

  if !@start_time.nil? && !@end_time.nil?
    h[:start] = (@start_time.to_f * 1e9).to_i
    h[:duration] = ((@end_time - @start_time) * 1e9).to_i
  end

  h
end

#to_sObject

Return a string representation of the span.



141
142
143
# File 'lib/ddtrace/span.rb', line 141

def to_s
  "Span(name:#{@name},sid:#{@span_id},tid:#{@trace_id},pid:#{@parent_id})"
end