Class: LogStash::Runner

Inherits:
Clamp::StrictCommand show all
Includes:
Util::Loggable
Defined in:
lib/logstash/runner.rb

Constant Summary collapse

DEFAULT_BOOTSTRAP_CHECKS =

Ordered list of check to run before starting logstash theses checks can be changed by a plugin loaded into memory.

[
    LogStash::BootstrapCheck::BadRuby,
    LogStash::BootstrapCheck::BadJava,
    LogStash::BootstrapCheck::DefaultConfig
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Util::Loggable

included, #logger, #slow_logger

Methods inherited from Clamp::StrictCommand

#handle_remaining_arguments

Methods included from Clamp::Option::StrictDeclaration

#define_deprecated_accessors_for, #define_deprecated_writer_for, #define_reader_for, #define_simple_writer_for

Constructor Details

#initialize(*args) ⇒ Runner

Returns a new instance of Runner.



197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/logstash/runner.rb', line 197

def initialize(*args)
  @settings = LogStash::SETTINGS
  @bootstrap_checks = DEFAULT_BOOTSTRAP_CHECKS.dup

  # Default we check local sources: `-e`, `-f` and the logstash.yml options.
  @source_loader = LogStash::Config::SourceLoader.new(@settings)
  @source_loader.add_source(LogStash::Config::Source::Local.new(@settings))
  @source_loader.add_source(LogStash::Config::Source::Modules.new(@settings))
  @source_loader.add_source(LogStash::Config::Source::MultiLocal.new(@settings))

  super(*args)
end

Instance Attribute Details

#agentObject (readonly)

Returns the value of attribute agent.



194
195
196
# File 'lib/logstash/runner.rb', line 194

def agent
  @agent
end

#bootstrap_checksObject

Returns the value of attribute bootstrap_checks.



195
196
197
# File 'lib/logstash/runner.rb', line 195

def bootstrap_checks
  @bootstrap_checks
end

#settingsObject (readonly)

Returns the value of attribute settings.



194
195
196
# File 'lib/logstash/runner.rb', line 194

def settings
  @settings
end

#source_loaderObject (readonly)

Returns the value of attribute source_loader.



194
195
196
# File 'lib/logstash/runner.rb', line 194

def source_loader
  @source_loader
end

Instance Method Details

#cli_help?(args) ⇒ Boolean

is the user asking for CLI help subcommand?

Returns:

  • (Boolean)


523
524
525
526
# File 'lib/logstash/runner.rb', line 523

def cli_help?(args)
  # I know, double negative
  !(["--help", "-h"] & args).empty?
end

#configure_plugin_paths(paths) ⇒ Object

add the given paths for ungemified/bare plugins lookups

Parameters:

  • paths (String, Array<String>)

    plugins path string or list of path strings to add



433
434
435
436
437
438
# File 'lib/logstash/runner.rb', line 433

def configure_plugin_paths(paths)
  Array(paths).each do |path|
    fail(I18n.t("logstash.runner.configuration.plugin_path_missing", :path => path)) unless File.directory?(path)
    LogStash::Environment.add_plugin_path(path)
  end
end

#create_agent(*args) ⇒ Object



440
441
442
# File 'lib/logstash/runner.rb', line 440

def create_agent(*args)
  LogStash::Agent.new(*args)
end

#executeObject



235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
# File 'lib/logstash/runner.rb', line 235

def execute
  # Only when execute is have the CLI options been added to the @settings
  # We invoke post_process to apply extra logic to them.
  # The post_process callbacks have been added in environment.rb
  @settings.post_process

  require "logstash/util"
  require "logstash/util/java_version"
  require "stud/task"

  # Configure Logstash logging facility, this need to be done before everything else to
  # make sure the logger has the correct settings and the log level is correctly defined.
  java.lang.System.setProperty("ls.logs", setting("path.logs"))
  java.lang.System.setProperty("ls.log.format", setting("log.format"))
  java.lang.System.setProperty("ls.log.level", setting("log.level"))
  unless java.lang.System.getProperty("log4j.configurationFile")
    log4j_config_location = ::File.join(setting("path.settings"), "log4j2.properties")

    # Windows safe way to produce a file: URI.
    file_schema = "file://" + (LogStash::Environment.windows? ? "/" : "")
    LogStash::Logging::Logger::reconfigure(URI.join(file_schema + File.absolute_path(log4j_config_location)).to_s)
  end
  # override log level that may have been introduced from a custom log4j config file
  LogStash::Logging::Logger::configure_logging(setting("log.level"))

  if setting("config.debug") && !logger.debug?
    logger.warn("--config.debug was specified, but log.level was not set to \'debug\'! No config info will be logged.")
  end

  # Skip any validation and just return the version
  if version?
    show_version
    return 0
  end

  # Add local modules to the registry before everything else
  LogStash::Modules::Util.register_local_modules(LogStash::Environment::LOGSTASH_HOME)

  # We configure the registry and load any plugin that can register hooks
  # with logstash, this need to be done before any operation.
  LogStash::PLUGIN_REGISTRY.setup!

  @dispatcher = LogStash::EventDispatcher.new(self)
  LogStash::PLUGIN_REGISTRY.hooks.register_emitter(self.class, @dispatcher)

  @settings.validate_all
  @dispatcher.fire(:before_bootstrap_checks)

  return start_shell(setting("interactive"), binding) if setting("interactive")

  module_parser = LogStash::Modules::CLIParser.new(@modules_list, @modules_variable_list)
  # Now populate Setting for modules.list with our parsed array.
  @settings.set("modules.cli", module_parser.output)

  begin
    @bootstrap_checks.each { |bootstrap| bootstrap.check(@settings) }
  rescue LogStash::BootstrapCheckError => e
    signal_usage_error(e.message)
    return 1
  end
  @dispatcher.fire(:after_bootstrap_checks)

  LogStash::Util::set_thread_name(self.class.name)

  LogStash::ShutdownWatcher.unsafe_shutdown = setting("pipeline.unsafe_shutdown")

  configure_plugin_paths(setting("path.plugins"))


  @settings.format_settings.each {|line| logger.debug(line) }

  # Check for absence of any configuration
  # not bulletproof because we don't know yet if there
  # are no pipelines from pipelines.yml
  sources_without_conflict = []
  unmatched_sources_conflict_messages = []
  @source_loader.sources do |source|
    if source.config_conflict?
      if source.conflict_messages.any?
        unmatched_sources_conflict_messages << source.conflict_messages.join(", ")
      end
    else
      sources_without_conflict << source
    end
  end
  if unmatched_sources_conflict_messages.any?
    # i18n should be done at the sources side
    signal_usage_error(unmatched_sources_conflict_messages.join(" "))
    return 1
  elsif sources_without_conflict.empty?
    signal_usage_error(I18n.t("logstash.runner.missing-configuration"))
    return 1
  end

  if setting("config.test_and_exit")
    begin
      results = @source_loader.fetch

      # TODO(ph): make it better for multiple pipeline
      if results.success?
        results.response.each do |pipeline_config|
          LogStash::BasePipeline.new(pipeline_config)
        end
        puts "Configuration OK"
        logger.info "Using config.test_and_exit mode. Config Validation Result: OK. Exiting Logstash"
      else
        raise "Could not load the configuration file"
      end
      return 0
    rescue => e
      logger.fatal I18n.t("logstash.runner.invalid-configuration", :error => e.message)
      return 1
    end
  end

  # lock path.data before starting the agent
  @data_path_lock = FileLockFactory.obtainLock(setting("path.data"), ".lock");

  @dispatcher.fire(:before_agent)
  @agent = create_agent(@settings, @source_loader)
  @dispatcher.fire(:after_agent)

  # enable sigint/sigterm before starting the agent
  # to properly handle a stalled agent
  sigint_id = trap_sigint()
  sigterm_id = trap_sigterm()

  @agent_task = Stud::Task.new { @agent.execute }

  # no point in enabling config reloading before the agent starts
  # also windows doesn't have SIGHUP. we can skip it
  sighup_id = LogStash::Environment.windows? ? nil : trap_sighup()

  agent_return = @agent_task.wait

  @agent.shutdown

  # flush any outstanding log messages during shutdown
  org.apache.logging.log4j.LogManager.shutdown

  agent_return

rescue org.logstash.LockException => e
  logger.fatal(I18n.t("logstash.runner.locked-data-path", :path => setting("path.data")))
  return 1
rescue Clamp::UsageError => e
  $stderr.puts "ERROR: #{e.message}"
  show_short_help
  return 1
rescue => e
  # if logger itself is not initialized
  if LogStash::Logging::Logger.get_logging_context.nil?
    $stderr.puts "#{I18n.t("oops")} :error => #{e}, :backtrace => #{e.backtrace}"
  else
    logger.fatal(I18n.t("oops"), :error => e, :backtrace => e.backtrace)
  end
  return 1
ensure
  Stud::untrap("INT", sigint_id) unless sigint_id.nil?
  Stud::untrap("TERM", sigterm_id) unless sigterm_id.nil?
  Stud::untrap("HUP", sighup_id) unless sighup_id.nil?
  FileLockFactory.releaseLock(@data_path_lock) if @data_path_lock
  @log_fd.close if @log_fd
end

#fail(message) ⇒ Object

Emit a failure message and abort.



445
446
447
# File 'lib/logstash/runner.rb', line 445

def fail(message)
  signal_usage_error(message)
end

#fetch_settings_path(cli_args) ⇒ Object

where can I find the logstash.yml file?

  1. look for a “–path.settings path”

  2. look for a “–path.settings=path”

  3. check if the LS_SETTINGS_DIR environment variable is set

  4. return nil if not found



509
510
511
512
513
514
515
516
517
518
519
520
# File 'lib/logstash/runner.rb', line 509

def fetch_settings_path(cli_args)
  if i=cli_args.find_index("--path.settings")
    cli_args[i+1]
  elsif settings_arg = cli_args.find {|v| v.match(/--path.settings=/) }
    match = settings_arg.match(/--path.settings=(.*)/)
    match[1]
  elsif ENV['LS_SETTINGS_DIR']
    ENV['LS_SETTINGS_DIR']
  else
    nil
  end
end

#run(args) ⇒ Object



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/logstash/runner.rb', line 210

def run(args)
  settings_path = fetch_settings_path(args)

  @settings.set("path.settings", settings_path) if settings_path

  begin
    LogStash::SETTINGS.from_yaml(LogStash::SETTINGS.get("path.settings"))
  rescue Errno::ENOENT
    $stderr.puts "WARNING: Could not find logstash.yml which is typically located in $LS_HOME/config or /etc/logstash. You can specify the path using --path.settings. Continuing using the defaults"
  rescue => e
    # abort unless we're just looking for the help
    unless cli_help?(args)
      if e.kind_of?(Psych::Exception)
        yaml_file_path = ::File.join(LogStash::SETTINGS.get("path.settings"), "logstash.yml")
        $stderr.puts "ERROR: Failed to parse YAML file \"#{yaml_file_path}\". Please confirm if the YAML structure is valid (e.g. look for incorrect usage of whitespace or indentation). Aborting... parser_error=>#{e.message}"
      else
        $stderr.puts "ERROR: Failed to load settings file from \"path.settings\". Aborting... path.setting=#{LogStash::SETTINGS.get("path.settings")}, exception=#{e.class}, message=>#{e.message}"
      end
      return 1
    end
  end

  super(*[args])
end

#setting(key) ⇒ Object



500
501
502
# File 'lib/logstash/runner.rb', line 500

def setting(key)
  @settings.get_value(key)
end

#show_gemsObject

def show_version_java



424
425
426
427
428
429
# File 'lib/logstash/runner.rb', line 424

def show_gems
  require "rubygems"
  Gem::Specification.each do |spec|
    puts "gem #{spec.name} #{spec.version}"
  end
end

#show_short_helpObject

def fail



449
450
451
# File 'lib/logstash/runner.rb', line 449

def show_short_help
  puts I18n.t("logstash.runner.short-help")
end

#show_versionObject

def self.main



400
401
402
403
404
405
406
407
408
# File 'lib/logstash/runner.rb', line 400

def show_version
  show_version_logstash

  if logger.info?
    show_version_ruby
    show_version_java if LogStash::Environment.jruby?
    show_gems if logger.debug?
  end
end

#show_version_javaObject

def show_version_ruby



418
419
420
421
422
# File 'lib/logstash/runner.rb', line 418

def show_version_java
  properties = java.lang.System.getProperties
  puts "java #{properties["java.version"]} (#{properties["java.vendor"]})"
  puts "jvm #{properties["java.vm.name"]} / #{properties["java.vm.version"]}"
end

#show_version_logstashObject

def show_version



410
411
412
# File 'lib/logstash/runner.rb', line 410

def show_version_logstash
  puts "logstash #{LOGSTASH_VERSION}"
end

#show_version_rubyObject

def show_version_logstash



414
415
416
# File 'lib/logstash/runner.rb', line 414

def show_version_ruby
  puts RUBY_DESCRIPTION
end

#start_shell(shell, start_binding) ⇒ Object



453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
# File 'lib/logstash/runner.rb', line 453

def start_shell(shell, start_binding)
  case shell
  when "pry"
    require 'pry'
    start_binding.pry
  when "irb"
    require 'irb'
    ARGV.clear
    # TODO: set binding to this instance of Runner
    # currently bugged as per https://github.com/jruby/jruby/issues/384
    IRB.start(__FILE__)
  else
    fail(I18n.t("logstash.runner.invalid-shell"))
  end
end

#trap_sighupObject



469
470
471
472
473
474
# File 'lib/logstash/runner.rb', line 469

def trap_sighup
  Stud::trap("HUP") do
    logger.warn(I18n.t("logstash.agent.sighup"))
    @agent.converge_state_and_update
  end
end

#trap_sigintObject



483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
# File 'lib/logstash/runner.rb', line 483

def trap_sigint
  Stud::trap("INT") do
    if @interrupted_once
      logger.fatal(I18n.t("logstash.agent.forced_sigint"))
      # calling just Kernel.exit only raises SystemExit exception
      # and doesn't guarantee the process will terminate
      # We must call Kernel.exit! so java.lang.System.exit is called
      exit!(1)
    else
      logger.warn(I18n.t("logstash.agent.sigint"))
      Thread.new(logger) {|lg| sleep 5; lg.warn(I18n.t("logstash.agent.slow_shutdown")) }
      @interrupted_once = true
      @agent_task.stop!
    end
  end
end

#trap_sigtermObject



476
477
478
479
480
481
# File 'lib/logstash/runner.rb', line 476

def trap_sigterm
  Stud::trap("TERM") do
    logger.warn(I18n.t("logstash.agent.sigterm"))
    @agent_task.stop!
  end
end