class DetailedTraceTags

Tags for either a request, or a span

Attributes

tags[R]

Public Class Methods

new(hash) click to toggle source
# File lib/scout_apm/detailed_trace.rb, line 199
def initialize(hash)
  @tags = hash
end

Public Instance Methods

as_json(*) click to toggle source

@tags is already a hash, so no conversion needed

# File lib/scout_apm/detailed_trace.rb, line 204
def as_json(*)
  @tags
end