class Mongo::Server::Monitor::AppMetadata

App metadata for monitoring sockets.

It is easiest to start with the normal app metadata and remove authentication-related bits.

@api private

Public Class Methods

new(options) click to toggle source
Calls superclass method Mongo::Server::AppMetadata::new
# File lib/mongo/server/monitor/app_metadata.rb, line 25
def initialize(options)
  super
  if instance_variable_defined?(:@request_auth_mech)
    remove_instance_variable(:@request_auth_mech)
  end
end