sensu 0.27.0.beta.2 → 0.27.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -31
  3. data/lib/sensu/constants.rb +1 -1
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83adf4109f3c09848030c0d401a88af20b4cf4da
4
- data.tar.gz: 97a18a533fe9212911742f6617c3c6ae3f755ffe
3
+ metadata.gz: 7f4831b939bf3b0839d0a4a845fc6320da96e0cd
4
+ data.tar.gz: 87752deeb5355081b21c97a50ac6a22f219aaa9b
5
5
  SHA512:
6
- metadata.gz: 4324f8aa16375f7e0fdc2547bb009ae407bc56d55b322ce323a6bdb0335c40dc6a67f2d866e0e21c607e9d5b72d3042ceeab36132b74d77bd11afb8da18014bc
7
- data.tar.gz: f30211389bb9c6a68b021f41bcbff6c9c1e8ed956b1db546e9e42de307513ffe4828473ad92cc446faefd0ab5e0a7dcdcd9d3d4a4b48fc4f763c39f5f45c5c9e
6
+ metadata.gz: 1359a4962efd532af46b7596e2f04bc067ef82cd80a99ce145cc75a7129f469d683051d58ee0591b1d37b294762648e97c0f87aa519a2525f34bbcf930baa4af
7
+ data.tar.gz: c75815d4ee1a51ddb04edf182cfa916b101b0592d004528e869fc1a189e40bf9d32683d830263664e43878c5b0a228d8ec9c1a31959f39c89846c4b287401b81
data/CHANGELOG.md CHANGED
@@ -1,40 +1,17 @@
1
- ## 0.27.0 - TBD
2
-
3
- ### Non-backwards compatible changes
4
-
5
- Sensu packages no longer include the embedded runit service supervisor.
6
-
7
- Sensu packages no longer include example service scripts for the Upstart
8
- service supervisor.
1
+ ## 0.27.0 - 2017-01-26
9
2
 
10
3
  ### Features
11
4
 
12
- Sensu packages are now built using Chef's Omnibus toolchain. As a result,
13
- the sensu-build tooling is now deprecated in favor of the sensu-omnibus
14
- project.
15
-
16
- Sensu packages built with the new sensu-omnibus toolchain will attempt to
17
- install sysv init scripts or systemd unit files, depending on the
18
- detected environment:
19
-
20
- * If sysv init or upstart is the running init process, sysv init scripts
21
- will be installed in /etc/init.d.
22
- * If sysv scripts are present, the package will update them to their
23
- latest version, even if systemd is the running init process.
24
- * If no sysv scripts are present and systemd is the running init,
25
- systemd unit files will be installed in /usr/lib/systemd/system
26
-
27
- Sensu client now supports an HTTP socket for check result input and
28
- informational queries. The client HTTP socket listens on port 3031 by
29
- default, providing `/info`, `/results`, and `/settings` endpoints.
30
- Basic authentication is supported, and is required for certain endpoints,
31
- i.e. `/settings`. The client HTTP socket is configurable via the Sensu
32
- client definition, `"http_socket": {}`.
5
+ Sensu client HTTP socket for check result input and informational queries.
6
+ The client HTTP socket provides several endpoints, `/info`, `/results`,
7
+ and `/settings`. Basic authentication is supported, which is required for
8
+ certain endpoints, i.e. `/settings`. The client HTTP socket is
9
+ configurable via the Sensu client definition, `"http_socket": {}`.
33
10
 
34
11
  Hostnames are now resolved prior to making connection attempts, this
35
12
  applies to the Sensu Transport (i.e. RabbitMQ) and Redis connections. This
36
- allows Sensu to better handle resolution failures and DNS failover
37
- mechanisms used by services like AWS ElastiCache.
13
+ allows Sensu to handle resolution failures and enables failover via DNS
14
+ and services like Amazon AWS ElastiCache.
38
15
 
39
16
  Added API endpoint `/silenced/ids/:id` for fetching a silence entry by id.
40
17
 
@@ -56,6 +33,15 @@ versions except the latest will be removed.
56
33
 
57
34
  Added the filter name to event filtered log events.
58
35
 
36
+ Check TTL events now have the check interval overridden to the TTL
37
+ monitoring interval, this change allows event occurrence filtering to
38
+ work as expected.
39
+
40
+ ### Fixes
41
+
42
+ Silenced resolution events with silencing `"expire_on_resolve": true` are
43
+ now handled.
44
+
59
45
  ## 0.26.5 - 2016-10-12
60
46
 
61
47
  ### Fixes
@@ -1,7 +1,7 @@
1
1
  module Sensu
2
2
  unless defined?(Sensu::VERSION)
3
3
  # Sensu release version.
4
- VERSION = "0.27.0.beta.2".freeze
4
+ VERSION = "0.27.0".freeze
5
5
 
6
6
  # Sensu check severities.
7
7
  SEVERITIES = %w[ok warning critical unknown].freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0.beta.2
4
+ version: 0.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Porter
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2016-12-15 00:00:00.000000000 Z
12
+ date: 2017-01-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: eventmachine
@@ -277,12 +277,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
277
277
  version: '0'
278
278
  required_rubygems_version: !ruby/object:Gem::Requirement
279
279
  requirements:
280
- - - ">"
280
+ - - ">="
281
281
  - !ruby/object:Gem::Version
282
- version: 1.3.1
282
+ version: '0'
283
283
  requirements: []
284
284
  rubyforge_project:
285
- rubygems_version: 2.6.6
285
+ rubygems_version: 2.6.3
286
286
  signing_key:
287
287
  specification_version: 4
288
288
  summary: A monitoring framework