Module: NewRelic::Coerce
- Included in:
- Agent::SqlTrace, Agent::ThreadProfile, Agent::ThreadProfile::Node, MetricData, NoticedError, TransactionSample, TransactionSample::Segment
- Defined in:
- lib/new_relic/coerce.rb
Overview
We really don’t want to send bad values to the collector, and it doesn’t accept types like Rational that have occasionally slipped into our data.
These methods are intended to safely coerce things into the form we want, to provide documentation of expected types on to_collector_array methods, and to log failures if totally invalid data gets into outgoing data
Instance Method Summary collapse
- #float(value, context = nil) ⇒ Object
- #int(value, context = nil) ⇒ Object
- #log_failure(value, type, context, error) ⇒ Object
- #string(value, context = nil) ⇒ Object
Instance Method Details
#float(value, context = nil) ⇒ Object
16 17 18 19 20 21 |
# File 'lib/new_relic/coerce.rb', line 16 def float(value, context=nil) Float(value) rescue => error log_failure(value, Float, context, error) 0.0 end |
#int(value, context = nil) ⇒ Object
9 10 11 12 13 14 |
# File 'lib/new_relic/coerce.rb', line 9 def int(value, context=nil) Integer(value) rescue => error log_failure(value, Integer, context, error) 0 end |
#log_failure(value, type, context, error) ⇒ Object
31 32 33 34 35 |
# File 'lib/new_relic/coerce.rb', line 31 def log_failure(value, type, context, error) msg = "Unable to convert '#{value}' to #{type}" msg += " in context '#{context}'" if context NewRelic::Agent.logger.warn(msg, error) end |
#string(value, context = nil) ⇒ Object
23 24 25 26 27 28 29 |
# File 'lib/new_relic/coerce.rb', line 23 def string(value, context=nil) return value if value.nil? String(value) rescue => error log_failure(value.class, String, context, error) "" end |