sensu-plugins-splunk 0.0.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60f8fa7d150089049a8b37afc60768f895158b1d
4
- data.tar.gz: 8212a28b2140628da3dbfba595f61ec407c94758
3
+ metadata.gz: 8dd3fe6fd8873f7dc008a5775d260a226cb960df
4
+ data.tar.gz: f2fc4b87dd066f5ca63901b7b0af77176b6a4e81
5
5
  SHA512:
6
- metadata.gz: 1949bcedfb8305207488c0fafecea55c2cc80e2fde433a5346dd2ccf2c830a2d92f12d0ad65c305422886633211a56028f52bb842002928cea2c518e8f60e3a2
7
- data.tar.gz: 2e99c518452ff7eb0742c633b4bfd9abcfa76693f10b6e7fa400bc0dc143602f5ec7016309757dceb8e7621b9705c4ef04ce7843e974dc64c450d9f987cf3943
6
+ metadata.gz: 2e8fcbc52c9129a0fd7e98d61c7740140c145fbb0e5106a49885018c204bc922ca7cbae0530411c32b6be391bf1456c149c1ad7b3cbcf00f5f91140e8d5a2186
7
+ data.tar.gz: 9b9322848aba7985125f891328c6e3497a4cbd0565b0773378cefada11b68adaa165af6b8c7d216907f46d2b5d34890749bad3795e4e5d72954c82e8aac158e6
data/CHANGELOG.md CHANGED
@@ -1,16 +1,29 @@
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-06-12
9
+ ### Added
10
+ - Support for Ruby 2.3 and 2.4 (@eheydrick)
11
+
12
+ ### Removed
13
+ - Support for Ruby < 2 (@eheydrick)
14
+
15
+ ### Changed
16
+ - Loosen `sensu-plugin` dependency to `~> 1.2` (@mattyjones)
17
+ - Update to `json` 1.8.6 for Ruby 2.4 support
7
18
 
8
19
  ## [0.0.2] - 2015-07-14
9
20
  ### Changed
10
21
  - updated sensu-plugin gem to 1.2.0
11
22
 
12
23
  ## 0.0.1 - 2015-06-04
13
-
14
24
  ### Added
15
25
  - initial release
16
26
 
27
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-splunk/compare/1.0.0...HEAD
28
+ [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-splunk/compare/0.0.2...1.0.0
29
+ [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-splunk/compare/0.0.1...0.0.2
data/README.md CHANGED
@@ -1,11 +1,8 @@
1
1
  ## Sensu-Plugins-splunk
2
2
 
3
- [ ![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-splunk.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-splunk)
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-splunk.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-splunk)
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-splunk.svg)](http://badge.fury.io/rb/sensu-plugins-splunk)
5
- [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-splunk/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-splunk)
6
- [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-splunk/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-splunk)
7
5
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-splunk.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-splunk)
8
- [ ![Codeship Status for sensu-plugins/sensu-plugins-splunk](https://codeship.com/projects/a5fd5b10-ea2e-0132-7a33-32dfa18a9fce/status?branch=master)](https://codeship.com/projects/83064)
9
6
 
10
7
  ## Functionality
11
8
 
@@ -25,6 +22,6 @@
25
22
 
26
23
  ## Installation
27
24
 
28
- [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
25
+ [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
29
26
 
30
27
  ## Notes
@@ -12,10 +12,10 @@
12
12
  require 'rest-client'
13
13
  require 'json'
14
14
 
15
- API_HOST = 'api.splunkstorm.com'
15
+ API_HOST = 'api.splunkstorm.com'.freeze
16
16
  API_VERSION = 1
17
- API_ENDPOINT = 'inputs/http'
18
- URL_SCHEME = 'https'
17
+ API_ENDPOINT = 'inputs/http'.freeze
18
+ URL_SCHEME = 'https'.freeze
19
19
 
20
20
  module Sensu
21
21
  class Handler
@@ -30,8 +30,7 @@ module Sensu
30
30
  end
31
31
 
32
32
  def filter
33
- # #YELLOW
34
- if @event['check']['alert'] == false # rubocop:disable GuardClause
33
+ if @event['check']['alert'] == false
35
34
  puts 'alert disabled -- filtered event ' + [@event['client']['name'], @event['check']['name']].join(' : ')
36
35
  exit 0
37
36
  end
@@ -40,7 +39,7 @@ module Sensu
40
39
  def alert
41
40
  refresh = (60.fdiv(@event['check']['interval']) * 30).to_i
42
41
  # #YELLOW
43
- if @event['occurrences'] == 1 || @event['occurrences'] % refresh == 0 # rubocop:disable GuardClause
42
+ if @event['occurrences'] == 1 || @event['occurrences'] % refresh == 0 # rubocop:disable GuardClause
44
43
  splunkstorm
45
44
  end
46
45
  end
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsSplunk
2
2
  module Version
3
- MAJOR = 0
3
+ MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 2
5
+ PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,65 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-splunk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
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-06-13 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: json
51
29
  requirement: !ruby/object:Gem::Requirement
52
30
  requirements:
53
31
  - - '='
54
32
  - !ruby/object:Gem::Version
55
- version: 1.8.3
33
+ version: 1.8.6
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.8.3
40
+ version: 1.8.6
63
41
  - !ruby/object:Gem::Dependency
64
42
  name: rest-client
65
43
  requirement: !ruby/object:Gem::Requirement
@@ -92,16 +70,16 @@ dependencies:
92
70
  name: rubocop
93
71
  requirement: !ruby/object:Gem::Requirement
94
72
  requirements:
95
- - - '='
73
+ - - "~>"
96
74
  - !ruby/object:Gem::Version
97
- version: '0.30'
75
+ version: 0.40.0
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: '0.30'
82
+ version: 0.40.0
105
83
  - !ruby/object:Gem::Dependency
106
84
  name: rspec
107
85
  requirement: !ruby/object:Gem::Requirement
@@ -231,7 +209,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
231
209
  requirements:
232
210
  - - ">="
233
211
  - !ruby/object:Gem::Version
234
- version: 1.9.3
212
+ version: 2.0.0
235
213
  required_rubygems_version: !ruby/object:Gem::Requirement
236
214
  requirements:
237
215
  - - ">="
@@ -239,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
239
217
  version: '0'
240
218
  requirements: []
241
219
  rubyforge_project:
242
- rubygems_version: 2.4.6
220
+ rubygems_version: 2.4.5
243
221
  signing_key:
244
222
  specification_version: 4
245
223
  summary: Sensu plugins for splunk
checksums.yaml.gz.sig DELETED
@@ -1 +0,0 @@
1
- $ʩ��<��Ch�w��g��X�i�^�m�Y��%���p��V���AK�3B��=���� J�$r� �"�0E��ڢ��qlþ���q-:���fPA�N��Rn�G�5P�j�P�RgF3��Eߵ� ���k 5lɿ+�1���H\��a��dM$�6[^��k�N��SS �\ C��eB<T�KJ��(i/�U�����`赓8p�6�N�2�so��Lq������e�~��2�PS���Z-
data.tar.gz.sig DELETED
Binary file
metadata.gz.sig DELETED
Binary file