Method: NewRelic::Agent::Stats#inspect_full
- Defined in:
- lib/new_relic/agent/stats.rb
permalink #inspect_full ⇒ Object
Concerned about implicit usage of inspect relying on stats format, so putting back a version to get full inspection as separate method
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 |