sensu-plugins-xmpp 0.0.3 → 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: ae0a0043bd74ed7c8248983b6f03a9b454250d6f
4
- data.tar.gz: 351451170f8c912ca7dad1103ec2544485b6135e
3
+ metadata.gz: ce18abd8aec9928b9dd13b6974da626b3ee0171b
4
+ data.tar.gz: e71157aeafdd35bcb6f31f2d1135beb2fae807cd
5
5
  SHA512:
6
- metadata.gz: c6415155330180e77bcdd36246bb790079d51f93d92fa0753b0c2f3e4ff75280edc8d9712a7cd32dccd8504aa53d4e54016d05216b4793127c6c1e1640f4f9eb
7
- data.tar.gz: ea3704c78805aebdd1789b2789cd68102a351e51e7be69c334d4892c48a61a011ff6f908330b3b6cdfa0b7ebce082a41275155033309640eab4fec7607bb94d6
6
+ metadata.gz: ea9eedd061a6ee8a0c961cd4ec8028ffc9c079615a9887aca838d5917fa42d112b9a0cc35a18d4d19cf62ba7b04584d9c3d12f00752915038f73653de5dfbc46
7
+ data.tar.gz: 02ec63fcb4dedf30247befe6b583673952f1153daa811185338c4b4a5ecbf9b1c2fd02b79aa919acedbe182ac2e6843cc6f5959b39d445c93ad035b5df70d033
data/CHANGELOG.md CHANGED
@@ -1,16 +1,23 @@
1
- #Change Log
1
+ # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
- ## Unreleased][unreleased]
6
+ ## [Unreleased]
7
+
8
+ ## [1.0.0] - 2017-05-16
9
+ ### Added
10
+ - check-xmpp-login.rb (@ushis)
11
+ - Support for Ruby 2.3 and 2.4 (@eheydrick)
12
+
13
+ ### Removed
14
+ - Support for Ruby 1.9.3
7
15
 
8
16
  ## [0.0.3] - 2015-07-14
9
17
  ### Changed
10
18
  - updated sensu-plugin gem to 1.2.0
11
19
 
12
20
  ## [0.0.2] - 2015-06-03
13
-
14
21
  ### Fixed
15
22
  - added binstubs
16
23
 
@@ -18,7 +25,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
18
25
  - removed cruft from /lib
19
26
 
20
27
  ## 0.0.1 - 2015-05-21
21
-
22
28
  ### Added
23
29
  - initial release
24
30
 
31
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.0...HEAD
32
+ [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.3...1.0.0
33
+ [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.2...0.0.3
34
+ [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.1...0.0.2
data/README.md CHANGED
@@ -1,11 +1,10 @@
1
1
  ## Sensu-Plugins-xmpp
2
2
 
3
- [ ![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-xmpp.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-xmpp)
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-xmpp.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-xmpp)
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-xmpp.svg)](http://badge.fury.io/rb/sensu-plugins-xmpp)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-xmpp/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-xmpp)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-xmpp/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-xmpp)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-xmpp.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-xmpp)
8
- [ ![Codeship Status for sensu-plugins/sensu-plugins-xmpp](https://codeship.com/projects/79427170-e204-0132-c525-3642858bbef8/status?branch=master)](https://codeship.com/projects/81357)
9
8
 
10
9
  ## Functionality
11
10
 
@@ -21,13 +20,13 @@
21
20
  "target": "room@conference.domain",
22
21
  "target_type": "conference",
23
22
  "server": "server.domain",
24
- "room_passord": "roompassword"
23
+ "room_password": "roompassword"
25
24
  }
26
25
  }
27
26
  ```
28
27
 
29
28
  ## Installation
30
29
 
31
- [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
30
+ [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
32
31
 
33
32
  ## Notes
@@ -0,0 +1,68 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # check-xmpp-login
4
+ #
5
+ # DESCRIPTION:
6
+ # Attempt to login to a XMPP server with provided credentials.
7
+ #
8
+ # OUTPUT:
9
+ # plain text
10
+ #
11
+ # PLATFORMS:
12
+ # Linux
13
+ #
14
+ # DEPENDENCIES:
15
+ # gem: sensu-plugin
16
+ # gem: xmpp4r
17
+ #
18
+ # USAGE:
19
+ # check-xmpp-login.rb -j jid -P pass
20
+ #
21
+ # NOTES:
22
+ #
23
+ # LICENSE:
24
+ # Released under the same terms as Sensu (the MIT license); see LICENSE
25
+ # for details.
26
+ #
27
+
28
+ require 'sensu-plugin/check/cli'
29
+ require 'xmpp4r/client'
30
+
31
+ class CheckXmppLogin < Sensu::Plugin::Check::CLI
32
+ option :host,
33
+ short: '-h HOST',
34
+ long: '--host HOST',
35
+ description: 'Host to login to',
36
+ default: '127.0.0.1'
37
+
38
+ option :port,
39
+ short: '-p PORT',
40
+ long: '--port PORT',
41
+ description: 'Server port',
42
+ default: 5222
43
+
44
+ option :jid,
45
+ short: '-j JID',
46
+ long: '--jid JID',
47
+ description: 'JID used to login',
48
+ required: true
49
+
50
+ option :password,
51
+ short: '-P PASSWORD',
52
+ long: '--password PASSWORD',
53
+ description: 'Password used to login',
54
+ required: true
55
+
56
+ def run
57
+ jid = Jabber::JID.new(config[:jid])
58
+ cli = Jabber::Client.new(jid)
59
+ cli.connect(config[:host], config[:port])
60
+ cli.auth(config[:password])
61
+ cli.close
62
+ ok "Logged in as #{config[:jid]}"
63
+ rescue Jabber::ClientAuthenticationFailure
64
+ warning 'Login failed: Invalid jid or password'
65
+ rescue Exception => err # rubocop:disable RescueException
66
+ critical "Failed to connect to XMPP server: #{err.message}"
67
+ end
68
+ end
data/bin/handler-xmpp.rb CHANGED
@@ -19,14 +19,14 @@ class XmppHandler < Sensu::Handler
19
19
  xmpp_server = settings['xmpp']['server']
20
20
  xmpp_room_password = settings['xmpp']['room_password']
21
21
 
22
- if @event['action'].eql?('resolve')
23
- # body = "Sensu RESOLVED - [#{event_name}] - #{@event['check']['notification']}"
24
- body = "Sensu RESOLVED - [#{event_name}] - #{@event['check']['output']} - #{@event['check']['notification']}"
25
- else
26
- # body = "Sensu ALERT - [#{event_name}] - #{@event['check']['notification']}"
27
- body = "Sensu ALERT - [#{event_name}] - #{@event['check']['output']} - #{@event['check']['notification']}"
28
- # body = "Sensu ALERT - [#{event_name}] - #{@event['check']['output']}"
29
- end
22
+ body = if @event['action'].eql?('resolve')
23
+ # body = "Sensu RESOLVED - [#{event_name}] - #{@event['check']['notification']}"
24
+ "Sensu RESOLVED - [#{event_name}] - #{@event['check']['output']} - #{@event['check']['notification']}"
25
+ else
26
+ # body = "Sensu ALERT - [#{event_name}] - #{@event['check']['notification']}"
27
+ "Sensu ALERT - [#{event_name}] - #{@event['check']['output']} - #{@event['check']['notification']}"
28
+ # body = "Sensu ALERT - [#{event_name}] - #{@event['check']['output']}"
29
+ end
30
30
 
31
31
  jid = JID.new(xmpp_jid)
32
32
  cl = Client.new(jid)
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsXmpp
2
2
  module Version
3
- MAJOR = 0
3
+ MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 3
5
+ PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,51 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-xmpp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - |
12
- -----BEGIN CERTIFICATE-----
13
- MIIDgDCCAmigAwIBAgIBATANBgkqhkiG9w0BAQUFADBDMRIwEAYDVQQDDAltYXR0
14
- am9uZXMxGDAWBgoJkiaJk/IsZAEZFgh5aWVsZGJvdDETMBEGCgmSJomT8ixkARkW
15
- A2NvbTAeFw0xNTAxMjgyMTAyNTFaFw0xNjAxMjgyMTAyNTFaMEMxEjAQBgNVBAMM
16
- CW1hdHRqb25lczEYMBYGCgmSJomT8ixkARkWCHlpZWxkYm90MRMwEQYKCZImiZPy
17
- LGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyTSzVYnO
18
- CLgyrIyT1mBQakArQyW8xhi6MlDqyzXHJGeERT790U6EgoBVeS4XoK0ptFZNR8Tf
19
- zko0w+Nv47TarSCgkPOaxY+mxWnAVR10dOmfeLr7huiMyps+YD56/EF2FqQ3jf/+
20
- qohENfKD91qy1ieEy+Fn7Pf74ltbNKUdkb9a9eFXQ0DQ4ip5vik7DzjQkUTj4lca
21
- k6ArwnmHX4YDhZoYtrQJ8jVktN0/+NtA40M5qkCYHNe5tUW25b/tKVYuioxG6b2Z
22
- oIzaZxRLxf6HVAWpCVRT/F5+/yjigkX4u++eYacfLGleXQzoK7BL65vHGMJygWEE
23
- 0TKGqFOrl/L0AQIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
24
- HQ4EFgQUEf6a8Td7MrSZc8ImbLFZAENPbz0wIQYDVR0RBBowGIEWbWF0dGpvbmVz
25
- QHlpZWxkYm90LmNvbTAhBgNVHRIEGjAYgRZtYXR0am9uZXNAeWllbGRib3QuY29t
26
- MA0GCSqGSIb3DQEBBQUAA4IBAQBbzXAYA3BVGw8DZ0YYoY1VHPNEcH5qPIApmHO8
27
- rvSmuUT0yMEi7u00H/5uHRFf4LleGT/+sTdyXKsNPGT9kdRuQEgwi+vf7Zfvd8aX
28
- UF/+4VkEYf/8rV8Ere6u2QaWPgApdMV6JjKr1fAwCTd8AuGXNaWItiPPMseSQzLJ
29
- JKP4hVvbc1d+oS925B1lcBiqn2aYvElbyNAVmQPywNNqkWmvtlqj9ZVJfV5HQLdu
30
- 8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
- HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
- -----END CERTIFICATE-----
33
- date: 2015-07-14 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2017-05-17 00:00:00.000000000 Z
34
12
  dependencies:
35
13
  - !ruby/object:Gem::Dependency
36
14
  name: sensu-plugin
37
15
  requirement: !ruby/object:Gem::Requirement
38
16
  requirements:
39
- - - '='
17
+ - - "~>"
40
18
  - !ruby/object:Gem::Version
41
- version: 1.2.0
19
+ version: '1.2'
42
20
  type: :runtime
43
21
  prerelease: false
44
22
  version_requirements: !ruby/object:Gem::Requirement
45
23
  requirements:
46
- - - '='
24
+ - - "~>"
47
25
  - !ruby/object:Gem::Version
48
- version: 1.2.0
26
+ version: '1.2'
49
27
  - !ruby/object:Gem::Dependency
50
28
  name: xmpp4r
51
29
  requirement: !ruby/object:Gem::Requirement
@@ -61,134 +39,135 @@ dependencies:
61
39
  - !ruby/object:Gem::Version
62
40
  version: 0.5.6
63
41
  - !ruby/object:Gem::Dependency
64
- name: codeclimate-test-reporter
42
+ name: bundler
65
43
  requirement: !ruby/object:Gem::Requirement
66
44
  requirements:
67
45
  - - "~>"
68
46
  - !ruby/object:Gem::Version
69
- version: '0.4'
47
+ version: '1.7'
70
48
  type: :development
71
49
  prerelease: false
72
50
  version_requirements: !ruby/object:Gem::Requirement
73
51
  requirements:
74
52
  - - "~>"
75
53
  - !ruby/object:Gem::Version
76
- version: '0.4'
54
+ version: '1.7'
77
55
  - !ruby/object:Gem::Dependency
78
- name: rubocop
56
+ name: codeclimate-test-reporter
79
57
  requirement: !ruby/object:Gem::Requirement
80
58
  requirements:
81
- - - '='
59
+ - - "~>"
82
60
  - !ruby/object:Gem::Version
83
- version: '0.30'
61
+ version: '0.4'
84
62
  type: :development
85
63
  prerelease: false
86
64
  version_requirements: !ruby/object:Gem::Requirement
87
65
  requirements:
88
- - - '='
66
+ - - "~>"
89
67
  - !ruby/object:Gem::Version
90
- version: '0.30'
68
+ version: '0.4'
91
69
  - !ruby/object:Gem::Dependency
92
- name: rspec
70
+ name: github-markup
93
71
  requirement: !ruby/object:Gem::Requirement
94
72
  requirements:
95
73
  - - "~>"
96
74
  - !ruby/object:Gem::Version
97
- version: '3.1'
75
+ version: '1.3'
98
76
  type: :development
99
77
  prerelease: false
100
78
  version_requirements: !ruby/object:Gem::Requirement
101
79
  requirements:
102
80
  - - "~>"
103
81
  - !ruby/object:Gem::Version
104
- version: '3.1'
82
+ version: '1.3'
105
83
  - !ruby/object:Gem::Dependency
106
- name: bundler
84
+ name: pry
107
85
  requirement: !ruby/object:Gem::Requirement
108
86
  requirements:
109
87
  - - "~>"
110
88
  - !ruby/object:Gem::Version
111
- version: '1.7'
89
+ version: '0.10'
112
90
  type: :development
113
91
  prerelease: false
114
92
  version_requirements: !ruby/object:Gem::Requirement
115
93
  requirements:
116
94
  - - "~>"
117
95
  - !ruby/object:Gem::Version
118
- version: '1.7'
96
+ version: '0.10'
119
97
  - !ruby/object:Gem::Dependency
120
98
  name: rake
121
99
  requirement: !ruby/object:Gem::Requirement
122
100
  requirements:
123
101
  - - "~>"
124
102
  - !ruby/object:Gem::Version
125
- version: '10.0'
103
+ version: '10.5'
126
104
  type: :development
127
105
  prerelease: false
128
106
  version_requirements: !ruby/object:Gem::Requirement
129
107
  requirements:
130
108
  - - "~>"
131
109
  - !ruby/object:Gem::Version
132
- version: '10.0'
110
+ version: '10.5'
133
111
  - !ruby/object:Gem::Dependency
134
- name: github-markup
112
+ name: redcarpet
135
113
  requirement: !ruby/object:Gem::Requirement
136
114
  requirements:
137
115
  - - "~>"
138
116
  - !ruby/object:Gem::Version
139
- version: '1.3'
117
+ version: '3.2'
140
118
  type: :development
141
119
  prerelease: false
142
120
  version_requirements: !ruby/object:Gem::Requirement
143
121
  requirements:
144
122
  - - "~>"
145
123
  - !ruby/object:Gem::Version
146
- version: '1.3'
124
+ version: '3.2'
147
125
  - !ruby/object:Gem::Dependency
148
- name: redcarpet
126
+ name: rubocop
149
127
  requirement: !ruby/object:Gem::Requirement
150
128
  requirements:
151
129
  - - "~>"
152
130
  - !ruby/object:Gem::Version
153
- version: '3.2'
131
+ version: 0.40.0
154
132
  type: :development
155
133
  prerelease: false
156
134
  version_requirements: !ruby/object:Gem::Requirement
157
135
  requirements:
158
136
  - - "~>"
159
137
  - !ruby/object:Gem::Version
160
- version: '3.2'
138
+ version: 0.40.0
161
139
  - !ruby/object:Gem::Dependency
162
- name: yard
140
+ name: rspec
163
141
  requirement: !ruby/object:Gem::Requirement
164
142
  requirements:
165
143
  - - "~>"
166
144
  - !ruby/object:Gem::Version
167
- version: '0.8'
145
+ version: '3.4'
168
146
  type: :development
169
147
  prerelease: false
170
148
  version_requirements: !ruby/object:Gem::Requirement
171
149
  requirements:
172
150
  - - "~>"
173
151
  - !ruby/object:Gem::Version
174
- version: '0.8'
152
+ version: '3.4'
175
153
  - !ruby/object:Gem::Dependency
176
- name: pry
154
+ name: yard
177
155
  requirement: !ruby/object:Gem::Requirement
178
156
  requirements:
179
157
  - - "~>"
180
158
  - !ruby/object:Gem::Version
181
- version: '0.10'
159
+ version: '0.8'
182
160
  type: :development
183
161
  prerelease: false
184
162
  version_requirements: !ruby/object:Gem::Requirement
185
163
  requirements:
186
164
  - - "~>"
187
165
  - !ruby/object:Gem::Version
188
- version: '0.10'
166
+ version: '0.8'
189
167
  description: Sensu plugins for working with xmpp
190
168
  email: "<sensu-users@googlegroups.com>"
191
169
  executables:
170
+ - check-xmpp-login.rb
192
171
  - handler-xmpp.rb
193
172
  extensions: []
194
173
  extra_rdoc_files: []
@@ -196,6 +175,7 @@ files:
196
175
  - CHANGELOG.md
197
176
  - LICENSE
198
177
  - README.md
178
+ - bin/check-xmpp-login.rb
199
179
  - bin/handler-xmpp.rb
200
180
  - lib/sensu-plugins-xmpp.rb
201
181
  - lib/sensu-plugins-xmpp/version.rb
@@ -203,7 +183,7 @@ homepage: https://github.com/sensu-plugins/sensu-plugins-xmpp
203
183
  licenses:
204
184
  - MIT
205
185
  metadata:
206
- maintainer: ''
186
+ maintainer: sensu-plugin
207
187
  development_status: active
208
188
  production_status: unstable - testing recommended
209
189
  release_draft: 'false'
@@ -217,7 +197,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
217
197
  requirements:
218
198
  - - ">="
219
199
  - !ruby/object:Gem::Version
220
- version: 1.9.3
200
+ version: 2.0.0
221
201
  required_rubygems_version: !ruby/object:Gem::Requirement
222
202
  requirements:
223
203
  - - ">="
@@ -225,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
205
  version: '0'
226
206
  requirements: []
227
207
  rubyforge_project:
228
- rubygems_version: 2.4.6
208
+ rubygems_version: 2.4.5
229
209
  signing_key:
230
210
  specification_version: 4
231
211
  summary: Sensu plugins for working with xmpp
checksums.yaml.gz.sig DELETED
Binary file
data.tar.gz.sig DELETED
Binary file
metadata.gz.sig DELETED
Binary file