Sha256: 7f7ea3fe6961c6a926b810675b7edbd69417e83e94e916cf6844851ca921aed4
Contents?: true
Size: 1.62 KB
Versions: 2
Compression:
Stored size: 1.62 KB
Contents
# frozen_string_literal: true module ElasticAPM # @api private module Spies # @api private class NetHTTPSpy KEY = :__elastic_apm_net_http_disabled # rubocop:disable Metrics/MethodLength, Metrics/AbcSize class << self def disabled=(disabled) Thread.current[KEY] = disabled end def disabled? Thread.current[KEY] ||= false end def disable_in self.disabled = true begin yield ensure self.disabled = false end end end def install Net::HTTP.class_eval do alias request_without_apm request def request(req, body = nil, &block) unless (transaction = ElasticAPM.current_transaction) return request_without_apm(req, body, &block) end if ElasticAPM::Spies::NetHTTPSpy.disabled? return request_without_apm(req, body, &block) end host, = req['host'] && req['host'].split(':') method = req.method host ||= address name = "#{method} #{host}" type = "ext.net_http.#{method}" ElasticAPM.with_span name, type do |span| id = span&.id || transaction.id req['Elastic-Apm-Traceparent'] = transaction.traceparent.to_header(span_id: id) request_without_apm(req, body, &block) end end end end # rubocop:enable Metrics/MethodLength, Metrics/AbcSize end register 'Net::HTTP', 'net/http', NetHTTPSpy.new end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
elastic-apm-2.1.2 | lib/elastic_apm/spies/net_http.rb |
elastic-apm-2.1.1 | lib/elastic_apm/spies/net_http.rb |