class AppDynamics::Backend::Mongo

Public Instance Methods

backend_name() click to toggle source
# File lib/app_dynamics/backend/mongo.rb, line 12
def backend_name
  "Mongo #{meta[:database]}"
end
backend_type() click to toggle source
# File lib/app_dynamics/backend/mongo.rb, line 8
def backend_type
  "DB"
end
identifying_properties() click to toggle source
# File lib/app_dynamics/backend/mongo.rb, line 16
def identifying_properties
  { "VENDOR"   => "Mongo",
    "DATABASE" => meta[:database] }
end