logstash-integration-rabbitmq 7.3.0-java → 7.3.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/docs/input-rabbitmq.asciidoc +12 -1
- data/lib/logstash/plugin_mixins/rabbitmq_connection.rb +0 -6
- data/logstash-integration-rabbitmq.gemspec +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d87b910943f6be19026320fcad93686f4583361f394f4ce5415415bc99faaac3
|
|
4
|
+
data.tar.gz: f6dce144b898f2a818f8e9bc0751adc1e467f98ddf002abb6eedbf64f24242bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2de6023c6ae0ab82548a8933ed89771ebc839a24320e13065e177a12d488f29e329e0ef9983854600c03f28c67f49fcf627ecf92556a8839abbdae9255195d62
|
|
7
|
+
data.tar.gz: f0071bfa48a4b2f2c3727bef2543f06c9e88ef92d7a662606f782fccb508028d25f3bd3a7c6107a43334ae86d75ebf0ff6526d27ff400d5035dababf83189977
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 7.3.2
|
|
2
|
+
- Change `tls_certificate_password` type to `password` to protect from leaks in the logs [#54](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/54)
|
|
3
|
+
|
|
4
|
+
## 7.3.1
|
|
5
|
+
- DOCS: clarify the availability and cost of using the `metadata_enabled` option [#52](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/52)
|
|
6
|
+
|
|
1
7
|
## 7.3.0
|
|
2
8
|
- Refactor: logging improvements [#47](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/47)
|
|
3
9
|
* integrated MarchHare logging to be part of Logstash's log instead of using std-err
|
|
@@ -271,7 +271,18 @@ This is only relevant for direct or topic exchanges.
|
|
|
271
271
|
- `true`: deprecated alias for `basic`
|
|
272
272
|
* Default value is `none`
|
|
273
273
|
|
|
274
|
-
Enable the
|
|
274
|
+
Enable metadata about the RabbitMQ topic to be added to the event's `@metadata` field, for availablity during pipeline processing. In general, most output plugins and codecs do not include `@metadata` fields. This may impact memory usage and performance.
|
|
275
|
+
|
|
276
|
+
[id="plugins-{type}s-{plugin}-metadata_locations"]
|
|
277
|
+
====== Metadata mapping
|
|
278
|
+
|=====
|
|
279
|
+
| category | location | type
|
|
280
|
+
|
|
281
|
+
| headers |`[@metadata][rabbitmq_headers]` | key/value map
|
|
282
|
+
| properties |`[@metadata][rabbitmq_properties]` | key/value map
|
|
283
|
+
| raw payload |`[@metadata][rabbitmq_payload]` | byte sequence
|
|
284
|
+
|=====
|
|
285
|
+
|
|
275
286
|
|
|
276
287
|
[id="plugins-{type}s-{plugin}-passive"]
|
|
277
288
|
===== `passive`
|
|
@@ -81,12 +81,6 @@ module LogStash
|
|
|
81
81
|
# Passive queue creation? Useful for checking queue existance without modifying server state
|
|
82
82
|
config :passive, :validate => :boolean, :default => false
|
|
83
83
|
|
|
84
|
-
# TLS certifcate path
|
|
85
|
-
config :tls_certificate_path, :validate => :path, :obsolete => "This setting is obsolete. Use ssl_certificate_path instead"
|
|
86
|
-
|
|
87
|
-
# TLS certificate password
|
|
88
|
-
config :tls_certificate_password, :validate => :string, :obsolete => "This setting is obsolete. Use ssl_certificate_password instead"
|
|
89
|
-
|
|
90
84
|
# Extra queue arguments as an array.
|
|
91
85
|
# To make a RabbitMQ queue mirrored, use: `{"x-ha-policy" => "all"}`
|
|
92
86
|
config :arguments, :validate => :array, :default => {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-integration-rabbitmq'
|
|
3
|
-
s.version = '7.3.
|
|
3
|
+
s.version = '7.3.2'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Integration with RabbitMQ - input and output plugins"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-integration-rabbitmq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.3.
|
|
4
|
+
version: 7.3.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -217,8 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
217
|
- !ruby/object:Gem::Version
|
|
218
218
|
version: '0'
|
|
219
219
|
requirements: []
|
|
220
|
-
|
|
221
|
-
rubygems_version: 2.6.13
|
|
220
|
+
rubygems_version: 3.2.33
|
|
222
221
|
signing_key:
|
|
223
222
|
specification_version: 4
|
|
224
223
|
summary: Integration with RabbitMQ - input and output plugins
|