fluent-plugin-forest 0.1.2 → 0.1.3
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.md +2 -0
- data/fluent-plugin-forest.gemspec +1 -2
- metadata +3 -19
data/README.md
CHANGED
|
@@ -17,6 +17,8 @@ You SHOULD NOT use ForestOutput for tags increasing infinitly.
|
|
|
17
17
|
|
|
18
18
|
## Configuration
|
|
19
19
|
|
|
20
|
+
**NOTICE:** If you configure `fluent-plugin-forest` with `buffer_type file` (or plugins, default buffer type is file), you should modify `buffer_path` with `__TAG__` (or `${tag}`) to help to use buffer files for each tags.
|
|
21
|
+
|
|
20
22
|
### ForestOutput
|
|
21
23
|
|
|
22
24
|
If you are writing long long configurations like below:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
Gem::Specification.new do |gem|
|
|
3
3
|
gem.name = "fluent-plugin-forest"
|
|
4
|
-
gem.version = "0.1.
|
|
4
|
+
gem.version = "0.1.3"
|
|
5
5
|
gem.authors = ["TAGOMORI Satoshi"]
|
|
6
6
|
gem.email = ["tagomoris@gmail.com"]
|
|
7
7
|
gem.description = %q{create sub-plugin dynamically per tags, with template configuration and parameters}
|
|
@@ -14,6 +14,5 @@ Gem::Specification.new do |gem|
|
|
|
14
14
|
gem.require_paths = ["lib"]
|
|
15
15
|
|
|
16
16
|
gem.add_development_dependency "rake"
|
|
17
|
-
gem.add_development_dependency "fluentd"
|
|
18
17
|
gem.add_runtime_dependency "fluentd"
|
|
19
18
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-forest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-04-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -27,22 +27,6 @@ dependencies:
|
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0'
|
|
30
|
-
- !ruby/object:Gem::Dependency
|
|
31
|
-
name: fluentd
|
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
|
-
requirements:
|
|
35
|
-
- - ! '>='
|
|
36
|
-
- !ruby/object:Gem::Version
|
|
37
|
-
version: '0'
|
|
38
|
-
type: :development
|
|
39
|
-
prerelease: false
|
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
|
-
requirements:
|
|
43
|
-
- - ! '>='
|
|
44
|
-
- !ruby/object:Gem::Version
|
|
45
|
-
version: '0'
|
|
46
30
|
- !ruby/object:Gem::Dependency
|
|
47
31
|
name: fluentd
|
|
48
32
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -98,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
98
82
|
version: '0'
|
|
99
83
|
requirements: []
|
|
100
84
|
rubyforge_project:
|
|
101
|
-
rubygems_version: 1.8.
|
|
85
|
+
rubygems_version: 1.8.23
|
|
102
86
|
signing_key:
|
|
103
87
|
specification_version: 3
|
|
104
88
|
summary: plugin to create output plugin instances per tags dynamically
|