Sha256: 03c7080b40c6e216ddcdb7f047868fe3cc1a780d1a6cd46fae696032b884f854

Contents?: true

Size: 1.51 KB

Versions: 11

Compression:

Stored size: 1.51 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.
require 'new_relic/agent/datastores/mongo/obfuscator'

module NewRelic
  module Agent
    module Datastores
      module Mongo
        module EventFormatter

          # Keys that will get their values replaced with '?'.
          OBFUSCATE_KEYS = [ 'filter', 'query', 'pipeline' ].freeze

          # Keys that will get completely removed from the statement.
          DENYLISTED_KEYS = [ 'deletes', 'documents', 'updates' ].freeze

          def self.format(command_name, database_name, command)
            return nil unless NewRelic::Agent.config[:'mongo.capture_queries']

            result = {
              :operation => command_name,
              :database => database_name,
              :collection => command.values.first
            }

            command.each do |key, value|
              next if DENYLISTED_KEYS.include?(key)
              if OBFUSCATE_KEYS.include?(key)
                obfuscated = obfuscate(value)
                result[key] = obfuscated if obfuscated
              else
                result[key] = value
              end
            end
            result
          end

          def self.obfuscate(statement)
            if NewRelic::Agent.config[:'mongo.obfuscate_queries']
              statement = Obfuscator.obfuscate_statement(statement)
            end
            statement
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
newrelic_rpm-8.2.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.15.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.14.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.13.1 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.13.0 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.12.0.367 lib/new_relic/agent/datastores/mongo/event_formatter.rb