123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Monitoring::Event::ServerHeartbeatFailed

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: Mongo::Event::Base
Defined in: lib/mongo/monitoring/event/server_heartbeat_failed.rb

Overview

::Mongo::Monitoring::Event fired when a server heartbeat is dispatched.

Since:

  • 2.7.0

Class Method Summary

Instance Attribute Summary

Instance Method Summary

::Mongo::Event::Base - Inherited

#summary

Returns a concise yet useful summary of the event.

#short_class_name

Instance Attribute Details

#addressAddress (readonly)

Returns:

  • (Address)

    address The server address.

Since:

  • 2.7.0

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 51

attr_reader :address

#awaited?true | false (readonly)

Returns:

  • (true | false)

    Whether the heartbeat was awaited.

Since:

  • 2.7.0

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 66

def awaited?
  @awaited
end

#duration (readonly)

Alias for #round_trip_time.

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 57

alias :duration :round_trip_time

#errorException (readonly) Also known as: #failure

Returns:

  • (Exception)

    error The exception that occurred in hello call.

Since:

  • 2.7.0

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 60

attr_reader :error

#failure (readonly)

Alias for #error.

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 63

alias :failure :error

#round_trip_timeFloat (readonly) Also known as: #duration

Returns:

  • (Float)

    round_trip_time Duration of hello call in seconds.

Since:

  • 2.7.0

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 54

attr_reader :round_trip_time

#started_eventMonitoring::Event::ServerHeartbeatStarted (readonly)

Returns:

Since:

  • 2.7.0

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 74

attr_reader :started_event

Instance Method Details

#summaryString

Note:

This method is experimental and subject to change.

Returns a concise yet useful summary of the event.

Returns:

  • (String)

    String summary of the event.

Since:

  • 2.7.0

[ GitHub ]

  
# File 'lib/mongo/monitoring/event/server_heartbeat_failed.rb', line 84

def summary
  "#<#{short_class_name}" +
  " address=#{address}" +
  " error=#{error.inspect}>"
end