logstash-integration-jdbc 5.1.3 → 5.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/docs/filter-jdbc_static.asciidoc +10 -1
- data/logstash-integration-jdbc.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 624847dd498ef4c1cabb3623b33d6caae518d482b5e6cdab4d7aa97f79e9a0bf
|
4
|
+
data.tar.gz: 7fc2d7f3ebb36aa50db73c074c2f3b183f7378089a35d49bf9e581617c765cb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8d468fe9bd6c8d54f2aaffb17088bdc957d104e55c7b456f44afb8a581fe82dd7494ac18b768af575a95d634dc887615035be0f4a3a68261394a20254db47e6
|
7
|
+
data.tar.gz: b252ac776f43ea2d2a3db414d5e787fc1e8f480aeeaf73f81513ecee8c207851d7d557a9fa7878c1a9db6105891b05056f47ead3d7dddd23f49eedfcdd3a8497
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 5.1.4
|
2
|
+
- [DOC] Update filter-jdbc_static doc to describe ECS compatibility [#79](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/79)
|
3
|
+
|
1
4
|
## 5.1.3
|
2
5
|
- Improve robustness when handling errors from `sequel` library in jdbc static and streaming
|
3
6
|
filters[#78](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/78)
|
@@ -264,8 +264,17 @@ order is in place.
|
|
264
264
|
===============================
|
265
265
|
|
266
266
|
|
267
|
+
[id="plugins-{type}s-{plugin}-ecs"]
|
268
|
+
==== Compatibility with the Elastic Common Schema (ECS)
|
269
|
+
|
270
|
+
This plugin is compatible with the {ecs-ref}[Elastic Common Schema (ECS)].
|
271
|
+
It behaves the same regardless of ECS compatibility, except giving a warning when ECS is enabled and `target` isn't set.
|
272
|
+
|
273
|
+
TIP: Set the `target` option to avoid potential schema conflicts.
|
274
|
+
|
275
|
+
|
267
276
|
[id="plugins-{type}s-{plugin}-options"]
|
268
|
-
==== Jdbc_static
|
277
|
+
==== Jdbc_static filter configuration options
|
269
278
|
|
270
279
|
This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
|
271
280
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-integration-jdbc'
|
3
|
-
s.version = '5.1.
|
3
|
+
s.version = '5.1.4'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = "Integration with JDBC - input and filter plugins"
|
6
6
|
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"
|