fluent-plugin-tail-asis 0.0.1 → 0.0.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.
- data/README.md +11 -2
- data/fluent-plugin-tail-asis.gemspec +2 -2
- metadata +6 -6
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Fluent::Plugin::TailAsis
|
2
2
|
|
3
|
-
|
3
|
+
TailInput exteded plugin for fluentd.
|
4
|
+
It assumes that this plug-in is used with "fluent-plugin-fail-alternative".
|
4
5
|
|
5
6
|
## Installation
|
6
7
|
|
@@ -18,7 +19,15 @@ Or install it yourself as:
|
|
18
19
|
|
19
20
|
## Usage
|
20
21
|
|
21
|
-
|
22
|
+
Sample config
|
23
|
+
|
24
|
+
<source>
|
25
|
+
type tail_asis
|
26
|
+
path /some/where/xxxx.log
|
27
|
+
pos_file /some/where/xxxx.pos
|
28
|
+
asis_key message
|
29
|
+
tag test.log
|
30
|
+
</source>
|
22
31
|
|
23
32
|
## Contributing
|
24
33
|
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "fluent-plugin-tail-asis"
|
7
|
-
gem.version = "0.0.
|
7
|
+
gem.version = "0.0.2"
|
8
8
|
gem.authors = ["TERAOKA Yoshinori"]
|
9
9
|
gem.email = ["jyobijyoba@gmail.com"]
|
10
10
|
gem.description = %q{fluentd input plugin, whole line read into single key}
|
11
11
|
gem.summary = %q{fluentd input plugin, whole line read into single key}
|
12
|
-
gem.homepage = ""
|
12
|
+
gem.homepage = "https://github.com/yteraoka/fluent-plugin-tail-asis"
|
13
13
|
|
14
14
|
gem.files = `git ls-files`.split($/)
|
15
15
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-tail-asis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
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: 2013-02-
|
12
|
+
date: 2013-02-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -75,7 +75,7 @@ files:
|
|
75
75
|
- lib/fluent/plugin/in_tail_asis.rb
|
76
76
|
- test/helper.rb
|
77
77
|
- test/plugin/test_in_tail_asis.rb
|
78
|
-
homepage:
|
78
|
+
homepage: https://github.com/yteraoka/fluent-plugin-tail-asis
|
79
79
|
licenses: []
|
80
80
|
post_install_message:
|
81
81
|
rdoc_options: []
|
@@ -89,7 +89,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
89
|
version: '0'
|
90
90
|
segments:
|
91
91
|
- 0
|
92
|
-
hash: -
|
92
|
+
hash: -2249573653986964656
|
93
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
@@ -98,10 +98,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
98
|
version: '0'
|
99
99
|
segments:
|
100
100
|
- 0
|
101
|
-
hash: -
|
101
|
+
hash: -2249573653986964656
|
102
102
|
requirements: []
|
103
103
|
rubyforge_project: fluent-plugin-tailasis
|
104
|
-
rubygems_version: 1.8.
|
104
|
+
rubygems_version: 1.8.25
|
105
105
|
signing_key:
|
106
106
|
specification_version: 3
|
107
107
|
summary: fluentd input plugin, whole line read into single key
|