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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88f11331238a6584b6ab7b811edeb79cf02a9743
4
- data.tar.gz: 617b94b24763f6bd972a6cfc0f4a931fcefad468
3
+ metadata.gz: 7035a9557c7fb34608badc84b8d937c0627f60df
4
+ data.tar.gz: e16fd13e7436ac50fe1914ca71861e05ee996961
5
5
  SHA512:
6
- metadata.gz: c91fe5f2ea0bf0e4ee7707c6094eb7324513bf72f0699dd7121b55261b9bf59ade730e3fd390b7b602cf7c6dc6c654020c938ee5fd8797db9ff17c053eadeba5
7
- data.tar.gz: 144cf81e952b726b6bc8056e4faa7fb24f36e195fb1296047a6c51ed2489c9e8e30a22d08f548e4f713ae0270671a2881d7b7f8dc08360a304328e09d1a564e5
6
+ metadata.gz: 656da51399cfd849f7cf66292456ddac9a3ea7d218a8641ca64b88ba679df359b33fd0b29612ca5bd03094e115c224f536af6c95ffcec21d2776891748cd6376
7
+ data.tar.gz: 0273cb6aa4283e046dedffd45dff24fd5a4f095f328fb04f3f2caed28ebcc4237d235349262d30eb48eaef9479cab226c6fb350b2a8e3439b1146109f44b03a6
@@ -1,3 +1,9 @@
1
+ ## 0.0.3 (2015/02/17)
2
+
3
+ Fixes:
4
+
5
+ * Fix to work
6
+
1
7
  ## 0.0.2 (2014/08/04)
2
8
 
3
9
  Fixes:
@@ -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.2"
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) }
@@ -1,7 +1,7 @@
1
1
  require 'fluent/plugin/in_tail'
2
2
 
3
3
  class Fluent::NewTailPathInput < Fluent::NewTailInput
4
- Fluent::Plugin.register_output('in_taiL_path', self)
4
+ Fluent::Plugin.register_input('tail_path', self)
5
5
 
6
6
  config_param :path_key, :string, :default => nil
7
7
 
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.2
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: 2014-08-03 00:00:00.000000000 Z
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: fluent-plugin-tail_path
108
- rubygems_version: 2.2.0
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