Method: Hoss.log_ids

Defined in:
lib/hoss-agent.rb

.log_ids {|String|nil, String|nil, String|nil| ... } ⇒ String

Get a formatted string containing transaction, span, and trace ids. If a block is provided, the ids are yielded.

and trace ids.

Yields:

  • (String|nil, String|nil, String|nil)

    The transaction, span,

Returns:

  • (String)

    Unless block given



88
89
90
91
# File 'lib/hoss-agent.rb', line 88

def log_ids
  ids = []
  ids.join(' ')
end