fluent-plugin-rabbitmq 0.1.3 → 0.1.5
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/README.md +1 -0
- data/fluent-plugin-rabbitmq.gemspec +2 -2
- data/lib/fluent/plugin/in_rabbitmq.rb +1 -0
- data/lib/fluent/plugin/out_rabbitmq.rb +3 -1
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cef75c71139acf25212c8ef531cf9f2389aa098a580693e1d4d9b773f5872053
|
4
|
+
data.tar.gz: 129fd5009bd1c3c11ae44af7a32a6369d795f6a8a4ca66100c0542c627de9e25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 226940ef7e8923648c97757a6d9a238a062840653e4369317ed93c69539d0d7c4eeb00f0e7982d6569e0943fbe5120507a931e3382ffca3efdc50ce68d82b8fa
|
7
|
+
data.tar.gz: 81be12b79ff0467a6d319899395310f24100eb626a4ae18cb2cae64518d3dc0870df17966ac9a5ac4c8dab04f846f2418a65386b523d4afb5a9d19cac726dd19
|
data/README.md
CHANGED
@@ -57,6 +57,7 @@ fluentd >= 0.14.0
|
|
57
57
|
|exchange_type|direct|topic|type of created exchange|
|
58
58
|
|exchange_routing_key|hoge|nil|created exchange routing key|
|
59
59
|
|exchange_durable|true|false|durability of create exchange|
|
60
|
+
|exchange_no_declare|true|false|passive declare option for exchange|
|
60
61
|
|manual_ack|true|false|manual ACK|
|
61
62
|
|queue_mode|"lazy"|nil|queue mode|
|
62
63
|
|queue_type|"quorum"|nil|queue type|
|
@@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = "fluent-plugin-rabbitmq"
|
6
|
-
spec.version = "0.1.
|
7
|
-
spec.authors = ["NTT
|
6
|
+
spec.version = "0.1.5"
|
7
|
+
spec.authors = ["NTT DOCOMO BUSINESS"]
|
8
8
|
spec.email = ["masaki.matsushita@ntt.com"]
|
9
9
|
|
10
10
|
spec.summary = %q{fluent plugin for rabbitmq (AMQP)}
|
@@ -52,6 +52,7 @@ module Fluent::Plugin
|
|
52
52
|
config_param :exchange, :string
|
53
53
|
config_param :exchange_type, :string
|
54
54
|
config_param :exchange_durable, :bool, default: false
|
55
|
+
config_param :exchange_no_declare, :bool, default: false
|
55
56
|
|
56
57
|
config_param :persistent, :bool, default: false
|
57
58
|
config_param :routing_key, :string, default: nil
|
@@ -125,7 +126,8 @@ module Fluent::Plugin
|
|
125
126
|
@channel = @bunny.create_channel
|
126
127
|
exchange_options = {
|
127
128
|
durable: @exchange_durable,
|
128
|
-
auto_delete: @exchange_auto_delete
|
129
|
+
auto_delete: @exchange_auto_delete,
|
130
|
+
no_declare: @exchange_no_declare
|
129
131
|
}
|
130
132
|
@bunny_exchange = Bunny::Exchange.new(@channel, @exchange_type, @exchange, exchange_options)
|
131
133
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-rabbitmq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- NTT
|
8
|
-
autorequire:
|
7
|
+
- NTT DOCOMO BUSINESS
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: bundler
|
@@ -129,7 +128,6 @@ homepage: https://github.com/nttcom/fluent-plugin-rabbitmq
|
|
129
128
|
licenses:
|
130
129
|
- Apache-2.0
|
131
130
|
metadata: {}
|
132
|
-
post_install_message:
|
133
131
|
rdoc_options: []
|
134
132
|
require_paths:
|
135
133
|
- lib
|
@@ -144,8 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
142
|
- !ruby/object:Gem::Version
|
145
143
|
version: '0'
|
146
144
|
requirements: []
|
147
|
-
rubygems_version: 3.
|
148
|
-
signing_key:
|
145
|
+
rubygems_version: 3.7.0
|
149
146
|
specification_version: 4
|
150
147
|
summary: fluent plugin for rabbitmq (AMQP)
|
151
148
|
test_files: []
|