module LogStash::PluginMixins::JdbcStreaming

Public Class Methods

included(base) click to toggle source

This method is called when someone includes this module

# File lib/logstash/plugin_mixins/jdbc_streaming.rb, line 26
def self.included(base)
  # Add these methods to the 'base' given.
  base.extend(self)
  base.setup_jdbc_config
end

Public Instance Methods

prepare_jdbc_connection() click to toggle source
# File lib/logstash/plugin_mixins/jdbc_streaming.rb, line 59
def prepare_jdbc_connection
  load_driver

  @database = Sequel.connect(@jdbc_connection_string, complete_sequel_opts)
  if @jdbc_validate_connection
    @database.extension(:connection_validator)
    @database.pool.connection_validation_timeout = @jdbc_validation_timeout
  end
  begin
    @database.test_connection
  rescue Sequel::DatabaseConnectionError => e
    #TODO return false and let the plugin raise a LogStash::ConfigurationError
    raise e
  end
end
setup_jdbc_config() click to toggle source
# File lib/logstash/plugin_mixins/jdbc_streaming.rb, line 33
def setup_jdbc_config
  # JDBC driver library path to third party driver library.
  config :jdbc_driver_library, :validate => :path

  # JDBC driver class to load, for example "oracle.jdbc.OracleDriver" or "org.apache.derby.jdbc.ClientDriver"
  config :jdbc_driver_class, :validate => :string, :required => true

  # JDBC connection string
  config :jdbc_connection_string, :validate => :string, :required => true

  # JDBC user
  config :jdbc_user, :validate => :string

  # JDBC password
  config :jdbc_password, :validate => :password

  # Connection pool configuration.
  # Validate connection before use.
  config :jdbc_validate_connection, :validate => :boolean, :default => false

  # Connection pool configuration.
  # How often to validate a connection (in seconds)
  config :jdbc_validation_timeout, :validate => :number, :default => 3600
end