logstash-output-amazon_es 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/README.md +3 -2
- data/logstash-output-amazon_es.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7cb31f788e6259728c2f86c0e70bd16067865fd
|
|
4
|
+
data.tar.gz: 34e0462992f9d32982cb38224466dc0b3ec40b3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e434a50aaf7e01a89e45cb9a59c6909302ee1531d9fe95297aa56daecacd0eca77d02106e029211a891c76d39fc6fc0173ac0465ec2d51ebde1717a048f3c54
|
|
7
|
+
data.tar.gz: 96ef361ce9a309df1f33e339858990231d66f7d79bb4da96900217b2fe60e00efd68de820a510d1eab71fc83e1e3006e8fdfa28cc04b96d6bbfe16fdcba8ee9f
|
data/README.md
CHANGED
|
@@ -27,7 +27,8 @@ An example configuration:
|
|
|
27
27
|
amazon_es {
|
|
28
28
|
hosts => ["foo.us-east-1.es.amazonaws.com"]
|
|
29
29
|
region => "us-east-1"
|
|
30
|
-
aws_access_key_id
|
|
30
|
+
# aws_access_key_id, aws_secret_access_key optional if instance profile is configured
|
|
31
|
+
aws_access_key_id => 'ACCESS_KEY'
|
|
31
32
|
aws_secret_access_key => 'SECRET_KEY'
|
|
32
33
|
index => "production-logs-%{+YYYY.MM.dd}"
|
|
33
34
|
}
|
|
@@ -78,7 +79,7 @@ Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/log
|
|
|
78
79
|
|
|
79
80
|
## Developing
|
|
80
81
|
|
|
81
|
-
### 1. Plugin
|
|
82
|
+
### 1. Plugin Development and Testing
|
|
82
83
|
|
|
83
84
|
#### Code
|
|
84
85
|
- To get started, you'll need JRuby with the Bundler gem installed.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-amazon_es'
|
|
4
|
-
s.version = '0.
|
|
4
|
+
s.version = '0.3'
|
|
5
5
|
s.licenses = ['apache-2.0']
|
|
6
6
|
s.summary = "Logstash Output to Amazon Elasticsearch Service"
|
|
7
7
|
s.description = "Output events to Amazon Elasticsearch Service with V4 signing"
|
|
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
|
|
|
34
34
|
|
|
35
35
|
if RUBY_PLATFORM == 'java'
|
|
36
36
|
s.platform = RUBY_PLATFORM
|
|
37
|
-
s.add_runtime_dependency "manticore", '~> 0.
|
|
37
|
+
s.add_runtime_dependency "manticore", '~> 0.5.2'
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
s.add_development_dependency 'logstash-devutils'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-amazon_es
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: '0.3'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|