class OpenTracing::Instrumentation::Mongo::DirectSanitazer

DirectSanitazer requests.

Public Instance Methods

sanitaze(command, command_name) click to toggle source
# File lib/opentracing/instrumentation/mongo/direct_sanitazer.rb, line 8
def sanitaze(command, command_name)
  command = command.dup
  command.delete(command_name)
  command
end