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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b55aeb72158a604f708028054920105c2a3f0a3
4
- data.tar.gz: 4c2ebb43177277297674095d621abe496efb3ae0
3
+ metadata.gz: 1609b955d44c5cf6fb13e2ef341dce96fd7d79ec
4
+ data.tar.gz: f4ce33514097bc7495097557fd263c384723e948
5
5
  SHA512:
6
- metadata.gz: 25cebc29c48696dbd4c3af26e5991bf22a8b51d954cd02917d0436fb9dff744906b0fe500aa12bcf166edcfec4fee73a4770957156133fe9f1c7d4df8bc1947a
7
- data.tar.gz: 4b1fe5d192fa096ecc3cb02eb379e7c5b901d64c4764563478ad47b3352c77fff0d15d5b06821632546f367ac8738ba2c01711d8fda8a0d0b1fb947770c568f9
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, adds support for specifying multiple groups or prefixes (Fixes [#13](https://github.com/lukewaite/logstash-input-cloudwatch-logs/issues/13))
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))
@@ -137,7 +137,6 @@ class LogStash::Inputs::CloudWatch_Logs < LogStash::Inputs::Base
137
137
  params = {
138
138
  :log_group_name => group,
139
139
  :start_time => @sincedb[group],
140
- :limit => 10,
141
140
  :interleaved => true,
142
141
  :next_token => next_token
143
142
  }
@@ -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.2'
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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-cloudwatch_logs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.2
4
+ version: 1.0.0.pre.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Waite