fluent-plugin-pearson-aws-elasticsearch-service 1.2.2

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
+ SHA256:
3
+ metadata.gz: efe09c9dd697cef05228641478c5192e654dd3097862f3a7ac4e296935753ae7
4
+ data.tar.gz: c10f4f1034f97d86dff26b0b4be6cd4255ebfec5cd10bc52193d2e5d66567149
5
+ SHA512:
6
+ metadata.gz: 8acb5041bd470c6c5dd7379a56b3eb1e5afe865bbba5c0441d188e0f990864bcc157eb70dd23635c7e8b90e0a391cd01bc5347bc528e146da268f58be528d89a
7
+ data.tar.gz: 46762972477e21cd47fedadfb283d7db80cb88935d4aa34468049583fd4cdfccbef5636708e2b6f3a469f658caa896c3a0f85bf9a512b795e16558c743a2dca8
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
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fluent-plugin-aws-elasticsearch-service.gemspec
4
+ gemspec
5
+
6
+ gem 'fluent-plugin-elasticsearch', "~> 2.11.0", require: false
7
+ gem 'aws-sdk-core', '~> 3', require: false
8
+ gem 'faraday_middleware-aws-sigv4', '>= 0.2.4', '< 0.3.0', require: false
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 @
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
data/README.md ADDED
@@ -0,0 +1,151 @@
1
+ # Fluent::AwsElasticsearchServiceOutput
2
+
3
+ This output plugin to post to "Amazon Elasticsearch Service".
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'fluent-plugin-aws-elasticsearch-service'
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ In your fluentd configration, use `type aws-elasticsearch-service`.
16
+
17
+ example:
18
+
19
+ ```ruby
20
+ <source>
21
+ type tail
22
+ format apache
23
+ time_format "%d/%b/%Y:%T %z"
24
+ path "/var/log/nginx/access.log"
25
+ pos_file "/var/log/td-agent/nginx.access.pos"
26
+ tag "es.nginx.access"
27
+ </source>
28
+
29
+ <match es.**>
30
+ type "aws-elasticsearch-service"
31
+ type_name "access_log"
32
+ logstash_format true
33
+ include_tag_key true
34
+ tag_key "@log_name"
35
+ flush_interval 1s
36
+
37
+ <endpoint>
38
+ url https://CLUSTER_ENDPOINT_URL
39
+ region eu-west-1
40
+ # access_key_id "secret"
41
+ # secret_access_key "seekret"
42
+ </endpoint>
43
+ </match>
44
+ ```
45
+
46
+ ## IAM
47
+ If you do not wish to use credentials in your configuration via the `access_key_id` and `secret_access_key` options you should use IAM policies.
48
+
49
+ The first step is to assign an IAM instance role `ROLE` to your EC2 instances. Name it appropriately. The role should contain no policy: we're using the possession of the role as the authenticating factor and placing the policy against the ES cluster.
50
+
51
+ You should then configure a policy for the ES cluster policy thus, with appropriate substitutions for the capitalized terms:
52
+
53
+ ```json
54
+ {
55
+ "Version": "2012-10-17",
56
+ "Statement": [
57
+ {
58
+ "Effect": "Allow",
59
+ "Principal": {
60
+ "AWS": "arn:aws:iam::ACCOUNT:role/ROLE"
61
+ },
62
+ "Action": "es:*",
63
+ "Resource": "arn:aws:es:eu-west-1:ACCOUNT:domain/ES_DOMAIN/*"
64
+ },
65
+ {
66
+ "Effect": "Allow",
67
+ "Principal": {
68
+ "AWS": "*"
69
+ },
70
+ "Action": "es:*",
71
+ "Resource": "arn:aws:es:eu-west-1:ACCOUNT:domain/ES_DOMAIN/*",
72
+ "Condition": {
73
+ "IpAddress": {
74
+ "aws:SourceIp": [
75
+ "1.2.3.4/32",
76
+ "5.6.7.8/32"
77
+ ]
78
+ }
79
+ }
80
+ }
81
+ ]
82
+ }
83
+ ```
84
+
85
+ This will allow your fluentd hosts (by virtue of the possession of the role) and any traffic coming from the specified IP addresses (you querying Kibana) to access the various endpoints. Whilst not ideally secure (both the fluentd and Kibana boxes should ideally be restricted to the verbs they require) it should allow you to get up and ingesting logs without anything getting in your way, before you tighten down the policy.
86
+
87
+ Additionally, you can use an STS assumed role as the authenticating factor and instruct the plugin to assume this role. This is useful for cross-account access and when assigning a standard role is not possible. The endpoint configuration looks like:
88
+
89
+ ```ruby
90
+ <endpoint>
91
+ url https://CLUSTER_ENDPOINT_URL
92
+ region eu-west-1
93
+ assume_role_arn arn:aws:sts::ACCOUNT:role/ROLE
94
+ assume_role_session_name SESSION_ID # Defaults to fluentd if omitted
95
+ </endpoint>
96
+ ```
97
+
98
+ The policy attached to your AWS Elasticsearch cluster then becomes something like:
99
+
100
+ ```json
101
+ {
102
+ "Version": "2012-10-17",
103
+ "Statement": [
104
+ {
105
+ "Effect": "Allow",
106
+ "Principal": {
107
+ "AWS": "arn:aws:sts::ACCOUNT:assumed-role/ROLE/SESSION_ID"
108
+ },
109
+ "Action": "es:*",
110
+ "Resource": "arn:aws:es:eu-west-1:ACCOUNT:domain/ES_DOMAIN/*"
111
+ }
112
+ ]
113
+ }
114
+ ```
115
+
116
+ You'll need to ensure that the environment in which the fluentd plugin runs has the capability to assume this role, by attaching a policy something like this to the instance profile:
117
+
118
+ ```json
119
+ {
120
+ "Version": "2012-10-17",
121
+ "Statement": {
122
+ "Effect": "Allow",
123
+ "Action": "sts:AssumeRole",
124
+ "Resource": "arn:aws:iam::ACCOUNT:role/ROLE"
125
+ }
126
+ }
127
+ ```
128
+
129
+ ## Troubleshooting
130
+
131
+ * "Elasticsearch::Transport::Transport::Errors::Forbidden" error="[403]" even after verifying the access keys/roles/policies.
132
+ * Ensure you don't have a trailing slash on the endpoint URL in your fluentd configuration file (see CLUSTER_ENDPOINT_URL above).
133
+
134
+ * "ElasticsearchIllegalArgumentException[explicit index in bulk is not allowed]"
135
+ * Check that `rest.action.multi.allow_explicit` is set true on your Amazon ES domain (verify in the console - there's a bug in Terraform, https://github.com/hashicorp/terraform/issues/3980).
136
+
137
+ ## Development
138
+
139
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
140
+
141
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
142
+
143
+ ## Contributing
144
+
145
+ Bug reports and pull requests are welcome on GitHub at https://github.com/atomita/fluent-plugin-aws-elasticsearch-service. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
146
+
147
+
148
+ ## License
149
+
150
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
151
+
data/Rakefile ADDED
@@ -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,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "fluent-plugin-pearson-aws-elasticsearch-service"
8
+ spec.version = "1.2.2"
9
+ spec.authors = ["gamunu"]
10
+ spec.email = ["gamunu.balagalla@gmail.com"]
11
+
12
+ spec.summary = %q{Output plugin to post to "Amazon Elasticsearch Service".}
13
+ spec.description = %q{this is a Output plugin. Post to "Amazon Elasticsearch Service".}
14
+ spec.homepage = "https://github.com/pearsontechnology/fluent-plugin-aws-elasticsearch-service"
15
+ spec.license = "MIT"
16
+
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 2.0"
24
+ spec.add_development_dependency "rake", "~> 12.3.0"
25
+ spec.add_development_dependency "rspec", "~> 3.8"
26
+ spec.add_development_dependency "test-unit", "~> 3.0"
27
+ spec.add_runtime_dependency "fluentd", ">= 0.14"
28
+ spec.add_runtime_dependency "fluent-plugin-elasticsearch", "~> 2.11.0"
29
+ spec.add_runtime_dependency "aws-sdk-core", "~> 3"
30
+ spec.add_runtime_dependency "faraday_middleware-aws-sigv4", ">= 0.2.4", "< 0.3.0"
31
+ end
@@ -0,0 +1,208 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ require 'rubygems'
4
+ require 'fluent/plugin/out_elasticsearch'
5
+ require 'aws-sdk-core'
6
+ require 'faraday_middleware/aws_sigv4'
7
+
8
+
9
+ module Fluent::Plugin
10
+ class AwsElasticsearchServiceOutput < ElasticsearchOutput
11
+
12
+ Fluent::Plugin.register_output('aws-elasticsearch-service', self)
13
+
14
+ config_section :endpoint do
15
+ config_param :region, :string
16
+ config_param :url, :string
17
+ config_param :access_key_id, :string, :default => ""
18
+ config_param :secret_access_key, :string, :default => ""
19
+ config_param :assume_role_arn, :string, :default => nil
20
+ config_param :ecs_container_credentials_relative_uri, :string, :default => nil #Set with AWS_CONTAINER_CREDENTIALS_RELATIVE_URI environment variable value
21
+ config_param :assume_role_session_name, :string, :default => "fluentd"
22
+ end
23
+
24
+ # here overrides default value of reload_connections to false because
25
+ # AWS Elasticsearch Service doesn't return addresses of nodes and Elasticsearch client
26
+ # fails to reload connections properly. This ends up "temporarily failed to flush the buffer"
27
+ # error repeating forever. See this discussion for details:
28
+ # https://discuss.elastic.co/t/elasitcsearch-ruby-raises-cannot-get-new-connection-from-pool-error/36252
29
+ config_set_default :reload_connections, false
30
+
31
+ #
32
+ # @override
33
+ #
34
+ def get_connection_options
35
+ raise "`endpoint` require." if @endpoint.empty?
36
+
37
+ hosts =
38
+ begin
39
+ @endpoint.map do |ep|
40
+ uri = URI(ep[:url])
41
+ host = %w(user password path).inject(host: uri.host, port: uri.port, scheme: uri.scheme) do |hash, key|
42
+ hash[key.to_sym] = uri.public_send(key) unless uri.public_send(key).nil? || uri.public_send(key) == ''
43
+ hash
44
+ end
45
+
46
+ host[:aws_elasticsearch_service] = {
47
+ :credentials => credentials(ep),
48
+ :region => ep[:region]
49
+ }
50
+
51
+ host
52
+ end
53
+ end
54
+
55
+ {
56
+ hosts: hosts
57
+ }
58
+ end
59
+
60
+ def write(chunk)
61
+ super
62
+ end
63
+
64
+
65
+ private
66
+
67
+ #
68
+ # get AWS Credentials
69
+ #
70
+ def credentials(opts)
71
+ calback = lambda do
72
+ credentials = nil
73
+ unless opts[:access_key_id].empty? or opts[:secret_access_key].empty?
74
+ credentials = Aws::Credentials.new opts[:access_key_id], opts[:secret_access_key]
75
+ else
76
+ if opts[:assume_role_arn].nil?
77
+ if opts[:ecs_container_credentials_relative_uri].nil?
78
+ credentials = Aws::SharedCredentials.new({retries: 2}).credentials
79
+ credentials ||= Aws::InstanceProfileCredentials.new.credentials
80
+ credentials ||= Aws::ECSCredentials.new.credentials
81
+ else
82
+ credentials = Aws::ECSCredentials.new({
83
+ credential_path: opts[:ecs_container_credentials_relative_uri]
84
+ }).credentials
85
+ end
86
+ else
87
+ credentials = sts_credential_provider({
88
+ role_arn: opts[:assume_role_arn],
89
+ role_session_name: opts[:assume_role_session_name],
90
+ region: opts[:region]
91
+ }).credentials
92
+ end
93
+ end
94
+ raise "No valid AWS credentials found." unless credentials.set?
95
+ credentials
96
+ end
97
+ def calback.inspect
98
+ credentials = self.call
99
+ credentials.credentials.inspect
100
+ end
101
+ calback
102
+ end
103
+
104
+ def sts_credential_provider(opts)
105
+ # AssumeRoleCredentials is an auto-refreshing credential provider
106
+ @sts ||= Aws::AssumeRoleCredentials.new(opts)
107
+ end
108
+
109
+ end
110
+
111
+
112
+ #
113
+ # monkey patch
114
+ #
115
+ class ElasticsearchOutput
116
+ module Elasticsearch
117
+
118
+ module Client
119
+ include ::Elasticsearch::Client
120
+ extend self
121
+ end
122
+
123
+ module Transport
124
+ module Transport
125
+ module HTTP
126
+ class Faraday < ::Elasticsearch::Transport::Transport::HTTP::Faraday
127
+
128
+ alias :__build_connections_origin_from_aws_elasticsearch_service_output :__build_connections
129
+
130
+ # Builds and returns a collection of connections.
131
+ #
132
+ # @return [Connections::Collection]
133
+ # @override
134
+ #
135
+ def __build_connections
136
+ ::Elasticsearch::Transport::Transport::Connections::Collection.new(
137
+ :connections => hosts.map { |host|
138
+ host[:protocol] = host[:scheme] || DEFAULT_PROTOCOL
139
+ host[:port] ||= DEFAULT_PORT
140
+ url = __full_url(host)
141
+
142
+ ::Elasticsearch::Transport::Transport::Connections::Connection.new(
143
+ :host => host,
144
+ :connection => ::Faraday::Connection.new(
145
+ url,
146
+ (options[:transport_options] || {}),
147
+ &__aws_elasticsearch_service_setting(host, &@block)
148
+ ),
149
+ :options => host[:connection_options]
150
+ )
151
+ },
152
+ :selector_class => options[:selector_class],
153
+ :selector => options[:selector]
154
+ )
155
+ end
156
+
157
+ def __aws_elasticsearch_service_setting(host, &block)
158
+ lambda do |faraday|
159
+ if host[:aws_elasticsearch_service]
160
+ faraday.request :aws_sigv4,
161
+ credentials: host[:aws_elasticsearch_service][:credentials],
162
+ service_name: 'es',
163
+ region: host[:aws_elasticsearch_service][:region]
164
+ end
165
+ block.call faraday
166
+ end
167
+ end
168
+ end
169
+ end
170
+ end
171
+ end
172
+ end
173
+
174
+ end
175
+ end
176
+
177
+
178
+ #
179
+ # monkey patch
180
+ #
181
+ class FaradayMiddleware::AwsSigV4
182
+
183
+ alias :initialize_origin_from_aws_elasticsearch_service_output :initialize
184
+
185
+ def initialize(app, options = nil)
186
+ super(app)
187
+
188
+ credentials = options.fetch(:credentials)
189
+ service_name = options.fetch(:service_name)
190
+ region = options.fetch(:region)
191
+ @signer =
192
+ begin
193
+ if credentials.is_a?(Proc)
194
+ signer = lambda do
195
+ Aws::Sigv4::Signer.new(service: service_name, region: region, credentials: credentials.call)
196
+ end
197
+ def signer.sign_request(req)
198
+ self.call.sign_request(req)
199
+ end
200
+ signer
201
+ else
202
+ Aws::Sigv4::Signer.new(service: service_name, region: region, credentials: credentials)
203
+ end
204
+ end
205
+
206
+ @net_http = app.is_a?(Faraday::Adapter::NetHttp)
207
+ end
208
+ end
metadata ADDED
@@ -0,0 +1,168 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluent-plugin-pearson-aws-elasticsearch-service
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.2
5
+ platform: ruby
6
+ authors:
7
+ - gamunu
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-01-14 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: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 12.3.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 12.3.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.8'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.8'
55
+ - !ruby/object:Gem::Dependency
56
+ name: test-unit
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: fluentd
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0.14'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0.14'
83
+ - !ruby/object:Gem::Dependency
84
+ name: fluent-plugin-elasticsearch
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 2.11.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 2.11.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: aws-sdk-core
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3'
111
+ - !ruby/object:Gem::Dependency
112
+ name: faraday_middleware-aws-sigv4
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 0.2.4
118
+ - - "<"
119
+ - !ruby/object:Gem::Version
120
+ version: 0.3.0
121
+ type: :runtime
122
+ prerelease: false
123
+ version_requirements: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: 0.2.4
128
+ - - "<"
129
+ - !ruby/object:Gem::Version
130
+ version: 0.3.0
131
+ description: this is a Output plugin. Post to "Amazon Elasticsearch Service".
132
+ email:
133
+ - gamunu.balagalla@gmail.com
134
+ executables: []
135
+ extensions: []
136
+ extra_rdoc_files: []
137
+ files:
138
+ - ".gitignore"
139
+ - Gemfile
140
+ - LICENSE
141
+ - README.md
142
+ - Rakefile
143
+ - fluent-plugin-pearson-aws-elasticsearch-service.gemspec
144
+ - lib/fluent/plugin/out_aws-elasticsearch-service.rb
145
+ homepage: https://github.com/pearsontechnology/fluent-plugin-aws-elasticsearch-service
146
+ licenses:
147
+ - MIT
148
+ metadata: {}
149
+ post_install_message:
150
+ rdoc_options: []
151
+ require_paths:
152
+ - lib
153
+ required_ruby_version: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ required_rubygems_version: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: '0'
163
+ requirements: []
164
+ rubygems_version: 3.0.1
165
+ signing_key:
166
+ specification_version: 4
167
+ summary: Output plugin to post to "Amazon Elasticsearch Service".
168
+ test_files: []