fluent-plugin-kestrel 0.2.0 → 0.2.1

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.
data/README.rdoc CHANGED
@@ -1,6 +1,6 @@
1
1
  = fluent-plugin-kestrel
2
2
 
3
- fluentd output plugin for kestrel.
3
+ fluentd input/output plugin for kestrel.
4
4
 
5
5
  fluentd is an event collector system.
6
6
  see https://github.com/fluent/fluentd
@@ -14,16 +14,31 @@ see https://github.com/robey/kestrel
14
14
 
15
15
  == Fluentd Configuration
16
16
 
17
+ === Output
18
+
17
19
  <match kestrel.**>
18
20
  type kestrel
19
21
  host localhost # (required) kestrel host
20
- queue test # (required) queue name of kestrel
22
+ queue fluent # (required) queue name of kestrel
21
23
 
22
24
  port 22133 # (optional) kestrel port. default 22133
23
25
  ttl 100 # (optional) ttl(sec). default=0 (never expire)
24
26
  </match>
25
27
 
26
- == Data Format
28
+ === Input
29
+
30
+ <source>
31
+ type kestrel
32
+ host localhost # (required) kestrel host
33
+ queue fluent # (required) kestrel queue name
34
+ tag kestrel.log # (required) fluentd tag
35
+
36
+ port 22133 # (optional) kestrel port. default 22133
37
+ timeout 10 # (optional) default 10.
38
+ </source>
39
+
40
+
41
+ == Output Data Format
27
42
 
28
43
  [time]\t[tag]\t[resource(JSON)]
29
44
 
data/Rakefile CHANGED
@@ -17,8 +17,8 @@ Jeweler::Tasks.new do |gem|
17
17
  gem.name = "fluent-plugin-kestrel"
18
18
  gem.homepage = "http://github.com/tjun/fluent-plugin-kestrel"
19
19
  gem.license = "Apache License, Version 2.0"
20
- gem.summary = %Q{fluentd output plugin for kestrel.}
21
- gem.description = %Q{fluentd output plugin for kestrel queue.}
20
+ gem.summary = %Q{fluentd input/output plugin for kestrel.}
21
+ gem.description = %Q{fluentd input/output plugin for kestrel queue.}
22
22
  gem.email = "t.junichiro@gmail.com"
23
23
  gem.authors = ["Junichiro Takagi"]
24
24
  # dependencies defined in Gemfile
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "fluent-plugin-kestrel"
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Junichiro Takagi"]
12
12
  s.date = "2012-05-22"
13
- s.description = "fluentd output plugin for kestrel queue."
13
+ s.description = "fluentd input/output plugin for kestrel queue."
14
14
  s.email = "t.junichiro@gmail.com"
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE.txt",
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
34
34
  s.licenses = ["Apache License, Version 2.0"]
35
35
  s.require_paths = ["lib"]
36
36
  s.rubygems_version = "1.8.24"
37
- s.summary = "fluentd output plugin for kestrel."
37
+ s.summary = "fluentd input/output plugin for kestrel."
38
38
 
39
39
  if s.respond_to? :specification_version then
40
40
  s.specification_version = 3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-kestrel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -139,7 +139,7 @@ dependencies:
139
139
  - - ! '>='
140
140
  - !ruby/object:Gem::Version
141
141
  version: '0'
142
- description: fluentd output plugin for kestrel queue.
142
+ description: fluentd input/output plugin for kestrel queue.
143
143
  email: t.junichiro@gmail.com
144
144
  executables: []
145
145
  extensions: []
@@ -174,7 +174,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
174
174
  version: '0'
175
175
  segments:
176
176
  - 0
177
- hash: -1831959958403091659
177
+ hash: -3471295489240879841
178
178
  required_rubygems_version: !ruby/object:Gem::Requirement
179
179
  none: false
180
180
  requirements:
@@ -186,5 +186,5 @@ rubyforge_project:
186
186
  rubygems_version: 1.8.24
187
187
  signing_key:
188
188
  specification_version: 3
189
- summary: fluentd output plugin for kestrel.
189
+ summary: fluentd input/output plugin for kestrel.
190
190
  test_files: []