Class: NewRelic::Agent::NewRelicService::JsonMarshaller

Inherits:
Marshaller
  • Object
show all
Defined in:
lib/new_relic/agent/new_relic_service.rb

Overview

Marshal collector protocol with JSON when available

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Marshaller

#parsed_error, #prepare

Constructor Details

#initializeJsonMarshaller

Returns a new instance of JsonMarshaller.



489
490
491
# File 'lib/new_relic/agent/new_relic_service.rb', line 489

def initialize
  ::NewRelic::Agent.logger.debug 'Using JSON marshaller'
end

Class Method Details

.human_readable?Boolean

Returns:

  • (Boolean)


519
520
521
# File 'lib/new_relic/agent/new_relic_service.rb', line 519

def self.human_readable?
  true # for some definitions of 'human'
end

.is_supported?Boolean

Returns:

  • (Boolean)


515
516
517
# File 'lib/new_relic/agent/new_relic_service.rb', line 515

def self.is_supported?
  RUBY_VERSION >= '1.9.2'
end

Instance Method Details

#default_encoderObject



507
508
509
# File 'lib/new_relic/agent/new_relic_service.rb', line 507

def default_encoder
  Encoders::Base64CompressedJSON
end

#dump(ruby, opts = {}) ⇒ Object



493
494
495
496
497
498
# File 'lib/new_relic/agent/new_relic_service.rb', line 493

def dump(ruby, opts={})
  JSON.dump(prepare(ruby, opts))
rescue => e
  ::NewRelic::Agent.logger.debug "#{e.class.name} : #{e.message} encountered dumping agent data: #{ruby}"
  raise JsonError.new(e)
end

#formatObject



511
512
513
# File 'lib/new_relic/agent/new_relic_service.rb', line 511

def format
  'json'
end

#load(data) ⇒ Object



500
501
502
503
504
505
# File 'lib/new_relic/agent/new_relic_service.rb', line 500

def load(data)
  return_value(JSON.load(data)) if data && data != ''
rescue => e
  ::NewRelic::Agent.logger.debug "#{e.class.name} : #{e.message} encountered loading collector response: #{data}"
  raise
end