Sha256: b86e757056f95709e45947f59355f98223fe6ebffcaa78d3aec170c8b8124905

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

# encoding: utf-8
# 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

module NewRelic
  module Agent
    # This module contains helper methods related to decorating log messages
    module LocalLogDecorator
      extend self

      def decorate(message)
        return message unless decorating_enabled?

        metadata = NewRelic::Agent.linking_metadata
        formatted_metadata = " NR-LINKING|#{metadata[ENTITY_GUID_KEY]}|#{metadata[HOSTNAME_KEY]}|" \
                             "#{metadata[TRACE_ID_KEY]}|#{metadata[SPAN_ID_KEY]}|" \
                             "#{escape_entity_name(metadata[ENTITY_NAME_KEY])}|"

        message.partition("\n").insert(1, formatted_metadata).join
      end

      private

      def decorating_enabled?
        NewRelic::Agent.config[:'application_logging.enabled'] &&
          NewRelic::Agent::Instrumentation::Logger.enabled? &&
          NewRelic::Agent.config[:'application_logging.local_decorating.enabled']
      end

      def escape_entity_name(entity_name)
        return unless entity_name
        URI::DEFAULT_PARSER.escape(entity_name)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
newrelic_rpm-8.10.1 lib/new_relic/agent/local_log_decorator.rb
newrelic_rpm-8.10.0 lib/new_relic/agent/local_log_decorator.rb
newrelic_rpm-8.9.0 lib/new_relic/agent/local_log_decorator.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/local_log_decorator.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/local_log_decorator.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/local_log_decorator.rb