fluent-plugin-scribe 0.9.10 → 0.9.11
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +9 -3
- data/VERSION +1 -1
- data/fluent-plugin-scribe.gemspec +2 -2
- data/lib/fluent/plugin/in_scribe.rb +1 -1
- metadata +6 -6
data/README.rdoc
CHANGED
@@ -31,18 +31,24 @@ The Scribe plugin for fluent enables fluent daemon, to talk the Scribe protocol
|
|
31
31
|
ResultCode Log(1: list<LogEntry> messages);
|
32
32
|
}
|
33
33
|
|
34
|
+
The category field is used as fluent 'tag'.
|
35
|
+
|
34
36
|
== How to use?
|
35
37
|
|
36
|
-
|
38
|
+
To use this plugin with fluent, please add the following configuration to fluent.conf.
|
37
39
|
|
38
40
|
# Scribe input
|
39
41
|
<source>
|
40
42
|
type scribe
|
41
43
|
port 1463
|
42
|
-
tag debug.aiueo
|
43
44
|
</source>
|
44
45
|
|
45
|
-
|
46
|
+
The following options are supported.
|
47
|
+
|
48
|
+
* port: port number (default: 1463)
|
49
|
+
* bind: bind address (default: 0.0.0.0)
|
50
|
+
* server_type: server architecture either in 'simple', 'threaded', 'thread_pool', 'nonblocking' (default: thread_pool)
|
51
|
+
* framed: use framed protocol or not (default: true)
|
46
52
|
|
47
53
|
== For Developers
|
48
54
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.11
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{fluent-plugin-scribe}
|
8
|
-
s.version = "0.9.
|
8
|
+
s.version = "0.9.11"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Kazuki Ohta"]
|
12
|
-
s.date = %q{2011-09
|
12
|
+
s.date = %q{2011-10-09}
|
13
13
|
s.extra_rdoc_files = [
|
14
14
|
"README.rdoc"
|
15
15
|
]
|
@@ -41,7 +41,7 @@ class ScribeInput < Input
|
|
41
41
|
@port = @port.to_i
|
42
42
|
@bind = conf['bind'] || @bind
|
43
43
|
|
44
|
-
@server_type = conf['server_type'] || '
|
44
|
+
@server_type = conf['server_type'] || 'nonblocking'
|
45
45
|
@is_framed = conf['framed'].to_s != "false"
|
46
46
|
|
47
47
|
if body_size_limit = conf['body_size_limit']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-scribe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.11
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,12 +9,12 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-09
|
12
|
+
date: 2011-10-09 00:00:00.000000000 +09:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: fluent
|
17
|
-
requirement: &
|
17
|
+
requirement: &2158069900 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ~>
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: 0.9.7
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2158069900
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: thrift
|
28
|
-
requirement: &
|
28
|
+
requirement: &2158069360 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: 0.7.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *2158069360
|
37
37
|
description:
|
38
38
|
email:
|
39
39
|
executables: []
|