fluent-plugin-out-kafka-rest 0.1.1.1 → 0.1.1.2
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 +3 -0
- data/README.md +22 -2
- data/fluent-plugin-out-kafka-rest.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 663b72788080ff411e5d8efc7961e600d2efa527
|
|
4
|
+
data.tar.gz: 2b8de90d838ba6304b97dca1cf272e14077d5b12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f68c455e10c87033fd895e69638ccab8c4b9dc1114b21b33e45fa482819f1ee5eb6e769d8c58ffd0d4a47dbb64ff5d469053aed8bdd75e4e45310f9f3c3b6fd9
|
|
7
|
+
data.tar.gz: dafc12ea7e1be0f7901f998c16e38098a9553963203aee06b1d3374de6a0b4e7054e0c445c96c817cd9c23566e72a86ce099e83573cc8a9292b8709a570e2090
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -9,19 +9,39 @@ for the detail of REST Proxy service.
|
|
|
9
9
|
|
|
10
10
|
<match *>
|
|
11
11
|
type kafka_rest
|
|
12
|
-
endpoint_url
|
|
12
|
+
endpoint_url http://localhost.local:8082/topics/topic
|
|
13
13
|
# use_ssl false
|
|
14
14
|
# serializer json_bin
|
|
15
15
|
# rate_limit_msec 0
|
|
16
16
|
</match>
|
|
17
17
|
|
|
18
|
+
## use https
|
|
19
|
+
|
|
20
|
+
When you use https instead of http,
|
|
21
|
+
set "use_ssl" to true.
|
|
22
|
+
|
|
23
|
+
The following is an example.
|
|
24
|
+
|
|
25
|
+
<match *>
|
|
26
|
+
type kafka_rest
|
|
27
|
+
endpoint_url https://localhost.local:8082/topics/topic
|
|
28
|
+
use_ssl true
|
|
29
|
+
# serializer json_bin
|
|
30
|
+
# rate_limit_msec 0
|
|
31
|
+
</match>
|
|
32
|
+
|
|
33
|
+
I simply tested https mode with AWS's ELB.
|
|
34
|
+
|
|
35
|
+
IMAGE
|
|
36
|
+
|
|
37
|
+
fluentd --> ELB --> Kafka REST Proxy --> Kafka
|
|
38
|
+
|
|
18
39
|
## ToDo
|
|
19
40
|
|
|
20
41
|
* Change tests
|
|
21
42
|
* Fix the function to include tags and timestamps.
|
|
22
43
|
We should include such information into the request body.
|
|
23
44
|
* Add function to submit multiple records at once.
|
|
24
|
-
* Try SSL via ELB
|
|
25
45
|
* Avro support
|
|
26
46
|
|
|
27
47
|
## Note
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |gem|
|
|
4
4
|
gem.name = "fluent-plugin-out-kafka-rest"
|
|
5
|
-
gem.version = "0.1.1.
|
|
5
|
+
gem.version = "0.1.1.2"
|
|
6
6
|
gem.authors = ["dobachi"]
|
|
7
7
|
gem.email = ["dobachi1983oss@gmail.com"]
|
|
8
8
|
gem.summary = %q{A fluentd output plugin for sending logs to Kafka REST Proxy}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-out-kafka-rest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.1.
|
|
4
|
+
version: 0.1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- dobachi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: yajl-ruby
|