Class: ScoutApm::Reporter
- Inherits:
-
Object
- Object
- ScoutApm::Reporter
- Defined in:
- lib/scout_apm/reporter.rb
Constant Summary collapse
- CA_FILE =
File.join( File.dirname(__FILE__), *%w[.. .. data cacert.pem] )
- VERIFY_MODE =
OpenSSL::SSL::VERIFY_PEER | OpenSSL::SSL::VERIFY_FAIL_IF_NO_PEER_CERT
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#logger ⇒ Object
readonly
Returns the value of attribute logger.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #can_report? ⇒ Boolean
-
#initialize(type = :checkin, config = Agent.instance.config, logger = Agent.instance.logger) ⇒ Reporter
constructor
A new instance of Reporter.
-
#report(payload, headers = {}) ⇒ Object
TODO: Parse & return a real response object, not the HTTP Response object.
- #uri(host) ⇒ Object
Constructor Details
#initialize(type = :checkin, config = Agent.instance.config, logger = Agent.instance.logger) ⇒ Reporter
Returns a new instance of Reporter.
12 13 14 15 16 |
# File 'lib/scout_apm/reporter.rb', line 12 def initialize(type = :checkin, config=Agent.instance.config, logger=Agent.instance.logger) @config = config @logger = logger @type = type end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
8 9 10 |
# File 'lib/scout_apm/reporter.rb', line 8 def config @config end |
#logger ⇒ Object (readonly)
Returns the value of attribute logger.
9 10 11 |
# File 'lib/scout_apm/reporter.rb', line 9 def logger @logger end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
10 11 12 |
# File 'lib/scout_apm/reporter.rb', line 10 def type @type end |
Instance Method Details
#can_report? ⇒ Boolean
43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/scout_apm/reporter.rb', line 43 def can_report? case type when :deploy_hook %w(host key name).each do |k| if config.value(k).nil? logger.warn "/#{type} FAILED: missing required config value for #{k}" return false end end return true else return true end end |
#report(payload, headers = {}) ⇒ Object
TODO: Parse & return a real response object, not the HTTP Response object
19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/scout_apm/reporter.rb', line 19 def report(payload, headers = {}) # Some posts (typically ones under development) bypass the ingestion pipeline and go directly to the webserver. They use direct_host instead of host hosts = [:deploy_hook, :instant_trace].include?(type) ? config.value('direct_host') : config.value('host') Array(hosts).each do |host| full_uri = uri(host) response = post(full_uri, payload, headers) unless response && response.is_a?(Net::HTTPSuccess) logger.warn "Error on checkin to #{full_uri.to_s}: #{response.inspect}" end end end |
#uri(host) ⇒ Object
32 33 34 35 36 37 38 39 40 41 |
# File 'lib/scout_apm/reporter.rb', line 32 def uri(host) case type when :checkin URI.parse("#{host}/apps/checkin.scout?key=#{config.value('key')}&name=#{CGI.escape(Environment.instance.application_name)}") when :app_server_load URI.parse("#{host}/apps/app_server_load.scout?key=#{config.value('key')}&name=#{CGI.escape(Environment.instance.application_name)}") when :deploy_hook URI.parse("#{host}/apps/deploy.scout?key=#{config.value('key')}&name=#{CGI.escape(config.value('name'))}") end.tap{|u| logger.debug("Posting to #{u.to_s}")} end |