logstash-input-kinesis 1.2.1-java → 1.2.2-java

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: 4a654215996000f9eb3075b2508aaa2214dd5ac2
4
- data.tar.gz: 71eca5b48affcba29cec155034093aadc1f427a6
3
+ metadata.gz: b421d633119f6ed55a31ef137790b12f360845df
4
+ data.tar.gz: 2d164fb923ac2704de72b0ed536e6d4dcef686d5
5
5
  SHA512:
6
- metadata.gz: a5bcfa139baf453e894658aa03f350bcca2591a4c75d523ffdd355eb2f035ef8a898197a5e13bc8cae499790eddda7c67319eb5439777276a562b012644654c8
7
- data.tar.gz: 5729eb4d2c06c818ad85c4c56adc0d60a6c342fe31185b1981d2a8f31c14b2af10db0cf38e996746369ed4ba84d7cfbf23582052aea0228897fda4815e923761
6
+ metadata.gz: 4e5b3ddb21fcf05b7c513dc91bbe68a09a521b590044d518aca342ea13b9695743e8b1d919029b3ebccc79e5b84d8666c81f708eae0f604b37cf2d52b97b196d
7
+ data.tar.gz: 9fb339b557a3d0a3e8609e086e9fc34b2e2c163e9b16ae002d03c712c09e23737a16e9ace873815dcc0120a22b82eed52ff44bc18d128fcfc4bfb5fa343d6819
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This is a plugin for [Logstash](https://github.com/elasticsearch/logstash).
4
4
 
5
+ [![Build Status](https://travis-ci.org/codekitchen/logstash-input-kinesis.svg)](https://travis-ci.org/codekitchen/logstash-input-kinesis)
6
+
5
7
  ## Installation
6
8
 
7
9
  This plugin requires Logstash 1.5, and can be installed by Logstash
@@ -39,6 +39,9 @@ class LogStash::Inputs::Kinesis < LogStash::Inputs::Base
39
39
  # The kinesis stream name.
40
40
  config :kinesis_stream_name, :validate => :string, :required => true
41
41
 
42
+ # The AWS region for Kinesis, DynamoDB, and CloudWatch (if enabled)
43
+ config :region, :validate => :string, :default => "us-east-1"
44
+
42
45
  # How many seconds between worker checkpoints to dynamodb.
43
46
  config :checkpoint_interval_seconds, :validate => :number, :default => 60
44
47
 
@@ -62,7 +65,9 @@ class LogStash::Inputs::Kinesis < LogStash::Inputs::Base
62
65
  @application_name,
63
66
  @kinesis_stream_name,
64
67
  creds,
65
- worker_id).withInitialPositionInStream(KCL::InitialPositionInStream::TRIM_HORIZON)
68
+ worker_id).
69
+ withInitialPositionInStream(KCL::InitialPositionInStream::TRIM_HORIZON).
70
+ withRegionName(@region)
66
71
  end
67
72
 
68
73
  def run(output_queue)
@@ -1,7 +1,7 @@
1
1
  module Logstash
2
2
  module Input
3
3
  module Kinesis
4
- VERSION = "1.2.1"
4
+ VERSION = "1.2.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-kinesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: java
6
6
  authors:
7
7
  - Brian Palmer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-03 00:00:00.000000000 Z
11
+ date: 2015-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement