# frozen_string_literal: true require 'elastic_apm/naively_hashable' require 'elastic_apm/context_builder' require 'elastic_apm/error_builder' require 'elastic_apm/error' require 'elastic_apm/http' require 'elastic_apm/injectors' require 'elastic_apm/serializers' require 'elastic_apm/timed_worker' module ElasticAPM # rubocop:disable Metrics/ClassLength # @api private class Agent include Log LOCK = Mutex.new # life cycle def self.instance # rubocop:disable Style/TrivialAccessors @instance end def self.start(config) # rubocop:disable Metrics/MethodLength return @instance if @instance config = Config.new(config) unless config.is_a?(Config) unless config.enabled_environments.include?(config.environment) puts format( '%sNot tracking anything in "%s" env', Log::PREFIX, config.environment ) return end LOCK.synchronize do return @instance if @instance @instance = new(config).start end end def self.stop LOCK.synchronize do return unless @instance @instance.stop @instance = nil end end def self.running? !!@instance end def initialize(config) @config = config @messages = Queue.new @pending_transactions = Queue.new @http = Http.new(config) @instrumenter = Instrumenter.new(config, self) @context_builder = ContextBuilder.new(config) @error_builder = ErrorBuilder.new(config) end attr_reader :config, :messages, :pending_transactions, :instrumenter, :context_builder, :http def start debug '[%s] Starting agent, reporting to %s', VERSION, config.server_url @instrumenter.start config.enabled_injectors.each do |lib| require "elastic_apm/injectors/#{lib}" end self end def stop @instrumenter.stop kill_worker self end at_exit do stop end def enqueue_transaction(transaction) boot_worker unless worker_running? pending_transactions.push(transaction) end def enqueue_error(error) boot_worker unless worker_running? messages.push(TimedWorker::ErrorMsg.new(error)) end # instrumentation def current_transaction instrumenter.current_transaction end def transaction(*args, &block) instrumenter.transaction(*args, &block) end def span(*args, &block) instrumenter.span(*args, &block) end def build_context(rack_env) @context_builder.build(rack_env) end # errors def report(exception, handled: true) return if config.filter_exception_types.include?(exception.class.to_s) error = @error_builder.build_exception( exception, handled: handled ) enqueue_error error end def report_message(message, backtrace: nil, **attrs) error = @error_builder.build_log( message, backtrace: backtrace, **attrs ) enqueue_error error end # context def set_tag(*args) instrumenter.set_tag(*args) end def set_custom_context(*args) instrumenter.set_custom_context(*args) end def set_user(*args) instrumenter.set_user(*args) end def add_filter(key, callback) @http.filters.add(key, callback) end def inspect '' end private def boot_worker debug 'Booting worker' @worker_thread = Thread.new do TimedWorker.new( config, messages, pending_transactions, http ).run_forever end end def kill_worker messages << TimedWorker::StopMsg.new if @worker_thread && !@worker_thread.join(5) # 5 secs raise 'Failed to wait for worker, not all messages sent' end @worker_thread = nil end def worker_running? @worker_thread && @worker_thread.alive? end end # rubocop:enable Metrics/ClassLength end