Class: Couchbase::PingResult::ServiceInfo
- Inherits:
-
Object
- Object
- Couchbase::PingResult::ServiceInfo
- Defined in:
- lib/couchbase/diagnostics.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/diagnostics.rb more...
Instance Attribute Summary collapse
-
#error ⇒ String?
Optional string with additional explanation for the state.
-
#id ⇒ String
Endpoint unique identifier.
-
#latency ⇒ Integer
How long ago the endpoint was active (in microseconds).
-
#local ⇒ String
Local address of the connection.
-
#remote ⇒ String
Remote address of the connection.
-
#state ⇒ Symbol
Possible states are:.
Instance Method Summary collapse
-
#initialize {|self| ... } ⇒ ServiceInfo
constructor
A new instance of ServiceInfo.
- #to_json(*args) ⇒ Object
Constructor Details
#initialize {|self| ... } ⇒ ServiceInfo
Returns a new instance of ServiceInfo.
126 127 128 129 |
# File 'lib/couchbase/diagnostics.rb', line 126 def initialize @error = nil yield self if block_given? end |
Instance Attribute Details
#error ⇒ String?
Returns optional string with additional explanation for the state.
114 115 116 |
# File 'lib/couchbase/diagnostics.rb', line 114 def error @error end |
#id ⇒ String
Returns endpoint unique identifier.
102 103 104 |
# File 'lib/couchbase/diagnostics.rb', line 102 def id @id end |
#latency ⇒ Integer
Returns how long ago the endpoint was active (in microseconds).
117 118 119 |
# File 'lib/couchbase/diagnostics.rb', line 117 def latency @latency end |
#local ⇒ String
Returns local address of the connection.
123 124 125 |
# File 'lib/couchbase/diagnostics.rb', line 123 def local @local end |
#remote ⇒ String
Returns remote address of the connection.
120 121 122 |
# File 'lib/couchbase/diagnostics.rb', line 120 def remote @remote end |
#state ⇒ Symbol
Possible states are:
- :ok
-
endpoint is healthy
- :timeout
-
endpoint didn’t respond in time
- :error
-
request to endpoint has failed, see #error for additional details
111 112 113 |
# File 'lib/couchbase/diagnostics.rb', line 111 def state @state end |
Instance Method Details
#to_json(*args) ⇒ Object
[View source]
131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/couchbase/diagnostics.rb', line 131 def to_json(*args) data = { id: @id, state: @state, remote: @remote, local: @local, latency: @latency, } data[:error] = @error if @error data.to_json(*args) end |