Sha256: b72a3b4b894af45f70b2b0e0e58517a1fcde86c844d62cd7ccdefbd29477e7ef

Contents?: true

Size: 1.96 KB

Versions: 7

Compression:

Stored size: 1.96 KB

Contents

# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

require 'singleton'

module NewRelic
  class Control
    class SecurityInterface
      include Singleton

      attr_accessor :wait

      SUPPORTABILITY_PREFIX_SECURITY = 'Supportability/Ruby/SecurityAgent/Enabled/'
      SUPPORTABILITY_PREFIX_SECURITY_AGENT = 'Supportability/Ruby/SecurityAgent/Agent/Enabled/'
      ENABLED = 'enabled'
      DISABLED = 'disabled'

      def agent_started?
        (@agent_started ||= false) == true
      end

      def waiting?
        (@wait ||= false) == true
      end

      def init_agent
        return if agent_started? || waiting?

        record_supportability_metrics

        if Agent.config[:'security.agent.enabled'] && !Agent.config[:high_security]
          Agent.logger.info('Invoking New Relic security module')
          require 'newrelic_security'

          @agent_started = true
        else
          Agent.logger.info('New Relic Security is completely disabled by one of the user-provided configurations: `security.agent.enabled` or `high_security`. Not loading security capabilities.')
          Agent.logger.info("high_security = #{Agent.config[:high_security]}")
          Agent.logger.info("security.agent.enabled = #{Agent.config[:'security.agent.enabled']}")
        end
      rescue LoadError
        Agent.logger.info('New Relic security agent not found - skipping')
      rescue StandardError => exception
        Agent.logger.error("Exception in New Relic security module loading: #{exception} #{exception.backtrace}")
      end

      def record_supportability_metrics
        Agent.config[:'security.agent.enabled'] ? security_agent_metric(ENABLED) : security_agent_metric(DISABLED)
      end

      def security_agent_metric(setting)
        NewRelic::Agent.record_metric_once(SUPPORTABILITY_PREFIX_SECURITY_AGENT + setting)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
newrelic_rpm-9.17.0 lib/new_relic/control/security_interface.rb
newrelic_rpm-9.16.1 lib/new_relic/control/security_interface.rb
newrelic_rpm-9.16.0 lib/new_relic/control/security_interface.rb
newrelic_rpm-9.15.0 lib/new_relic/control/security_interface.rb
newrelic_rpm-9.14.0 lib/new_relic/control/security_interface.rb
newrelic_rpm-9.13.0 lib/new_relic/control/security_interface.rb
newrelic_rpm-9.12.0 lib/new_relic/control/security_interface.rb