Method: Fluent::SystemConfig::Mixin#system_config

Defined in:
lib/fluent/system_config.rb

#system_configObject



169
170
171
172
173
174
175
176
# File 'lib/fluent/system_config.rb', line 169

def system_config
  require 'fluent/engine'
  unless defined?($_system_config)
    $_system_config = nil
  end
  (instance_variable_defined?("@_system_config") && @_system_config) ||
    $_system_config || Fluent::Engine.system_config
end