sensu-plugins-victorops 0.1.0 → 1.0.0
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 +16 -3
- data/README.md +0 -1
- data/bin/handler-victorops.rb +9 -9
- data/lib/sensu-plugins-victorops/version.rb +2 -2
- metadata +15 -37
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f4f518228ffc32d119dd470281342a900ec6228
|
4
|
+
data.tar.gz: b86bdd7e192b34cb51e23456c6e7bcd0c0e7cef9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94d4f7152539ce5747a701a4e95a8175339a89fecbdaf262fbff58a2a3cba0793ca03ea09d8bf6ab0724a9a162a36859446f90e9017f90b01702ee2af675b79d
|
7
|
+
data.tar.gz: 99e04cf8a159de84e0ca450960626a96b4ebe72cfbef130143c9cb6e7339ba7b881210ec373181e8d8f1ab2e4cd1a81b4c6ff2a63a425af4d9d7212f3f5a2937
|
data/CHANGELOG.md
CHANGED
@@ -3,7 +3,17 @@ 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
|
6
|
+
## [Unreleased]
|
7
|
+
## [1.0.0] - 2017-07-6
|
8
|
+
### Added
|
9
|
+
- Ruby 2.3 & 2.4 testing
|
10
|
+
|
11
|
+
### Breaking Changes
|
12
|
+
- Dropped Ruby 1.9.3 support
|
13
|
+
- Updated JSON dependency to 1.8.5
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
- PR template spelling
|
7
17
|
|
8
18
|
## [0.1.0] - 2015-11-06
|
9
19
|
### Fixed
|
@@ -17,7 +27,6 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
17
27
|
- updated sensu-plugin gem to 1.2.0
|
18
28
|
|
19
29
|
## [0.0.2] - 2015-06-03
|
20
|
-
|
21
30
|
### Fixed
|
22
31
|
- added binstubs
|
23
32
|
|
@@ -25,7 +34,11 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
25
34
|
- removed cruft from /lib
|
26
35
|
|
27
36
|
## 0.0.1 - 2015-05-21
|
28
|
-
|
29
37
|
### Added
|
30
38
|
- initial release
|
31
39
|
|
40
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-victorops/compare/1.1.0...HEAD
|
41
|
+
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-victorops/compare/1.1.0...1.1.0
|
42
|
+
[0.1.0]: https://github.com/sensu-plugins/sensu-plugins-victorops/compare/0.0.3...0.1.0
|
43
|
+
[0.0.3]: https://github.com/sensu-plugins/sensu-plugins-victorops/compare/0.0.2...0.0.3
|
44
|
+
[0.0.2]: https://github.com/sensu-plugins/sensu-plugins-victorops/compare/0.0.1...0.0.2
|
data/README.md
CHANGED
@@ -5,7 +5,6 @@
|
|
5
5
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-victorops)
|
6
6
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-victorops)
|
7
7
|
[](https://gemnasium.com/sensu-plugins/sensu-plugins-victorops)
|
8
|
-
[ ](https://codeship.com/projects/81382)
|
9
8
|
|
10
9
|
## Functionality
|
11
10
|
|
data/bin/handler-victorops.rb
CHANGED
@@ -30,10 +30,10 @@ class VictorOps < Sensu::Handler
|
|
30
30
|
def handle
|
31
31
|
# validate that we have settings
|
32
32
|
unless defined? settings[config[:settingsname]] && !settings[config[:settingsname]].nil?
|
33
|
-
|
33
|
+
raise "victorops.rb sensu setting '#{config[:settingsname]}' not found or empty"
|
34
34
|
end
|
35
35
|
unless defined? settings[config[:settingsname]]['api_url'] && !settings[config[:settingsname]]['api_url'].nil?
|
36
|
-
|
36
|
+
raise "victorops.rb sensu setting '#{config[:settingsname]}.api_url' not found or empty"
|
37
37
|
end
|
38
38
|
api_url = settings[config[:settingsname]]['api_url']
|
39
39
|
|
@@ -42,7 +42,7 @@ class VictorOps < Sensu::Handler
|
|
42
42
|
routing_key = settings[config[:settingsname]]['routing_key'] if routing_key.nil?
|
43
43
|
|
44
44
|
unless defined? routing_key && !routing_key.nil?
|
45
|
-
|
45
|
+
raise 'routing key not defined, should be in Sensu settings or passed via command arguments'
|
46
46
|
end
|
47
47
|
|
48
48
|
incident_key = @event['client']['name'] + '/' + @event['check']['name']
|
@@ -56,12 +56,12 @@ class VictorOps < Sensu::Handler
|
|
56
56
|
timeout(10) do
|
57
57
|
case @event['action']
|
58
58
|
when 'create'
|
59
|
-
case @event['check']['status']
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
59
|
+
message_type = case @event['check']['status']
|
60
|
+
when 1
|
61
|
+
'WARNING'
|
62
|
+
else
|
63
|
+
'CRITICAL'
|
64
|
+
end
|
65
65
|
when 'resolve'
|
66
66
|
message_type = 'RECOVERY'
|
67
67
|
end
|
metadata
CHANGED
@@ -1,36 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sensu-plugins-victorops
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
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-11-06 00:00:00.000000000 Z
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-07-07 00:00:00.000000000 Z
|
34
12
|
dependencies:
|
35
13
|
- !ruby/object:Gem::Dependency
|
36
14
|
name: json
|
@@ -38,28 +16,28 @@ dependencies:
|
|
38
16
|
requirements:
|
39
17
|
- - '='
|
40
18
|
- !ruby/object:Gem::Version
|
41
|
-
version: 1.8.
|
19
|
+
version: 1.8.5
|
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.8.
|
26
|
+
version: 1.8.5
|
49
27
|
- !ruby/object:Gem::Dependency
|
50
28
|
name: sensu-plugin
|
51
29
|
requirement: !ruby/object:Gem::Requirement
|
52
30
|
requirements:
|
53
|
-
- -
|
31
|
+
- - "~>"
|
54
32
|
- !ruby/object:Gem::Version
|
55
|
-
version: 1.2
|
33
|
+
version: '1.2'
|
56
34
|
type: :runtime
|
57
35
|
prerelease: false
|
58
36
|
version_requirements: !ruby/object:Gem::Requirement
|
59
37
|
requirements:
|
60
|
-
- -
|
38
|
+
- - "~>"
|
61
39
|
- !ruby/object:Gem::Version
|
62
|
-
version: 1.2
|
40
|
+
version: '1.2'
|
63
41
|
- !ruby/object:Gem::Dependency
|
64
42
|
name: bundler
|
65
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,16 +140,16 @@ dependencies:
|
|
162
140
|
name: rubocop
|
163
141
|
requirement: !ruby/object:Gem::Requirement
|
164
142
|
requirements:
|
165
|
-
- -
|
143
|
+
- - "~>"
|
166
144
|
- !ruby/object:Gem::Version
|
167
|
-
version: 0.
|
145
|
+
version: 0.40.0
|
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.
|
152
|
+
version: 0.40.0
|
175
153
|
- !ruby/object:Gem::Dependency
|
176
154
|
name: yard
|
177
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -217,7 +195,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
217
195
|
requirements:
|
218
196
|
- - ">="
|
219
197
|
- !ruby/object:Gem::Version
|
220
|
-
version:
|
198
|
+
version: 2.0.0
|
221
199
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
222
200
|
requirements:
|
223
201
|
- - ">="
|
@@ -225,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
203
|
version: '0'
|
226
204
|
requirements: []
|
227
205
|
rubyforge_project:
|
228
|
-
rubygems_version: 2.4.
|
206
|
+
rubygems_version: 2.4.5
|
229
207
|
signing_key:
|
230
208
|
specification_version: 4
|
231
209
|
summary: Sensu plugins for Victorops alerting service
|
checksums.yaml.gz.sig
DELETED
Binary file
|
data.tar.gz.sig
DELETED
metadata.gz.sig
DELETED
Binary file
|