From 442ddf16eb0a5c269066186b1c1b17394110d514 Mon Sep 17 00:00:00 2001 From: hordijk Date: Thu, 7 Apr 2016 08:35:58 +0200 Subject: [PATCH] Update README.md Fix issue in documentation: driver_jar is not supported, it should be driver_jar_path If driver_jar is used logstash will generate this error message=>"Unknown setting 'driver_path' for jdbc" Used the driver_jar_path which is used in class LogStash::Outputs::Jdbc instead. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 805ff04..dd29441 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Tests are not yet 100% complete. | ------ | ---- | ----------- | --------- | ------- | | driver_class | String | Specify a driver class if autoloading fails | No | | | driver_auto_commit | Boolean | If the driver does not support auto commit, you should set this to false | No | True | -| driver_path | String | File path to jar file containing your JDBC driver. This is optional, and all JDBC jars may be placed in $LOGSTASH_HOME/vendor/jar/jdbc instead. | No | | +| driver_jar_path | String | File path to jar file containing your JDBC driver. This is optional, and all JDBC jars may be placed in $LOGSTASH_HOME/vendor/jar/jdbc instead. | No | | | connection_string | String | JDBC connection URL | Yes | | | username | String | JDBC username - this is optional as it may be included in the connection string, for many drivers | No | | | password | String | JDBC password - this is optional as it may be included in the connection string, for many drivers | No | |