Class: StandardHealth::Configuration::Registration
- Inherits:
-
Struct
- Object
- Struct
- StandardHealth::Configuration::Registration
- Defined in:
- lib/standard_health/configuration.rb
Overview
A registered health check entry.
Instance Attribute Summary collapse
-
#critical ⇒ Object
Returns the value of attribute critical.
-
#klass ⇒ Object
Returns the value of attribute klass.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
Instance Attribute Details
#critical ⇒ Object
Returns the value of attribute critical
15 16 17 |
# File 'lib/standard_health/configuration.rb', line 15 def critical @critical end |
#klass ⇒ Object
Returns the value of attribute klass
15 16 17 |
# File 'lib/standard_health/configuration.rb', line 15 def klass @klass end |
#name ⇒ Object
Returns the value of attribute name
15 16 17 |
# File 'lib/standard_health/configuration.rb', line 15 def name @name end |
Instance Method Details
#critical? ⇒ Boolean
16 17 18 |
# File 'lib/standard_health/configuration.rb', line 16 def critical? !!critical end |