fluent-plugin-tail_path 0.0.2 → 0.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/example.conf +15 -0
- data/fluent-plugin-tail_path.gemspec +1 -3
- data/lib/fluent/plugin/in_tail_path.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7035a9557c7fb34608badc84b8d937c0627f60df
|
|
4
|
+
data.tar.gz: e16fd13e7436ac50fe1914ca71861e05ee996961
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 656da51399cfd849f7cf66292456ddac9a3ea7d218a8641ca64b88ba679df359b33fd0b29612ca5bd03094e115c224f536af6c95ffcec21d2776891748cd6376
|
|
7
|
+
data.tar.gz: 0273cb6aa4283e046dedffd45dff24fd5a4f095f328fb04f3f2caed28ebcc4237d235349262d30eb48eaef9479cab226c6fb350b2a8e3439b1146109f44b03a6
|
data/CHANGELOG.md
CHANGED
data/example.conf
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<source>
|
|
2
|
+
type tail_path
|
|
3
|
+
format none
|
|
4
|
+
path /var/log/fluentd_test.log
|
|
5
|
+
pos_file /var/log/fluentd_test.pos
|
|
6
|
+
tag test
|
|
7
|
+
rotate_wait 5
|
|
8
|
+
read_from_head true
|
|
9
|
+
refresh_interval 60
|
|
10
|
+
path_key path
|
|
11
|
+
</source>
|
|
12
|
+
|
|
13
|
+
<match test>
|
|
14
|
+
type stdout
|
|
15
|
+
</match>
|
|
@@ -3,15 +3,13 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "fluent-plugin-tail_path"
|
|
6
|
-
s.version = "0.0.
|
|
6
|
+
s.version = "0.0.3"
|
|
7
7
|
s.authors = ["szhem", "Naotoshi Seo"]
|
|
8
8
|
s.email = ["sonots@gmail.com"]
|
|
9
9
|
s.homepage = "https://github.com/sonots/fluent-plugin-tail_path"
|
|
10
10
|
s.summary = "Fluentd in_tail extension to add `path` field"
|
|
11
11
|
s.description = s.summary
|
|
12
12
|
|
|
13
|
-
s.rubyforge_project = "fluent-plugin-tail_path"
|
|
14
|
-
|
|
15
13
|
s.files = `git ls-files`.split("\n")
|
|
16
14
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
17
15
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-tail_path
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- szhem
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2015-02-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fluentd
|
|
@@ -82,6 +82,7 @@ files:
|
|
|
82
82
|
- LICENSE
|
|
83
83
|
- README.md
|
|
84
84
|
- Rakefile
|
|
85
|
+
- example.conf
|
|
85
86
|
- fluent-plugin-tail_path.gemspec
|
|
86
87
|
- lib/fluent/plugin/in_tail_path.rb
|
|
87
88
|
- test/helper.rb
|
|
@@ -104,8 +105,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
105
|
- !ruby/object:Gem::Version
|
|
105
106
|
version: '0'
|
|
106
107
|
requirements: []
|
|
107
|
-
rubyforge_project:
|
|
108
|
-
rubygems_version: 2.2.
|
|
108
|
+
rubyforge_project:
|
|
109
|
+
rubygems_version: 2.2.2
|
|
109
110
|
signing_key:
|
|
110
111
|
specification_version: 4
|
|
111
112
|
summary: Fluentd in_tail extension to add `path` field
|