logstash-input-cloudwatch_logs 1.0.0.pre.2 → 1.0.0.pre.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/CHANGELOG.md +4 -1
- data/lib/logstash/inputs/cloudwatch_logs.rb +0 -1
- data/logstash-input-cloudwatch_logs.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1609b955d44c5cf6fb13e2ef341dce96fd7d79ec
|
4
|
+
data.tar.gz: f4ce33514097bc7495097557fd263c384723e948
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8364a0350d31f9ab5b64bf4e4789eca9028d2c58092659f3129ee92e0132fd1b928693329e1fa379e1d0cc66f7858b2c142ac6842ea69a5f868f42680c69391a
|
7
|
+
data.tar.gz: 999de5c022c9160bd252826921065463a0165703e9cfc83c32e9df2420980bad0e330ce60c2b23b8fe9934f3265ba2a610acd7173bdcd4287515656ca4dc84bf
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,15 @@
|
|
1
1
|
# Release Notes for `logstash-input-cloudwatch_logs`
|
2
2
|
|
3
|
+
## v1.0.0.pre3 Pre-Release 3 (2017-06-28)
|
4
|
+
* Fix call to `filter_log_events` which had been limited to 10 events per call for debugging
|
5
|
+
|
3
6
|
## v1.0.0.pre2 Pre-Release 2 (2017-06-28)
|
4
7
|
* Remove the breaking change in v1.0.0.pre. `log_group` is now a `string` supporting `lists`, allowing either notation
|
5
8
|
* Change startup log from TRACE to DEBUG, supporting Logstash 2.4
|
6
9
|
* Relax the contstraint on `logstash-mixin-aws` supporting Logstash 2.4
|
7
10
|
|
8
11
|
## v1.0.0.pre Pre-Release 1 (2017-06-24)
|
9
|
-
* BREAKING CHANGE: `log_group` must now be an array
|
12
|
+
* ~BREAKING CHANGE: `log_group` must now be an array~ (See 1.0.0.pre2 - no longer a breaking change) adds support for specifying multiple groups or prefixes (Fixes [#13](https://github.com/lukewaite/logstash-input-cloudwatch-logs/issues/13))
|
10
13
|
* Refactored ingestion, fixes multiple memory leaks (Fixes [#24](https://github.com/lukewaite/logstash-input-cloudwatch-logs/issues/4))
|
11
14
|
* Pull only log_events since last ingestion (Fixes [#10](https://github.com/lukewaite/logstash-input-cloudwatch-logs/issues/10))
|
12
15
|
* Incrementally write to since_db on each page of data from the CWL API (Fixes [#4](https://github.com/lukewaite/logstash-input-cloudwatch-logs/issues/4))
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-cloudwatch_logs'
|
4
|
-
s.version = '1.0.0.pre.
|
4
|
+
s.version = '1.0.0.pre.3'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = 'Stream events from CloudWatch Logs.'
|
7
7
|
s.description = 'This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program'
|