fluent-plugin-df 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fluent-plugin-df.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 tiwakawa
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,44 @@
1
+ # Fluent::Plugin::Df
2
+
3
+ Df input plugin for Fluent event collector
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'fluent-plugin-df'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install fluent-plugin-df
18
+
19
+ ## Usage
20
+
21
+ <source>
22
+ type df
23
+ option -k
24
+ interval 3
25
+ tag_prefix df
26
+ target_mounts /
27
+ </source>
28
+
29
+ If you specify more than one `target_mounts`, separated by commas.
30
+
31
+ ## Output Format
32
+
33
+ df._dev_disk0s2: {"size":"487546976","used":"52533512","avail":"434757464","capacity":"11"}
34
+
35
+ Tag name is the concatenation of the name of the `tag_prefix` and file system.
36
+ `/` in the file system is replaced by an `_`
37
+
38
+ ## Contributing
39
+
40
+ 1. Fork it
41
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
42
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
43
+ 4. Push to the branch (`git push origin my-new-feature`)
44
+ 5. Create new Pull Request
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rake/testtask'
4
+ Rake::TestTask.new(:test) do |test|
5
+ test.libs << 'lib' << 'test'
6
+ test.pattern = 'test/**/test_*.rb'
7
+ test.verbose = true
8
+ end
9
+
10
+ task default: :test
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "fluent-plugin-df"
7
+ spec.version = "0.0.2"
8
+ spec.authors = ["tiwakawa"]
9
+ spec.email = ["tiwakawa@aiming-inc.com"]
10
+ spec.description = %q{input plugin to get disk free data}
11
+ spec.summary = %q{input plugin to get disk free data}
12
+ spec.homepage = ""
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files`.split($/)
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.3"
21
+ spec.add_development_dependency "rake"
22
+ spec.add_runtime_dependency "fluentd"
23
+ end
@@ -0,0 +1,83 @@
1
+ module Fluent
2
+ class DfInput < Fluent::Input
3
+ Fluent::Plugin.register_input('df', self)
4
+
5
+ config_param :option, :string, default: '-k'
6
+ config_param :interval, :integer, default: 3
7
+ config_param :tag_prefix, :string, default: 'df'
8
+ config_param :target_mounts, :string, default: '/'
9
+
10
+ def configure(conf)
11
+ super
12
+ @command = "df #{@option}"
13
+ end
14
+
15
+ def start
16
+ super
17
+ @loop = Coolio::Loop.new
18
+ @timer = DfInputTimerWatcher.new(@interval, true, &method(:watch))
19
+ @loop.attach(@timer)
20
+ @thread = Thread.new(&method(:run))
21
+ end
22
+
23
+ def shutdown
24
+ super
25
+ @loop.watchers.each { |w| w.detach }
26
+ @loop.stop
27
+ @thread.terminate
28
+ @thread.join
29
+ end
30
+
31
+ def run
32
+ @loop.run
33
+ rescue => e
34
+ $log.error "#{e.class.name} - #{e.message}"
35
+ end
36
+
37
+ private
38
+ def df
39
+ fss = `#{@command} 2> /dev/null`.split($/)
40
+ fss.shift # remove header
41
+ fss.map do |fs|
42
+ f = fs.split(/\s+/)
43
+ if arrayed_target_mounts.include?(f[5])
44
+ {
45
+ 'fs' => f[0].gsub(/\//, '_'),
46
+ 'size' => f[1],
47
+ 'used' => f[2],
48
+ 'avail' => f[3],
49
+ 'capacity' => f[4].delete('%')
50
+ }
51
+ end
52
+ end.compact
53
+ end
54
+
55
+ def arrayed_target_mounts
56
+ @target_mounts.gsub(/'/, '').split(',').map(&:strip)
57
+ end
58
+
59
+ def tag_name(fs)
60
+ @tag_prefix.empty? ? fs : "#{@tag_prefix}.#{fs}"
61
+ end
62
+
63
+ def watch
64
+ df.each do |result|
65
+ fs = result.delete('fs')
66
+ Fluent::Engine.emit(tag_name(fs), Fluent::Engine.now, result)
67
+ end
68
+ end
69
+ end
70
+
71
+ class DfInputTimerWatcher < Coolio::TimerWatcher
72
+ def initialize(interval, repeat, &callback)
73
+ @callback = callback
74
+ super(interval, repeat)
75
+ end
76
+
77
+ def on_timer
78
+ @callback.call
79
+ rescue => e
80
+ $log.error "#{e.class.name} - #{e.message}"
81
+ end
82
+ end
83
+ end
@@ -0,0 +1,19 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+
12
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
13
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
14
+
15
+ require 'fluent/test'
16
+ require 'fluent/plugin/in_df'
17
+
18
+ class Test::Unit::TestCase
19
+ end
@@ -0,0 +1,29 @@
1
+ require 'helper'
2
+
3
+ class DfInputTest < Test::Unit::TestCase
4
+ def setup
5
+ Fluent::Test.setup
6
+ end
7
+
8
+ CONFIG = %[
9
+ option -k
10
+ interval 3
11
+ tag_prefix df
12
+ target_mounts /
13
+ ]
14
+
15
+ def create_driver(conf=CONFIG)
16
+ Fluent::Test::InputTestDriver.new(Fluent::DfInput).configure(conf)
17
+ end
18
+
19
+ def test_configure
20
+ d = create_driver
21
+ assert_equal "-k", d.instance.option
22
+ assert_equal "df", d.instance.tag_prefix
23
+ assert_equal 3, d.instance.interval
24
+ assert_equal "/", d.instance.target_mounts
25
+ end
26
+
27
+ # def test_emit
28
+ # end
29
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluent-plugin-df
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - tiwakawa
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-03-22 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
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
+ - !ruby/object:Gem::Dependency
47
+ name: fluentd
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: input plugin to get disk free data
63
+ email:
64
+ - tiwakawa@aiming-inc.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - Gemfile
71
+ - LICENSE.txt
72
+ - README.md
73
+ - Rakefile
74
+ - fluent-plugin-df.gemspec
75
+ - lib/fluent/plugin/in_df.rb
76
+ - test/helper.rb
77
+ - test/plugin/test_in_df.rb
78
+ homepage: ''
79
+ licenses:
80
+ - MIT
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ! '>='
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ none: false
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 1.8.23
100
+ signing_key:
101
+ specification_version: 3
102
+ summary: input plugin to get disk free data
103
+ test_files:
104
+ - test/helper.rb
105
+ - test/plugin/test_in_df.rb