logstash-output-kinesis 0.0.1-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 +7 -0
- data/.editorconfig +11 -0
- data/.gemrelease +3 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/.travis.yml +1 -0
- data/CHANGELOG.md +3 -0
- data/Gemfile +2 -0
- data/LICENSE +13 -0
- data/README.md +96 -0
- data/Rakefile +8 -0
- data/lib/logstash-output-kinesis/version.rb +3 -0
- data/lib/logstash/outputs/kinesis.rb +122 -0
- data/logstash-output-kinesis.gemspec +35 -0
- data/spec/outputs/kinesis_spec.rb +27 -0
- data/spec/spec_helper.rb +91 -0
- metadata +154 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 01f7b59b419f5a2db26f399e6cda575162ea423b
|
4
|
+
data.tar.gz: 9d4f13f770e6747a989dfdd4f26a80e95e813533
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 72541dfdd7b6f2edd33180a80120937813c0089d0a6d23002039b65501d95b3eab15b036e2c19266cb29472b3cf84124ba825a5a687d8301ea413a22333b2979
|
7
|
+
data.tar.gz: cd3e49ab33931bb3abbba2a42cf41a46650962bee90ae84546824d0fa5a8bed56bbedf67e5875b86041952aa474034b17468a1e1fcf69b7bb3d45f5ffbe467db
|
data/.editorconfig
ADDED
data/.gemrelease
ADDED
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
jruby-1.7.17
|
data/.travis.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
language: ruby
|
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
Copyright (c) 2012–2015 Sam Day <http://www.samcday.com.au>
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
# Kinesis Output Plugin
|
2
|
+
|
3
|
+
[![Build Status][badge-travis]][travis]
|
4
|
+
[![Gem info][badge-gem]][rubygems]
|
5
|
+
|
6
|
+
This is a plugin for [Logstash](https://github.com/elasticsearch/logstash).
|
7
|
+
|
8
|
+
It will send log records to a [Kinesis stream](https://aws.amazon.com/kinesis/), using the [KPL](https://docs.aws.amazon.com/kinesis/latest/dev/developing-producers-with-kpl.html) library.
|
9
|
+
|
10
|
+
|
11
|
+
## Configuration
|
12
|
+
|
13
|
+
Minimum required configuration to get this plugin chugging along:
|
14
|
+
|
15
|
+
```
|
16
|
+
output {
|
17
|
+
kinesis {
|
18
|
+
stream_name => "logs-stream"
|
19
|
+
region => "ap-southeast-2"
|
20
|
+
}
|
21
|
+
}
|
22
|
+
```
|
23
|
+
|
24
|
+
This plugin accepts a wide range of configuration options, most of which come from the underlying KPL library itself. [View the full list of KPL configuration options here.][kpldoc]
|
25
|
+
|
26
|
+
Please note that configuration options are snake_cased instead of camelCased. So, where [KinesisProducerConfiguration][kpldoc] offers a `setMetricsLevel` option,this plugin accepts a `metrics_level` option.
|
27
|
+
|
28
|
+
### AWS Credentials
|
29
|
+
|
30
|
+
There aren't many Kinesis streams out there that allow you to write to them without some AWS credentials.
|
31
|
+
|
32
|
+
This plugin does not allow you to specify credentials directly. Instead, the AWS SDK [DefaultAWSCredentialsProviderChain](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/auth/DefaultAWSCredentialsProviderChain.html) is used. It's quite flexible,you can provide your credentials via any of the following mechanisms:
|
33
|
+
|
34
|
+
* `AWS_ACCESS_KEY_ID` / `AWS_SECRET_KEY` environment variables
|
35
|
+
* `~/.aws/credentials` credentials file
|
36
|
+
* Instance profile for your running EC2 instance
|
37
|
+
|
38
|
+
### Building a partition key
|
39
|
+
|
40
|
+
Kinesis demands a [partition key](https://docs.aws.amazon.com/kinesis/latest/dev/key-concepts.html#partition-key) be provided for each record. By default, this plugin will provide a very boring partition key of `-`. However, you can configure it to compute a partition key from fields in your log events.
|
41
|
+
|
42
|
+
```
|
43
|
+
output {
|
44
|
+
kinesis {
|
45
|
+
# ...
|
46
|
+
event_partition_keys => ["[field1]", "[field2]"]
|
47
|
+
}
|
48
|
+
}
|
49
|
+
```
|
50
|
+
|
51
|
+
|
52
|
+
## Known Issues
|
53
|
+
|
54
|
+
### Noisy shutdown
|
55
|
+
|
56
|
+
During shutdown of Logstash, you might get noisy warnings like this:
|
57
|
+
|
58
|
+
```
|
59
|
+
[pool-1-thread-6] WARN com.amazonaws.services.kinesis.producer.Daemon - Exception during updateCredentials
|
60
|
+
java.lang.InterruptedException: sleep interrupted
|
61
|
+
at java.lang.Thread.sleep(Native Method)
|
62
|
+
at com.amazonaws.services.kinesis.producer.Daemon$5.run(Daemon.java:316)
|
63
|
+
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
|
64
|
+
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
|
65
|
+
at java.util.concurrent.FutureTask.run(FutureTask.java:166)
|
66
|
+
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
|
67
|
+
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
|
68
|
+
at java.lang.Thread.run(Thread.java:724)
|
69
|
+
```
|
70
|
+
|
71
|
+
This is caused by [amazon-kinesis-producer#10](https://github.com/awslabs/amazon-kinesis-producer/issues/10)
|
72
|
+
|
73
|
+
|
74
|
+
## Developing
|
75
|
+
|
76
|
+
```sh
|
77
|
+
bundle install
|
78
|
+
bundle exec rake
|
79
|
+
```
|
80
|
+
|
81
|
+
|
82
|
+
## Contributions
|
83
|
+
|
84
|
+
Are more than welcome. Raising an issue is great, raising a PR is better, raising a PR with tests is best.
|
85
|
+
|
86
|
+
|
87
|
+
## License
|
88
|
+
|
89
|
+
[Apache License 2.0](LICENSE)
|
90
|
+
|
91
|
+
[travis]: https://travis-ci.org/samcday/logstash-output-kinesis
|
92
|
+
[rubygems]: https://rubygems.org/gems/logstash-output-kinesis
|
93
|
+
[kpldoc]: https://github.com/awslabs/amazon-kinesis-producer/blob/v0.10.0/java/amazon-kinesis-producer/src/main/java/com/amazonaws/services/kinesis/producer/KinesisProducerConfiguration.java#L38
|
94
|
+
|
95
|
+
[badge-travis]: https://img.shields.io/travis/samcday/logstash-output-kinesis.svg?style=flat-square
|
96
|
+
[badge-gem]: https://img.shields.io/gem/v/logstash-output-kinesis.svg?style=flat-square
|
data/Rakefile
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require "java"
|
4
|
+
require "logstash/outputs/base"
|
5
|
+
require "logstash/namespace"
|
6
|
+
require "logstash-output-kinesis_jars"
|
7
|
+
|
8
|
+
# Sends log events to a Kinesis stream. This output plugin uses the official Amazon KPL.
|
9
|
+
# Most of the configuration options in this plugin are simply passed on to
|
10
|
+
# link:https://github.com/awslabs/amazon-kinesis-producer/blob/v0.10.0/java/amazon-kinesis-producer/src/main/java/com/amazonaws/services/kinesis/producer/KinesisProducerConfiguration.java#L38[KinesisProducerConfiguration]
|
11
|
+
class LogStash::Outputs::Kinesis < LogStash::Outputs::Base
|
12
|
+
config_name "kinesis"
|
13
|
+
|
14
|
+
default :codec, 'json'
|
15
|
+
|
16
|
+
# The name of the stream to send data to.
|
17
|
+
config :stream_name, :validate => :string, :required => true
|
18
|
+
# A list of event data keys to use when constructing a partition key
|
19
|
+
config :event_partition_keys, :validate => :array, :default => []
|
20
|
+
|
21
|
+
config :aggregation_enabled, :validate => :boolean, :default => true
|
22
|
+
config :aggregation_max_count, :validate => :number, :default => 4294967295
|
23
|
+
config :aggregation_max_size, :validate => :number, :default => 51200
|
24
|
+
config :collection_max_count, :validate => :number, :default => 500
|
25
|
+
config :collection_max_size, :validate => :number, :default => 5242880
|
26
|
+
config :connect_timeout, :validate => :number, :default => 6000
|
27
|
+
config :credentials_refresh_delay, :validate => :number, :default => 5000
|
28
|
+
config :custom_endpoint, :validate => :string, :default => nil
|
29
|
+
config :fail_if_throttled, :validate => :boolean, :default => false
|
30
|
+
config :log_level, :validate => :string, :default => "info"
|
31
|
+
config :max_connections, :validate => :number, :default => 4
|
32
|
+
config :metrics_granularity, :validate => ["global", "stream", "shard"], :default => "shard"
|
33
|
+
config :metrics_level, :validate => ["none", "summary", "detailed"], :default => "detailed"
|
34
|
+
config :metrics_namespace, :validate => :string, :default => "KinesisProducerLibrary"
|
35
|
+
config :metrics_upload_delay, :validate => :number, :default => 60000
|
36
|
+
config :min_connections, :validate => :number, :default => 1
|
37
|
+
config :native_executable, :validate => :string, :default => nil
|
38
|
+
config :port, :validate => :number, :default => 443
|
39
|
+
config :rate_limit, :validate => :number, :default => 150
|
40
|
+
config :record_max_buffered_time, :validate => :number, :default => 100
|
41
|
+
config :record_ttl, :validate => :number, :default => 30000
|
42
|
+
config :region, :validate => :string, :required => true
|
43
|
+
config :request_timeout, :validate => :number, :default => 6000
|
44
|
+
config :temp_directory, :validate => :string, :default => nil
|
45
|
+
config :verify_certificate, :validate => :boolean, :default => true
|
46
|
+
|
47
|
+
KPL = com.amazonaws.services.kinesis.producer
|
48
|
+
ByteBuffer = java.nio.ByteBuffer
|
49
|
+
|
50
|
+
public
|
51
|
+
def register
|
52
|
+
@producer = KPL.KinesisProducer::new(create_kpl_config)
|
53
|
+
@codec.on_event(&method(:send_record))
|
54
|
+
end
|
55
|
+
|
56
|
+
public
|
57
|
+
def receive(event)
|
58
|
+
return unless output?(event)
|
59
|
+
|
60
|
+
# Haha - gawd. If I don't put an empty string in the array, then calling .join()
|
61
|
+
# on it later will result in a US-ASCII string if the array is empty. Ruby is awesome.
|
62
|
+
partition_key_parts = [""]
|
63
|
+
|
64
|
+
@event_partition_keys.each do |partition_key_name|
|
65
|
+
if not event[partition_key_name].nil? and event[partition_key_name].length > 0
|
66
|
+
partition_key_parts << event[partition_key_name].to_s
|
67
|
+
break
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
event["[@metadata][partition_key]"] = (partition_key_parts * "-").to_s[/.+/m] || "-"
|
72
|
+
|
73
|
+
begin
|
74
|
+
@codec.encode(event)
|
75
|
+
rescue => e
|
76
|
+
@logger.warn("Error encoding event", :exception => e, :event => event)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
public
|
81
|
+
def teardown
|
82
|
+
@producer.flushSync()
|
83
|
+
@producer.destroy()
|
84
|
+
end
|
85
|
+
|
86
|
+
def create_kpl_config
|
87
|
+
config = KPL.KinesisProducerConfiguration::new()
|
88
|
+
|
89
|
+
config.setAggregationEnabled(@aggregation_enabled)
|
90
|
+
config.setAggregationMaxCount(@aggregation_max_count)
|
91
|
+
config.setAggregationMaxSize(@aggregation_max_size)
|
92
|
+
config.setCollectionMaxCount(@collection_max_count)
|
93
|
+
config.setCollectionMaxSize(@collection_max_size)
|
94
|
+
config.setConnectTimeout(@connect_timeout)
|
95
|
+
config.setCredentialsRefreshDelay(@credentials_refresh_delay)
|
96
|
+
config.setCustomEndpoint(@custom_endpoint) if !@custom_endpoint.nil?
|
97
|
+
config.setFailIfThrottled(@fail_if_throttled)
|
98
|
+
config.setLogLevel(@log_level)
|
99
|
+
config.setMaxConnections(@max_connections)
|
100
|
+
config.setMetricsGranularity(@metrics_granularity)
|
101
|
+
config.setMetricsLevel(@metrics_level)
|
102
|
+
config.setMetricsNamespace(@metrics_namespace)
|
103
|
+
config.setMetricsUploadDelay(@metrics_upload_delay)
|
104
|
+
config.setMinConnections(@min_connections)
|
105
|
+
config.setNativeExecutable(@native_executable) if !@native_executable.nil?
|
106
|
+
config.setPort(@port)
|
107
|
+
config.setRateLimit(@rate_limit)
|
108
|
+
config.setRecordMaxBufferedTime(@record_max_buffered_time)
|
109
|
+
config.setRecordTtl(@record_ttl)
|
110
|
+
config.setRegion(@region)
|
111
|
+
config.setRequestTimeout(@request_timeout)
|
112
|
+
config.setTempDirectory(@temp_directory) if !@temp_directory.nil?
|
113
|
+
config.setVerifyCertificate(@verify_certificate)
|
114
|
+
|
115
|
+
config
|
116
|
+
end
|
117
|
+
|
118
|
+
def send_record(event, payload)
|
119
|
+
event_blob = ByteBuffer::wrap(payload.to_java_bytes)
|
120
|
+
@producer.addUserRecord(@stream_name, event["[@metadata][partition_key]"], event_blob)
|
121
|
+
end
|
122
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "logstash-output-kinesis"
|
3
|
+
s.version = "0.0.1"
|
4
|
+
s.licenses = ["Apache License (2.0)"]
|
5
|
+
s.summary = "This output plugin sends records to Kinesis using the Kinesis Producer Library (KPL)"
|
6
|
+
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 logstash-output-kinesis. This gem is not a stand-alone program"
|
7
|
+
s.authors = ["Sam Day"]
|
8
|
+
s.email = "me@samcday.com.au"
|
9
|
+
s.homepage = "https://www.github.com/samcday/logstash-output-kinesis"
|
10
|
+
s.require_paths = ["lib"]
|
11
|
+
|
12
|
+
# Files
|
13
|
+
s.files = `git ls-files`.split($\)
|
14
|
+
# Tests
|
15
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
16
|
+
|
17
|
+
# Special flag to let us know this is actually a logstash plugin
|
18
|
+
s.metadata = {
|
19
|
+
"logstash_plugin" => "true",
|
20
|
+
"logstash_group" => "output"
|
21
|
+
}
|
22
|
+
|
23
|
+
# Jar dependencies
|
24
|
+
s.requirements << "jar 'com.amazonaws:amazon-kinesis-producer', '0.10.0'"
|
25
|
+
|
26
|
+
s.platform = "java"
|
27
|
+
|
28
|
+
# Gem dependencies
|
29
|
+
s.add_runtime_dependency "jar-dependencies"
|
30
|
+
s.add_runtime_dependency "logstash-core", ">= 1.4.0", "< 2.0.0"
|
31
|
+
s.add_runtime_dependency "logstash-codec-plain"
|
32
|
+
s.add_runtime_dependency "logstash-codec-json"
|
33
|
+
s.add_development_dependency "logstash-devutils"
|
34
|
+
s.add_development_dependency "gem-release", "~>0.7.3"
|
35
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require "logstash/devutils/rspec/spec_helper"
|
2
|
+
require "logstash/outputs/kinesis"
|
3
|
+
require "logstash/codecs/plain"
|
4
|
+
require "logstash/event"
|
5
|
+
require "json"
|
6
|
+
|
7
|
+
describe LogStash::Outputs::Kinesis do
|
8
|
+
let(:config) {{
|
9
|
+
"stream_name" => "test",
|
10
|
+
"region" => "ap-southeast-2",
|
11
|
+
"metrics_level" => "none"
|
12
|
+
}}
|
13
|
+
let(:sample_event) { LogStash::Event.new }
|
14
|
+
|
15
|
+
KPL = com.amazonaws.services.kinesis.producer
|
16
|
+
|
17
|
+
context "when receiving message" do
|
18
|
+
it "sends record to Kinesis" do
|
19
|
+
expect_any_instance_of(KPL::KinesisProducer).to receive(:addUserRecord)
|
20
|
+
|
21
|
+
output = LogStash::Outputs::Kinesis.new (config)
|
22
|
+
output.register
|
23
|
+
output.receive(sample_event)
|
24
|
+
output.teardown
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
|
4
|
+
# file to always be loaded, without a need to explicitly require it in any files.
|
5
|
+
#
|
6
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
7
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
8
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
9
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
10
|
+
# a separate helper file that requires the additional dependencies and performs
|
11
|
+
# the additional setup, and require it from the spec files that actually need it.
|
12
|
+
#
|
13
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
14
|
+
# users commonly want.
|
15
|
+
#
|
16
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
17
|
+
RSpec.configure do |config|
|
18
|
+
# rspec-expectations config goes here. You can use an alternate
|
19
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
20
|
+
# assertions if you prefer.
|
21
|
+
config.expect_with :rspec do |expectations|
|
22
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
23
|
+
# and `failure_message` of custom matchers include text for helper methods
|
24
|
+
# defined using `chain`, e.g.:
|
25
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
26
|
+
# # => "be bigger than 2 and smaller than 4"
|
27
|
+
# ...rather than:
|
28
|
+
# # => "be bigger than 2"
|
29
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
30
|
+
end
|
31
|
+
|
32
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
33
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
34
|
+
config.mock_with :rspec do |mocks|
|
35
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
36
|
+
# a real object. This is generally recommended, and will default to
|
37
|
+
# `true` in RSpec 4.
|
38
|
+
|
39
|
+
# ... except this breaks mocking on a Java class it seems.
|
40
|
+
mocks.verify_partial_doubles = false
|
41
|
+
end
|
42
|
+
|
43
|
+
# The settings below are suggested to provide a good initial experience
|
44
|
+
# with RSpec, but feel free to customize to your heart's content.
|
45
|
+
=begin
|
46
|
+
# These two settings work together to allow you to limit a spec run
|
47
|
+
# to individual examples or groups you care about by tagging them with
|
48
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
49
|
+
# get run.
|
50
|
+
config.filter_run :focus
|
51
|
+
config.run_all_when_everything_filtered = true
|
52
|
+
|
53
|
+
# Limits the available syntax to the non-monkey patched syntax that is recommended.
|
54
|
+
# For more details, see:
|
55
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
56
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
57
|
+
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
|
58
|
+
config.disable_monkey_patching!
|
59
|
+
|
60
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
61
|
+
# be too noisy due to issues in dependencies.
|
62
|
+
config.warnings = true
|
63
|
+
|
64
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
65
|
+
# file, and it's useful to allow more verbose output when running an
|
66
|
+
# individual spec file.
|
67
|
+
if config.files_to_run.one?
|
68
|
+
# Use the documentation formatter for detailed output,
|
69
|
+
# unless a formatter has already been configured
|
70
|
+
# (e.g. via a command-line flag).
|
71
|
+
config.default_formatter = 'doc'
|
72
|
+
end
|
73
|
+
|
74
|
+
# Print the 10 slowest examples and example groups at the
|
75
|
+
# end of the spec run, to help surface which specs are running
|
76
|
+
# particularly slow.
|
77
|
+
config.profile_examples = 10
|
78
|
+
|
79
|
+
# Run specs in random order to surface order dependencies. If you find an
|
80
|
+
# order dependency and want to debug it, you can fix the order by providing
|
81
|
+
# the seed, which is printed after each run.
|
82
|
+
# --seed 1234
|
83
|
+
config.order = :random
|
84
|
+
|
85
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
86
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
87
|
+
# test failures related to randomization by passing the same `--seed` value
|
88
|
+
# as the one that triggered the failure.
|
89
|
+
Kernel.srand config.seed
|
90
|
+
=end
|
91
|
+
end
|
metadata
ADDED
@@ -0,0 +1,154 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: logstash-output-kinesis
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: java
|
6
|
+
authors:
|
7
|
+
- Sam Day
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-07-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - '>='
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0'
|
19
|
+
name: jar-dependencies
|
20
|
+
prerelease: false
|
21
|
+
type: :runtime
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.4.0
|
33
|
+
- - <
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 2.0.0
|
36
|
+
name: logstash-core
|
37
|
+
prerelease: false
|
38
|
+
type: :runtime
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.4.0
|
44
|
+
- - <
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.0.0
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - '>='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
name: logstash-codec-plain
|
54
|
+
prerelease: false
|
55
|
+
type: :runtime
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - '>='
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
name: logstash-codec-json
|
68
|
+
prerelease: false
|
69
|
+
type: :runtime
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
name: logstash-devutils
|
82
|
+
prerelease: false
|
83
|
+
type: :development
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ~>
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 0.7.3
|
95
|
+
name: gem-release
|
96
|
+
prerelease: false
|
97
|
+
type: :development
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ~>
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 0.7.3
|
103
|
+
description: This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install logstash-output-kinesis. This gem is not a stand-alone program
|
104
|
+
email: me@samcday.com.au
|
105
|
+
executables: []
|
106
|
+
extensions: []
|
107
|
+
extra_rdoc_files: []
|
108
|
+
files:
|
109
|
+
- .editorconfig
|
110
|
+
- .gemrelease
|
111
|
+
- .gitignore
|
112
|
+
- .rspec
|
113
|
+
- .ruby-version
|
114
|
+
- .travis.yml
|
115
|
+
- CHANGELOG.md
|
116
|
+
- Gemfile
|
117
|
+
- LICENSE
|
118
|
+
- README.md
|
119
|
+
- Rakefile
|
120
|
+
- lib/logstash-output-kinesis/version.rb
|
121
|
+
- lib/logstash/outputs/kinesis.rb
|
122
|
+
- logstash-output-kinesis.gemspec
|
123
|
+
- spec/outputs/kinesis_spec.rb
|
124
|
+
- spec/spec_helper.rb
|
125
|
+
homepage: https://www.github.com/samcday/logstash-output-kinesis
|
126
|
+
licenses:
|
127
|
+
- Apache License (2.0)
|
128
|
+
metadata:
|
129
|
+
logstash_plugin: 'true'
|
130
|
+
logstash_group: output
|
131
|
+
post_install_message:
|
132
|
+
rdoc_options: []
|
133
|
+
require_paths:
|
134
|
+
- lib
|
135
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - '>='
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - '>='
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
requirements:
|
146
|
+
- jar 'com.amazonaws:amazon-kinesis-producer', '0.10.0'
|
147
|
+
rubyforge_project:
|
148
|
+
rubygems_version: 2.1.9
|
149
|
+
signing_key:
|
150
|
+
specification_version: 4
|
151
|
+
summary: This output plugin sends records to Kinesis using the Kinesis Producer Library (KPL)
|
152
|
+
test_files:
|
153
|
+
- spec/outputs/kinesis_spec.rb
|
154
|
+
- spec/spec_helper.rb
|