-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dcm4che/dcm4chee-arc-light#534: Upgrade ELK to 5.1.2
- Loading branch information
Showing
10 changed files
with
44 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
## 2.0.0 | ||
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully, | ||
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895 | ||
- Dependency on logstash-core update to 2.0 | ||
|
||
## 0.1.0 | ||
- Plugin created with the logstash plugin generator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
The following is a list of people who have contributed ideas, code, bug | ||
reports, or in general have helped logstash along its way. | ||
|
||
Contributors: | ||
* gunterze - [email protected] | ||
|
||
Note: If you've sent us patches, bug reports, or otherwise contributed to | ||
Logstash, and you aren't on the list above and want to be, please let us know | ||
and we'll make sure you're here. Contributions from folks like you are what make | ||
open source awesome. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# logstash-codec-example | ||
# logstash-codec-frame | ||
Example codec plugin. This should help bootstrap your effort to write your own codec plugin! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
source 'https://rubygems.org' | ||
gemspec | ||
gemspec | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
@files=[] | ||
|
||
task :default do | ||
system("rake -T") | ||
end | ||
|
||
require "logstash/devutils/rake" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,23 @@ | ||
Gem::Specification.new do |s| | ||
|
||
s.name = 'logstash-codec-frame' | ||
s.version = '2.0.0' | ||
s.licenses = ['Apache License (2.0)'] | ||
s.summary = "Frame-oriented text data." | ||
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" | ||
s.authors = ["Gunter Zeilinger"] | ||
s.email = '[email protected]' | ||
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html" | ||
s.require_paths = ["lib"] | ||
s.name = 'logstash-codec-frame' | ||
s.version = '5.0.0' | ||
s.licenses = ['Apache License (2.0)'] | ||
s.summary = 'Frame-oriented text data.' | ||
s.description = 'This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program.' | ||
s.homepage = 'https://github.com/dcm4che/logstash-codec-frame' | ||
s.authors = ['Gunter Zeilinger'] | ||
s.email = '[email protected]' | ||
s.require_paths = ['lib'] | ||
|
||
# Files | ||
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT'] | ||
|
||
# Tests | ||
# Tests | ||
s.test_files = s.files.grep(%r{^(test|spec|features)/}) | ||
|
||
# Special flag to let us know this is actually a logstash plugin | ||
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "codec" } | ||
|
||
# Gem dependencies | ||
s.add_runtime_dependency "logstash-core", ">= 2.0.0.beta2", "< 3.0.0" | ||
|
||
s.add_runtime_dependency 'logstash-core-plugin-api', "~> 2.0" | ||
s.add_development_dependency 'logstash-devutils' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# encoding: utf-8 | ||
require "logstash/devutils/rspec/spec_helper" |