Class: Anomonitor::Configuration::CollectorsConfig
- Inherits:
-
Object
- Object
- Anomonitor::Configuration::CollectorsConfig
- Defined in:
- lib/anomonitor/configuration.rb
Instance Attribute Summary collapse
-
#delayed_job ⇒ Object
Returns the value of attribute delayed_job.
-
#schema_drift ⇒ Object
Returns the value of attribute schema_drift.
-
#sidekiq ⇒ Object
Returns the value of attribute sidekiq.
-
#solid_queue ⇒ Object
Returns the value of attribute solid_queue.
Instance Method Summary collapse
-
#initialize ⇒ CollectorsConfig
constructor
A new instance of CollectorsConfig.
Constructor Details
#initialize ⇒ CollectorsConfig
Returns a new instance of CollectorsConfig.
105 106 107 108 109 110 |
# File 'lib/anomonitor/configuration.rb', line 105 def initialize @sidekiq = true @delayed_job = true @solid_queue = true @schema_drift = false end |
Instance Attribute Details
#delayed_job ⇒ Object
Returns the value of attribute delayed_job.
103 104 105 |
# File 'lib/anomonitor/configuration.rb', line 103 def delayed_job @delayed_job end |
#schema_drift ⇒ Object
Returns the value of attribute schema_drift.
103 104 105 |
# File 'lib/anomonitor/configuration.rb', line 103 def schema_drift @schema_drift end |
#sidekiq ⇒ Object
Returns the value of attribute sidekiq.
103 104 105 |
# File 'lib/anomonitor/configuration.rb', line 103 def sidekiq @sidekiq end |
#solid_queue ⇒ Object
Returns the value of attribute solid_queue.
103 104 105 |
# File 'lib/anomonitor/configuration.rb', line 103 def solid_queue @solid_queue end |