fluent-plugin-out-kafka-rest 0.1.1.1 → 0.1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f2d869e2f11c888524c8a0baf95a043bae3d3ad3
4
- data.tar.gz: 3f5b7c9cfca01e63bbfab6450203fd5ac82c8668
3
+ metadata.gz: 663b72788080ff411e5d8efc7961e600d2efa527
4
+ data.tar.gz: 2b8de90d838ba6304b97dca1cf272e14077d5b12
5
5
  SHA512:
6
- metadata.gz: af772a95ec49a7b39929da5f8055c9218e9f86d177ce52e9902712be7cbcfd695ef86875cacb3b20baa435815fc21c0ca26da8d65807391e85ea9f8076bed1d7
7
- data.tar.gz: d3aebf87e7debb387d92fc4a20bfe70aa0002d3fd40ff01d9a335cb8e2019ae06876dfa07206e63ef323f73c7994729f70db3511b7e48b948bed9d60989b2c1e
6
+ metadata.gz: f68c455e10c87033fd895e69638ccab8c4b9dc1114b21b33e45fa482819f1ee5eb6e769d8c58ffd0d4a47dbb64ff5d469053aed8bdd75e4e45310f9f3c3b6fd9
7
+ data.tar.gz: dafc12ea7e1be0f7901f998c16e38098a9553963203aee06b1d3374de6a0b4e7054e0c445c96c817cd9c23566e72a86ce099e83573cc8a9292b8709a570e2090
@@ -8,3 +8,6 @@
8
8
 
9
9
  ## 0.1.1.1
10
10
  * Fix README
11
+
12
+ ## 0.1.1.2
13
+ * Fix README
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 https://localhost.local:8082/topics/topic
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.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.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-13 00:00:00.000000000 Z
11
+ date: 2016-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: yajl-ruby