logstash-input-exec 3.0.1 → 3.1.1
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 +17 -6
- data/lib/logstash/inputs/exec.rb +0 -3
- data/logstash-input-exec.gemspec +2 -2
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39920db332c1f87eb39fbe1637a003c15ced3891
|
|
4
|
+
data.tar.gz: 8d0a03d854fbd860823a8e5f2bbd27308866c258
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 975761ea445e360d30e61ed46828e12504803c2781ded750c1235ecb146d6cfe121ffff4be004eb1c6e3b6e1d061bc2242ccfda783c74c21aa79131492f388d0
|
|
7
|
+
data.tar.gz: bc4f85bbba3c053426b8314ebb5e91c399b3fb0082a7dafbf75d09d1b96da5eea18fdd0432b6134ceaf1d7fbffdef7fbe97dcdbf97111bec67e86498a68aade8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,26 @@
|
|
|
1
|
+
## 3.1.1
|
|
2
|
+
- Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
|
|
3
|
+
|
|
4
|
+
## 3.1.0
|
|
5
|
+
- breaking,config: Remove unused config `debug`
|
|
6
|
+
|
|
1
7
|
## 3.0.1
|
|
2
|
-
|
|
8
|
+
- Republish all the gems under jruby.
|
|
9
|
+
|
|
3
10
|
## 3.0.0
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
11
|
+
- Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
|
|
12
|
+
|
|
13
|
+
## 2.0.6
|
|
14
|
+
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
|
15
|
+
|
|
16
|
+
## 2.0.5
|
|
17
|
+
- New dependency requirements for logstash-core for the 5.0 release
|
|
18
|
+
|
|
9
19
|
## 2.0.3
|
|
10
20
|
- fix masked errors due to rescue Exception
|
|
11
21
|
- fix random race condition on closing io object
|
|
12
22
|
- refactor code for more reliable tests
|
|
23
|
+
|
|
13
24
|
## 2.0.1
|
|
14
25
|
- Replace non-whitespace character in code
|
|
15
26
|
|
data/lib/logstash/inputs/exec.rb
CHANGED
|
@@ -17,9 +17,6 @@ class LogStash::Inputs::Exec < LogStash::Inputs::Base
|
|
|
17
17
|
|
|
18
18
|
default :codec, "plain"
|
|
19
19
|
|
|
20
|
-
# Set this to true to enable debugging on an input.
|
|
21
|
-
config :debug, :validate => :boolean, :default => false, :deprecated => "This setting was never used by this plugin. It will be removed soon."
|
|
22
|
-
|
|
23
20
|
# Command to run. For example, `uptime`
|
|
24
21
|
config :command, :validate => :string, :required => true
|
|
25
22
|
|
data/logstash-input-exec.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-exec'
|
|
4
|
-
s.version = '3.
|
|
4
|
+
s.version = '3.1.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Run command line tools and capture the whole output as an event."
|
|
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/logstash-plugin install gemname. This gem is not a stand-alone program"
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
|
|
21
21
|
|
|
22
22
|
# Gem dependencies
|
|
23
|
-
s.add_runtime_dependency "logstash-core-plugin-api", "
|
|
23
|
+
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
|
24
24
|
s.add_runtime_dependency 'stud', '~> 0.0.22'
|
|
25
25
|
s.add_runtime_dependency 'logstash-codec-plain'
|
|
26
26
|
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-exec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.60'
|
|
19
|
+
- - "<="
|
|
17
20
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '2.
|
|
21
|
+
version: '2.99'
|
|
19
22
|
name: logstash-core-plugin-api
|
|
20
23
|
prerelease: false
|
|
21
24
|
type: :runtime
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.60'
|
|
30
|
+
- - "<="
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '2.
|
|
32
|
+
version: '2.99'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
requirement: !ruby/object:Gem::Requirement
|
|
29
35
|
requirements:
|
|
@@ -104,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
110
|
version: '0'
|
|
105
111
|
requirements: []
|
|
106
112
|
rubyforge_project:
|
|
107
|
-
rubygems_version: 2.
|
|
113
|
+
rubygems_version: 2.6.3
|
|
108
114
|
signing_key:
|
|
109
115
|
specification_version: 4
|
|
110
116
|
summary: Run command line tools and capture the whole output as an event.
|