Class: Zipkin::Span

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context, operation_name, collector, start_time: Time.now, tags: {}, references: nil) ⇒ Span

Creates a new Zipkin::Span

Parameters:

  • context (SpanContext)

    the context of the span

  • operation_name (String)

    the operation name

  • collector (Collector)

    the span collector



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/zipkin/span.rb', line 16

def initialize(
  context,
  operation_name,
  collector,
  start_time: Time.now,
  tags: {},
  references: nil
)
  @context = context
  @operation_name = operation_name
  @collector = collector
  @start_time = start_time
  @tags = tags
  @logs = []
  @references = references
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



7
8
9
# File 'lib/zipkin/span.rb', line 7

def context
  @context
end

#logsObject (readonly)

Returns the value of attribute logs.



7
8
9
# File 'lib/zipkin/span.rb', line 7

def logs
  @logs
end

#operation_nameObject

Returns the value of attribute operation_name.



5
6
7
# File 'lib/zipkin/span.rb', line 5

def operation_name
  @operation_name
end

#referencesObject (readonly)

Returns the value of attribute references.



7
8
9
# File 'lib/zipkin/span.rb', line 7

def references
  @references
end

#start_timeObject (readonly)

Returns the value of attribute start_time.



7
8
9
# File 'lib/zipkin/span.rb', line 7

def start_time
  @start_time
end

#tagsObject (readonly)

Returns the value of attribute tags.



7
8
9
# File 'lib/zipkin/span.rb', line 7

def tags
  @tags
end

Instance Method Details

#finish(end_time: Time.now) ⇒ Object

Finish the Zipkin::Span

Parameters:

  • end_time (Time) (defaults to: Time.now)

    custom end time, if not now



80
81
82
# File 'lib/zipkin/span.rb', line 80

def finish(end_time: Time.now)
  @collector.send_span(self, end_time)
end

#get_baggage_item(key) ⇒ Object

Get a baggage item

Parameters:

  • key (String)

    the key of the baggage item

Returns:

  • Value of the baggage item



56
57
58
# File 'lib/zipkin/span.rb', line 56

def get_baggage_item(key)
  nil
end

#log(*args) ⇒ Object

Deprecated.

Use #log_kv instead.

Add a log entry to this span



63
64
65
66
# File 'lib/zipkin/span.rb', line 63

def log(*args)
  warn 'Span#log is deprecated. Please use Span#log_kv instead.'
  log_kv(*args)
end

#log_kv(timestamp: Time.now, **fields) ⇒ Object

Add a log entry to this span

Parameters:

  • timestamp (Time) (defaults to: Time.now)

    time of the log

  • fields (Hash)

    Additional information to log



72
73
74
75
# File 'lib/zipkin/span.rb', line 72

def log_kv(timestamp: Time.now, **fields)
  @logs << fields.merge(timestamp: timestamp)
  nil
end

#set_baggage_item(key, value) ⇒ Object

Set a baggage item on the span

Parameters:

  • key (String)

    the key of the baggage item

  • value (String)

    the value of the baggage item



47
48
49
# File 'lib/zipkin/span.rb', line 47

def set_baggage_item(key, value)
  self
end

#set_tag(key, value) ⇒ Object

Set a tag value on this span

a String, Numeric, or Boolean it will be encoded with to_s

Parameters:

  • key (String)

    the key of the tag

  • value (String, Numeric, Boolean)

    the value of the tag. If it’s not



38
39
40
41
# File 'lib/zipkin/span.rb', line 38

def set_tag(key, value)
  sanitized_value = valid_tag_value?(value) ? value : value.to_s
  @tags = @tags.merge(key.to_sym => sanitized_value)
end