Sha256: 07c7356b46b38dbe3f0c89a30839a7b551905d67a7a17e5331538fe9333f4efc

Contents?: true

Size: 1018 Bytes

Versions: 27

Compression:

Stored size: 1018 Bytes

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.

module NewRelic
  module Agent
    module Datastores
      module Mongo
        module Obfuscator

          WHITELIST = [:operation].freeze

          def self.obfuscate_statement(source, whitelist=WHITELIST)
            obfuscated = {}
            source.each do |key, value|
              if whitelist.include?(key)
                obfuscated[key] = value
              else
                obfuscated[key] = obfuscate_value(value, whitelist)
              end
            end

            obfuscated
          end

          def self.obfuscate_value(value, whitelist)
            if value.is_a?(Hash)
              obfuscate_statement(value, whitelist)
            elsif value.is_a?(Array)
              value.map {|v| obfuscate_value(v, whitelist)}
            else
              '?'
            end
          end
        end
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
newrelic_rpm-3.13.0.299 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.12.1.298 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.12.0.288 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.11.2.286 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.11.1.284 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.11.0.283 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.10.0.279 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.9.275 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.8.273 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.7.266 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.6.257 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.5.251 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.4.245 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.3.241 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.2.239 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.1.236 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.9.0.229 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.8.1.221 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.8.0.218 lib/new_relic/agent/datastores/mongo/obfuscator.rb
newrelic_rpm-3.7.3.204 lib/new_relic/agent/datastores/mongo/obfuscator.rb