logstash-input-rackspace 0.1.4 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/LICENSE +1 -1
- data/NOTICE.TXT +5 -0
- data/README.md +18 -6
- data/lib/logstash/inputs/rackspace.rb +2 -2
- data/logstash-input-rackspace.gemspec +6 -4
- metadata +49 -21
- data/.gitignore +0 -4
- data/Rakefile +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c25925f5f1747c4ea10c3974250cb09d605d656
|
4
|
+
data.tar.gz: 63a99a0d55fd39868c8cb514e2c57d7001cde50e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0772e756a3e3dfecbe082102e01495cf8d3ac70f311dc9dd627d2485f2aebe07a0813da548f32d438af9ec72e4f4c92090035a8690e1d659cc4edd2ea512b594
|
7
|
+
data.tar.gz: cb22f9405d31f903c76dd2ecd79d315167a82dc73691240f1a91a076764112d5f9489c55becae3a3f287ea93e584a1afc45b97d0720b5667c1ac83de87a9083e
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# 3.0.0
|
2
|
+
- Breaking: depend on logstash-core-plugin-api between 1.60 and 2.99
|
3
|
+
|
4
|
+
# 2.0.4
|
5
|
+
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
6
|
+
# 2.0.3
|
7
|
+
- New dependency requirements for logstash-core for the 5.0 release
|
8
|
+
## 2.0.0
|
9
|
+
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
|
10
|
+
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
|
11
|
+
- Dependency on logstash-core update to 2.0
|
12
|
+
|
data/LICENSE
CHANGED
data/NOTICE.TXT
ADDED
data/README.md
CHANGED
@@ -1,19 +1,21 @@
|
|
1
1
|
# Logstash Plugin
|
2
2
|
|
3
|
-
|
3
|
+
[![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-input-rackspace.svg)](https://travis-ci.org/logstash-plugins/logstash-input-rackspace)
|
4
|
+
|
5
|
+
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
4
6
|
|
5
7
|
It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
|
6
8
|
|
7
9
|
## Documentation
|
8
10
|
|
9
|
-
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.
|
11
|
+
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
|
10
12
|
|
11
13
|
- For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
|
12
|
-
- For more asciidoc formatting tips, see the excellent reference here https://github.com/
|
14
|
+
- For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
|
13
15
|
|
14
16
|
## Need Help?
|
15
17
|
|
16
|
-
Need help? Try #logstash on freenode IRC or the logstash
|
18
|
+
Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
|
17
19
|
|
18
20
|
## Developing
|
19
21
|
|
@@ -53,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
|
|
53
55
|
```
|
54
56
|
- Install plugin
|
55
57
|
```sh
|
58
|
+
# Logstash 2.3 and higher
|
59
|
+
bin/logstash-plugin install --no-verify
|
60
|
+
|
61
|
+
# Prior to Logstash 2.3
|
56
62
|
bin/plugin install --no-verify
|
63
|
+
|
57
64
|
```
|
58
65
|
- Run Logstash with your plugin
|
59
66
|
```sh
|
@@ -71,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
|
|
71
78
|
```
|
72
79
|
- Install the plugin from the Logstash home
|
73
80
|
```sh
|
74
|
-
|
81
|
+
# Logstash 2.3 and higher
|
82
|
+
bin/logstash-plugin install --no-verify
|
83
|
+
|
84
|
+
# Prior to Logstash 2.3
|
85
|
+
bin/plugin install --no-verify
|
86
|
+
|
75
87
|
```
|
76
88
|
- Start Logstash and proceed to test the plugin
|
77
89
|
|
@@ -83,4 +95,4 @@ Programming is not a required skill. Whatever you've seen about open source and
|
|
83
95
|
|
84
96
|
It is more important to the community that you are able to contribute.
|
85
97
|
|
86
|
-
For more information about contributing, see the [CONTRIBUTING](https://github.com/
|
98
|
+
For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.
|
@@ -1,17 +1,17 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-rackspace'
|
4
|
-
s.version = '0.
|
4
|
+
s.version = '3.0.0'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Pull events from rackspace cloud queue"
|
7
|
-
s.description = "This gem is a
|
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"
|
8
8
|
s.authors = ["Elastic"]
|
9
9
|
s.email = 'info@elastic.co'
|
10
10
|
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
|
11
11
|
s.require_paths = ["lib"]
|
12
12
|
|
13
13
|
# Files
|
14
|
-
s.files =
|
14
|
+
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
|
15
15
|
|
16
16
|
# Tests
|
17
17
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
@@ -20,10 +20,12 @@ 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",
|
23
|
+
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
24
24
|
|
25
25
|
s.add_runtime_dependency 'logstash-codec-plain'
|
26
26
|
s.add_runtime_dependency 'fog', ['1.20.0']
|
27
|
+
s.add_runtime_dependency 'mime-types', "< 3" # version 3 requires ruby 2.0
|
28
|
+
s.add_runtime_dependency 'net-ssh', "< 3" # version 3 requires ruby 2.0
|
27
29
|
|
28
30
|
s.add_development_dependency 'logstash-devutils'
|
29
31
|
end
|
metadata
CHANGED
@@ -1,39 +1,39 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-rackspace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-09-09 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
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: 1.
|
19
|
-
- -
|
18
|
+
version: '1.60'
|
19
|
+
- - "<="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 2.
|
22
|
-
name: logstash-core
|
21
|
+
version: '2.99'
|
22
|
+
name: logstash-core-plugin-api
|
23
23
|
prerelease: false
|
24
24
|
type: :runtime
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.
|
30
|
-
- -
|
29
|
+
version: '1.60'
|
30
|
+
- - "<="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 2.
|
32
|
+
version: '2.99'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
35
35
|
requirements:
|
36
|
-
- -
|
36
|
+
- - ">="
|
37
37
|
- !ruby/object:Gem::Version
|
38
38
|
version: '0'
|
39
39
|
name: logstash-codec-plain
|
@@ -41,7 +41,7 @@ dependencies:
|
|
41
41
|
type: :runtime
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
|
-
- -
|
44
|
+
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '0'
|
47
47
|
- !ruby/object:Gem::Dependency
|
@@ -61,7 +61,35 @@ dependencies:
|
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
requirement: !ruby/object:Gem::Requirement
|
63
63
|
requirements:
|
64
|
-
- -
|
64
|
+
- - "<"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '3'
|
67
|
+
name: mime-types
|
68
|
+
prerelease: false
|
69
|
+
type: :runtime
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "<"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '3'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - "<"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '3'
|
81
|
+
name: net-ssh
|
82
|
+
prerelease: false
|
83
|
+
type: :runtime
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "<"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '3'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
65
93
|
- !ruby/object:Gem::Version
|
66
94
|
version: '0'
|
67
95
|
name: logstash-devutils
|
@@ -69,21 +97,21 @@ dependencies:
|
|
69
97
|
type: :development
|
70
98
|
version_requirements: !ruby/object:Gem::Requirement
|
71
99
|
requirements:
|
72
|
-
- -
|
100
|
+
- - ">="
|
73
101
|
- !ruby/object:Gem::Version
|
74
102
|
version: '0'
|
75
|
-
description: This gem is a
|
103
|
+
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
|
76
104
|
email: info@elastic.co
|
77
105
|
executables: []
|
78
106
|
extensions: []
|
79
107
|
extra_rdoc_files: []
|
80
108
|
files:
|
81
|
-
- .
|
109
|
+
- CHANGELOG.md
|
82
110
|
- CONTRIBUTORS
|
83
111
|
- Gemfile
|
84
112
|
- LICENSE
|
113
|
+
- NOTICE.TXT
|
85
114
|
- README.md
|
86
|
-
- Rakefile
|
87
115
|
- lib/logstash/inputs/rackspace.rb
|
88
116
|
- logstash-input-rackspace.gemspec
|
89
117
|
- spec/inputs/rackspace_spec.rb
|
@@ -99,17 +127,17 @@ require_paths:
|
|
99
127
|
- lib
|
100
128
|
required_ruby_version: !ruby/object:Gem::Requirement
|
101
129
|
requirements:
|
102
|
-
- -
|
130
|
+
- - ">="
|
103
131
|
- !ruby/object:Gem::Version
|
104
132
|
version: '0'
|
105
133
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
134
|
requirements:
|
107
|
-
- -
|
135
|
+
- - ">="
|
108
136
|
- !ruby/object:Gem::Version
|
109
137
|
version: '0'
|
110
138
|
requirements: []
|
111
139
|
rubyforge_project:
|
112
|
-
rubygems_version: 2.
|
140
|
+
rubygems_version: 2.4.8
|
113
141
|
signing_key:
|
114
142
|
specification_version: 4
|
115
143
|
summary: Pull events from rackspace cloud queue
|
data/.gitignore
DELETED