sensu-plugins-habitat 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 78f83a717bdfd6489442ff6b8ecf5a9827bf75790418bb89cc9dfad4f1e6ebe8
4
- data.tar.gz: 4e18e2eade59f650897c2866f68ce96ba9570ad88ff59e4c60dfdc1005242479
3
+ metadata.gz: 0d30325166f6b0fcfc2e4c6ff117bb5db68fc073c3d085e21fc9b65b21b45d8c
4
+ data.tar.gz: e06effe791a10af07a3d4257db53b788fa9781369d03b42c4751a11fbdc2281b
5
5
  SHA512:
6
- metadata.gz: 5ff0ad6acbe87ef80973d755a723e08a1f09b57277b29bcf3bd68dda9fa6c93b354b039a4cf37b0909f12e2976bb4dea93b581f541434dde14bec5e85ed78cbb
7
- data.tar.gz: 58e24650b0639c26b9f4bf0819d821547b027d3ad301d532a1178f72c9ee34a5297e403dac55587206ab8b0b257cc22deaa103b25102e7e426fa9bb815bce701
6
+ metadata.gz: 1faacd83a4ec77dfa3cbf93dd7e4c36ab33b30607c92118242b431128b124146ba9405ab7eaba8f65f79ca5b3175f316f7582f89a7185edd4258f21277721c94
7
+ data.tar.gz: 3f55ef9ac37faeae83a94bcb79c6124d580c0043ec189032cb3e49eb8766188e3bc480ed226e310d27f7c5014f412967dfb9bb899c9c7dc9dd78ee47f1f4c4e0
data/CHANGELOG.md CHANGED
@@ -4,8 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
5
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
6
6
 
7
+ ## [0.1.1] - 2019-02-06
8
+ ### Changed
9
+ - Update the Slack notification in the CI config
10
+ - Update gem dependency pins
11
+
7
12
  ## [0.1.0] - 2017-10-09
8
13
  ### Added
9
14
  - Initial release
10
15
 
16
+ [0.1.1]: https://github.com/socrata-platform/sensu-plugins-habitat/compare/v0.1.0...v0.1.1
11
17
  [0.1.0]: https://github.com/socrata-platform/sensu-plugins-habitat/tree/v0.1.0
data/README.md CHANGED
@@ -20,7 +20,7 @@ This gem includes a plugin for monitoring Habitat services' health check statuse
20
20
 
21
21
  ***check-habitat-service-health.rb***
22
22
 
23
- With only default options, the `check-habitat-service-health.rb` script assumes a Habitat supervisor on `127.0.0.1:9631`, iterates over all services running under that supervisor, and returns a CRITICAL result for any services with a failing health check.
23
+ With only default options, the `check-habitat-service-health.rb` script assumes a Habitat supervisor on `127.0.0.1:9631`, iterates over all services running under that supervisor, and aggregates their health check statuses. The final overall status of the check is whatever the most serious status is of any one service, e.g. if 4/5 services are OK and one is in WARNING, the check result will be a WARNING.
24
24
 
25
25
  ```shell
26
26
  check-habitat-service-health.rb
@@ -47,6 +47,8 @@ To check only a particular set of services running under the Habitat supervisor:
47
47
  > check-habitat-service-health.rb --services service1.default,service2.default
48
48
  ```
49
49
 
50
+ In this case, any service that is specified and not running will be counted as a CRITICAL.
51
+
50
52
  ## Installation
51
53
 
52
54
  [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
@@ -8,7 +8,7 @@ module SensuPluginsHabitat
8
8
  # The minor version.
9
9
  MINOR = 1
10
10
  # The patch version.
11
- PATCH = 0
11
+ PATCH = 1
12
12
  # Concat them into a version string
13
13
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
14
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-habitat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyler Technologies
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-09 00:00:00.000000000 Z
11
+ date: 2019-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '1.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '3.0'
22
+ version: '4.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,35 +29,35 @@ dependencies:
29
29
  version: '1.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '3.0'
32
+ version: '4.0'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.16'
39
+ version: '2.0'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.16'
46
+ version: '2.0'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: github-markup
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '2.0'
53
+ version: '3.0'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '2.0'
60
+ version: '3.0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: pry
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -120,14 +120,14 @@ dependencies:
120
120
  requirements:
121
121
  - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: '0.59'
123
+ version: '0.63'
124
124
  type: :development
125
125
  prerelease: false
126
126
  version_requirements: !ruby/object:Gem::Requirement
127
127
  requirements:
128
128
  - - "~>"
129
129
  - !ruby/object:Gem::Version
130
- version: '0.59'
130
+ version: '0.63'
131
131
  - !ruby/object:Gem::Dependency
132
132
  name: simplecov
133
133
  requirement: !ruby/object:Gem::Requirement