fluent-plugin-in_elb_healthcheck 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 83a5cafc4b8d60f9fec428da1e5351ee52801f22
4
+ data.tar.gz: ad4e68bf65a318bc231bb59025b29f849698230f
5
+ SHA512:
6
+ metadata.gz: c5b7081c513b6749f668b169de97fc798a4ae6a9c0dc1d0f33ec90561458855cf9b048960acafda33f94fc4b1591988a581e21f8d075f3aa3d0cb5d860cea518
7
+ data.tar.gz: cf25417d027a69f2fc69288276d398dd42f50322acee577e4140c51d7263bae6719df721935de3da3080211e31b8bc3bb132382e5cf62adc71ff35718984b6ca
data/.gitignore ADDED
@@ -0,0 +1,35 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /vendor/bundle
26
+ /lib/bundler/man/
27
+
28
+ # for a library or gem, you might want to ignore these files since the code is
29
+ # intended to run in multiple environments; otherwise, check them in:
30
+ # Gemfile.lock
31
+ # .ruby-version
32
+ # .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
data/Gemfile ADDED
File without changes
data/README.md ADDED
@@ -0,0 +1 @@
1
+ a-
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,28 @@
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-in_elb_healthcheck"
7
+ spec.version = "0.0.3"
8
+ spec.authors = ["aihara"]
9
+ spec.email = ["s.aihara@gmail.com"]
10
+
11
+ spec.summary = %q{fluentd plug-in for ELB Health Check}
12
+ spec.description = %q{fluentd plug-in for ELB Health Check}
13
+ spec.homepage = "http://argmax.jp"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.bindir = "exe"
17
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.require_paths = ["lib"]
19
+
20
+ if spec.respond_to?(:metadata)
21
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
22
+ end
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.9"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+
27
+ spec.add_dependency "fluentd", ">= 0.10.00"
28
+ end
@@ -0,0 +1,26 @@
1
+ module Fluent
2
+ class ELBHealthCheckInput < HttpInput
3
+ Plugin.register_input('elb_healthcheck', self)
4
+
5
+ config_param :tag_prefix, :string, :default => "elbhealthcheck"
6
+ config_param :add_tag_prefix, :bool, :default => true
7
+ def on_request(path_info, params)
8
+ begin
9
+ if path_info == "/favicon.ico"
10
+ return ["404", {}, ""]
11
+ end
12
+ path = path_info[1..-1] # remove /
13
+ if @add_tag_prefix
14
+ tag = ([@tag_prefix] + path.split('/')).join('.')
15
+ else
16
+ tag = path.split('/').join('.')
17
+ end
18
+
19
+ Engine.emit(tag, Engine.now , {:message => "ping"})
20
+ rescue
21
+ return ["500 Internal Server Error", {'Content-type'=>'text/plain'}, "500 Internal Server Error\n#{$!}\n"]
22
+ end
23
+ return ["200 OK", {'Content-type'=>'text/plain'}, ""]
24
+ end
25
+ end
26
+ end
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluent-plugin-in_elb_healthcheck
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - aihara
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-05-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: fluentd
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 0.10.00
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 0.10.00
55
+ description: fluentd plug-in for ELB Health Check
56
+ email:
57
+ - s.aihara@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - README.md
65
+ - Rakefile
66
+ - fluent-plugin-elbhealthcheck.gemspec
67
+ - lib/fluent/plugin/in_elb_healthcheck.rb
68
+ homepage: http://argmax.jp
69
+ licenses: []
70
+ metadata:
71
+ allowed_push_host: https://rubygems.org
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubyforge_project:
88
+ rubygems_version: 2.2.0
89
+ signing_key:
90
+ specification_version: 4
91
+ summary: fluentd plug-in for ELB Health Check
92
+ test_files: []