logstash-input-zenoss 0.1.4 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26c6c75fb6fd2b5550b953b05ef83012744009e9
4
- data.tar.gz: dbd129abe9859a06d9058253ec6ddae508b5b4f3
3
+ metadata.gz: c6fd5c50e65aca8fbf5667a3d88c3ba6d3553a8d
4
+ data.tar.gz: aa0610ddf6b308a49eae5c019c8ff4d92bfb4451
5
5
  SHA512:
6
- metadata.gz: ae6417e5cf3ebd9a05be4acf161aa16b46205d8f5c6060c794b340e4f41ad3b80f7390447db2f4f4815248ffb582c86f8c58f890fe20b6b7f08596d48f5a1afb
7
- data.tar.gz: 1254233916bd9ea446219f78e01140afddce8aee20481006a40c896bcb0f2ae184147dba722a9a1a6304de69a41f2fe54b2d9d7dbae114f534fb2609efacc6a6
6
+ metadata.gz: ae0d5e52c88646a43c3b002b2716028c9779054d1face35514990bd8bbde750ef92d9ce312a30ecb94b0110671d62febde532667fa8c012cc974f94884fa7676
7
+ data.tar.gz: a42347fcc517fcb4b77c9f495cb2bbdc843b644c5209a8964a51d6021eb25881f620c6a6ee45157be1bc4295c6e12f185a9ade069d49cd5d3b268f1a08a91046
data/CHANGELOG.md ADDED
File without changes
data/NOTICE.TXT ADDED
@@ -0,0 +1,5 @@
1
+ Elasticsearch
2
+ Copyright 2012-2015 Elasticsearch
3
+
4
+ This product includes software developed by The Apache Software
5
+ Foundation (http://www.apache.org/).
data/README.md CHANGED
@@ -1,19 +1,19 @@
1
1
  # Logstash Plugin
2
2
 
3
- This is a plugin for [Logstash](https://github.com/elasticsearch/logstash).
3
+ This is a plugin for [Logstash](https://github.com/elastic/logstash).
4
4
 
5
5
  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
6
 
7
7
  ## Documentation
8
8
 
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.elasticsearch.org/guide/en/logstash/current/).
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.elastic.co/guide/en/logstash/current/).
10
10
 
11
11
  - 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/elasticsearch/docs#asciidoc-guide
12
+ - For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
13
13
 
14
14
  ## Need Help?
15
15
 
16
- Need help? Try #logstash on freenode IRC or the logstash-users@googlegroups.com mailing list.
16
+ Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
17
17
 
18
18
  ## Developing
19
19
 
@@ -83,4 +83,4 @@ Programming is not a required skill. Whatever you've seen about open source and
83
83
 
84
84
  It is more important to the community that you are able to contribute.
85
85
 
86
- For more information about contributing, see the [CONTRIBUTING](https://github.com/elasticsearch/logstash/blob/master/CONTRIBUTING.md) file.
86
+ For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-zenoss'
4
- s.version = '0.1.4'
4
+ s.version = '1.0.0'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Read Zenoss events from the zenoss.zenevents fanout exchange."
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/plugin install gemname. This gem is not a stand-alone program"
@@ -24,7 +24,11 @@ Gem::Specification.new do |s|
24
24
 
25
25
  s.add_runtime_dependency 'beefcake'
26
26
  s.add_runtime_dependency 'logstash-input-rabbitmq'
27
- s.add_runtime_dependency 'bunny'
27
+
28
+ # enforce pre 2.0 bunny and amq-protocol versions since both are now
29
+ # exclusive for Ruby 2.0+ (and only JRuby 9.0.0.0 is > 1.9)
30
+ s.add_runtime_dependency 'bunny', '< 2.0.0'
31
+ s.add_runtime_dependency 'amq-protocol', '< 2.0.0'
28
32
 
29
33
  s.add_development_dependency 'logstash-devutils'
30
34
  end
metadata CHANGED
@@ -1,17 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-zenoss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 1.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: 2015-04-20 00:00:00.000000000 Z
11
+ date: 2015-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- requirement: !ruby/object:Gem::Requirement
14
+ name: logstash-core
15
+ version_requirements: !ruby/object:Gem::Requirement
15
16
  requirements:
16
17
  - - '>='
17
18
  - !ruby/object:Gem::Version
@@ -19,10 +20,7 @@ dependencies:
19
20
  - - <
20
21
  - !ruby/object:Gem::Version
21
22
  version: 2.0.0
22
- name: logstash-core
23
- prerelease: false
24
- type: :runtime
25
- version_requirements: !ruby/object:Gem::Requirement
23
+ requirement: !ruby/object:Gem::Requirement
26
24
  requirements:
27
25
  - - '>='
28
26
  - !ruby/object:Gem::Version
@@ -30,62 +28,78 @@ dependencies:
30
28
  - - <
31
29
  - !ruby/object:Gem::Version
32
30
  version: 2.0.0
31
+ prerelease: false
32
+ type: :runtime
33
33
  - !ruby/object:Gem::Dependency
34
+ name: beefcake
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
34
40
  requirement: !ruby/object:Gem::Requirement
35
41
  requirements:
36
42
  - - '>='
37
43
  - !ruby/object:Gem::Version
38
44
  version: '0'
39
- name: beefcake
40
45
  prerelease: false
41
46
  type: :runtime
47
+ - !ruby/object:Gem::Dependency
48
+ name: logstash-input-rabbitmq
42
49
  version_requirements: !ruby/object:Gem::Requirement
43
50
  requirements:
44
51
  - - '>='
45
52
  - !ruby/object:Gem::Version
46
53
  version: '0'
47
- - !ruby/object:Gem::Dependency
48
54
  requirement: !ruby/object:Gem::Requirement
49
55
  requirements:
50
56
  - - '>='
51
57
  - !ruby/object:Gem::Version
52
58
  version: '0'
53
- name: logstash-input-rabbitmq
54
59
  prerelease: false
55
60
  type: :runtime
61
+ - !ruby/object:Gem::Dependency
62
+ name: bunny
56
63
  version_requirements: !ruby/object:Gem::Requirement
57
64
  requirements:
58
- - - '>='
65
+ - - <
59
66
  - !ruby/object:Gem::Version
60
- version: '0'
67
+ version: 2.0.0
68
+ requirement: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - <
71
+ - !ruby/object:Gem::Version
72
+ version: 2.0.0
73
+ prerelease: false
74
+ type: :runtime
61
75
  - !ruby/object:Gem::Dependency
76
+ name: amq-protocol
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - <
80
+ - !ruby/object:Gem::Version
81
+ version: 2.0.0
62
82
  requirement: !ruby/object:Gem::Requirement
63
83
  requirements:
64
- - - '>='
84
+ - - <
65
85
  - !ruby/object:Gem::Version
66
- version: '0'
67
- name: bunny
86
+ version: 2.0.0
68
87
  prerelease: false
69
88
  type: :runtime
89
+ - !ruby/object:Gem::Dependency
90
+ name: logstash-devutils
70
91
  version_requirements: !ruby/object:Gem::Requirement
71
92
  requirements:
72
93
  - - '>='
73
94
  - !ruby/object:Gem::Version
74
95
  version: '0'
75
- - !ruby/object:Gem::Dependency
76
96
  requirement: !ruby/object:Gem::Requirement
77
97
  requirements:
78
98
  - - '>='
79
99
  - !ruby/object:Gem::Version
80
100
  version: '0'
81
- name: logstash-devutils
82
101
  prerelease: false
83
102
  type: :development
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - '>='
87
- - !ruby/object:Gem::Version
88
- version: '0'
89
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 gemname. This gem is not a stand-alone program
90
104
  email: info@elastic.co
91
105
  executables: []
@@ -93,9 +107,11 @@ extensions: []
93
107
  extra_rdoc_files: []
94
108
  files:
95
109
  - .gitignore
110
+ - CHANGELOG.md
96
111
  - CONTRIBUTORS
97
112
  - Gemfile
98
113
  - LICENSE
114
+ - NOTICE.TXT
99
115
  - README.md
100
116
  - Rakefile
101
117
  - lib/logstash/inputs/zenoss.rb