Method: NewRelic::Agent::Stats#inspect_full

Defined in:
lib/new_relic/agent/stats.rb

#inspect_fullObject

Concerned about implicit usage of inspect relying on stats format, so putting back a version to get full inspection as separate method

[View source]

118
119
120
121
122
123
# File 'lib/new_relic/agent/stats.rb', line 118

def inspect_full
  variables = instance_variables.map do |ivar|
    "#{ivar.to_s}=#{instance_variable_get(ivar).inspect}"
  end.join(' ')
  "#<NewRelic::Agent::Stats #{variables}>"
end