Class: Fluent::StaticConfigAnalysis::Result
- Inherits:
-
Struct
- Object
- Struct
- Fluent::StaticConfigAnalysis::Result
- Defined in:
- lib/fluent/static_config_analysis.rb
Instance Attribute Summary collapse
-
#filters ⇒ Object
Returns the value of attribute filters.
-
#inputs ⇒ Object
Returns the value of attribute inputs.
-
#labels ⇒ Object
Returns the value of attribute labels.
-
#outputs ⇒ Object
Returns the value of attribute outputs.
-
#tree ⇒ Object
Returns the value of attribute tree.
Instance Method Summary collapse
Instance Attribute Details
#filters ⇒ Object
Returns the value of attribute filters
31 32 33 |
# File 'lib/fluent/static_config_analysis.rb', line 31 def filters @filters end |
#inputs ⇒ Object
Returns the value of attribute inputs
31 32 33 |
# File 'lib/fluent/static_config_analysis.rb', line 31 def inputs @inputs end |
#labels ⇒ Object
Returns the value of attribute labels
31 32 33 |
# File 'lib/fluent/static_config_analysis.rb', line 31 def labels @labels end |
#outputs ⇒ Object
Returns the value of attribute outputs
31 32 33 |
# File 'lib/fluent/static_config_analysis.rb', line 31 def outputs @outputs end |
#tree ⇒ Object
Returns the value of attribute tree
31 32 33 |
# File 'lib/fluent/static_config_analysis.rb', line 31 def tree @tree end |
Instance Method Details
#all_plugins ⇒ Object
32 33 34 |
# File 'lib/fluent/static_config_analysis.rb', line 32 def all_plugins (outputs + inputs + filters).map(&:plugin) end |