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.



480
481
482
# File 'lib/new_relic/agent/new_relic_service.rb', line 480

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

Class Method Details

.human_readable?Boolean

Returns:

  • (Boolean)


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

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

.is_supported?Boolean

Returns:

  • (Boolean)


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

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

Instance Method Details

#default_encoderObject



498
499
500
# File 'lib/new_relic/agent/new_relic_service.rb', line 498

def default_encoder
  Encoders::Base64CompressedJSON
end

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



484
485
486
487
488
489
# File 'lib/new_relic/agent/new_relic_service.rb', line 484

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



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

def format
  'json'
end

#load(data) ⇒ Object



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

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