Skip to content

Commit b943c37

Browse files
authored
Doc: Change inline comment to callout (#181)
* Doc: Fix formatting to prepare for doc migration to MD * Bump to v5.5.3
1 parent 3aca2fe commit b943c37

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 5.5.3
2+
- [DOC] Rework inline comment to a callout in preparation for upcoming MD conversion [#181](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/181)
3+
14
## 5.5.2
25
- FIX: the input plugin's prior behaviour of opening a new database connection for each scheduled run (removed in `v5.4.1`) is restored, ensuring that infrequently-run schedules do not hold open connections to their databases indefinitely, _without_ reintroducing the leak [#130](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/130)
36

docs/filter-jdbc_static.asciidoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ filter {
123123
add_field => { user_lastname => "%{[user][0][lastname]}" }
124124
remove_field => ["server", "user"]
125125
staging_directory => "/tmp/logstash/jdbc_static/import_data"
126-
loader_schedule => "* */2 * * *" # run loaders every 2 hours
126+
loader_schedule => "* */2 * * *" <8>
127127
jdbc_user => "logstash"
128128
jdbc_password => "example"
129129
jdbc_driver_class => "org.postgresql.Driver"
@@ -153,6 +153,7 @@ returns multiple columns, the data is stored as a JSON object within the field.
153153
<6> When the user is not found in the database, an event is created using data from the <<plugins-{type}s-{plugin}-local_lookups>> `default hash` setting, and the event is tagged with the list set in <<plugins-{type}s-{plugin}-tag_on_default_use>>.
154154
<7> Takes data from the JSON object and stores it in top-level event fields for
155155
easier analysis in Kibana.
156+
<8> Runs loaders every 2 hours.
156157

157158
Here's a full example:
158159

logstash-integration-jdbc.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-integration-jdbc'
3-
s.version = '5.5.2'
3+
s.version = '5.5.3'
44
s.licenses = ['Apache License (2.0)']
55
s.summary = "Integration with JDBC - input and filter plugins"
66
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"

0 commit comments

Comments
 (0)