Sha256: 3a53fb12e057899bca47f7de8cf3977c3bedcd38fb98aca1fc675f3ac69f45ea

Contents?: true

Size: 1.5 KB

Versions: 4

Compression:

Stored size: 1.5 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/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

4 entries across 4 versions & 1 rubygems

Version Path
newrelic_rpm-6.11.0.365 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.10.0.364 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.9.0.363 lib/new_relic/agent/datastores/mongo/event_formatter.rb
newrelic_rpm-6.8.0.360 lib/new_relic/agent/datastores/mongo/event_formatter.rb