From 8b5b48b11feeb7d071556839cae64cf199d20954 Mon Sep 17 00:00:00 2001 From: zyphlar Date: Wed, 29 Nov 2017 18:53:07 -0800 Subject: [PATCH] The previous example syntax did not work for me Adding another example that did work. --- examples/postgres.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/examples/postgres.md b/examples/postgres.md index 39a3a66..dcb6ada 100644 --- a/examples/postgres.md +++ b/examples/postgres.md @@ -1,4 +1,4 @@ -# Example: Postgres +# Example 1: Postgres With thanks to [@roflmao](https://github.com/roflmao) ``` input @@ -13,3 +13,23 @@ output { } ``` +# Example 2: If the previous example doesn't work (i.e. connection errors) + +> Tested with https://jdbc.postgresql.org/download/postgresql-42.1.4.jre7.jar saved to /opt/logstash/vendor/jar/jdbc/ +> Not sure if the `connection_test => false` is necessary or not. + +``` +input +{ + stdin { } +} +output { + jdbc { + connection_string => 'jdbc:postgresql://hostname:5432/database' + connection_test => false + username => 'username' + password => 'password' + statement => [ "INSERT INTO log (host, timestamp, message) VALUES(?, CAST (? AS timestamp), ?)", "host", "@timestamp", "message" ] + } +} +```