struct Mongo::Monitoring::Commands::CommandFailedEvent
Overview
This event is triggered when a command is rejected by the server.
Defined in:
cryomongo/monitoring.crInstance Method Summary
-
#address : String
Returns the server address.
-
#command_name : String
Returns the command name.
-
#duration : Time::Span
Returns the execution time of the event in the highest possible resolution for the platform.
-
#failure : Exception
Returns the failure.
-
#operation_id : Int64 | Nil
Returns the driver generated operation id.
-
#reply : BSON
Returns the command reply.
-
#request_id : Int64
Returns the driver generated request id.
Instance methods inherited from struct Mongo::Monitoring::Commands::Event
initialize
initialize
Constructor methods inherited from struct Mongo::Monitoring::Commands::Event
new
new
Instance Method Detail
def duration : Time::Span
#
Returns the execution time of the event in the highest possible resolution for the platform.
def operation_id : Int64 | Nil
#
Returns the driver generated operation id. This is used to link events together such as bulk write operations. OPTIONAL.