sensu 0.16.0-java → 0.17.0.beta.1-java

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: ec2f7fc17ae3213e9c690db8394434ae1df14d6f
4
- data.tar.gz: 8e8ee001116d2e4632cfd4020cd6f809f2fa0e83
3
+ metadata.gz: 527ae4bad6db09b92d1bcdf168319b8de1e219d5
4
+ data.tar.gz: 8907b3f93f547df6a0181534c66b4a6f5549ad4f
5
5
  SHA512:
6
- metadata.gz: 93a57b261b0ddea20d4c384a026a545b069c7d21aca8f097f9bb620cef33cdfdb4a530a14483014d79a7585559a706fa41543d0baa80b5c7fb26fd4805c8439d
7
- data.tar.gz: 04a0cc7b28797d65a44a9a57bc01b0696ae408a35ebe8fe8a6b955b31bee5834fc9fc5ced1d3785f3b73e7b1725f5a36e04a1a5846a10aeeebb9a34a1adfdcf2
6
+ metadata.gz: 9ec6b9aa193780c2a4e3019c1b7c811c6af167e93f44bb7c8cf61af7a4c19fa7af5cc4b9d95605d485e065c4f2fc15ac21811842ef92d1fd3cdcd3baeb7dee17
7
+ data.tar.gz: cf39bb13d3018b360a5032a59364f8225157c2119765cc00cfc725ba9b6f8ed2fd5a032c65655fb813ca792f54f09a92aa7cd7c2b09dc8fcbf3cae439bd291e6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## 0.17.0 - TBD
2
+
3
+ ### Features
4
+
5
+ Improved Sensu client keepalive event check output.
6
+
7
+ Hashed initial check request/execution scheduling splay, consistent over
8
+ process restarts/reloads.
9
+
10
+ Handler output with multiple lines is now logged as a single log event.
11
+
12
+ Support for Sensu filter extensions.
13
+
14
+ ### Other
15
+
16
+ Fixed TLS/SSL on Windows.
17
+
18
+ Fixed event filtering with event action, eg. `"action": "create"`.
19
+
20
+ Restructured and documented Sensu core with YARD.
21
+
1
22
  ## 0.16.0 - 2014-10-31
2
23
 
3
24
  ### Other
data/bin/sensu-api CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- unless $:.include?(File.dirname(__FILE__) + '/../lib/')
4
- $: << File.dirname(__FILE__) + '/../lib'
3
+ unless $:.include?(File.dirname(__FILE__) + "/../lib/")
4
+ $: << File.dirname(__FILE__) + "/../lib"
5
5
  end
6
6
 
7
- require 'sensu/api'
7
+ require "sensu/api/process"
8
8
 
9
9
  options = Sensu::CLI.read
10
- Sensu::API.run(options)
10
+ Sensu::API::Process.run(options)
data/bin/sensu-client CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- unless $:.include?(File.dirname(__FILE__) + '/../lib/')
4
- $: << File.dirname(__FILE__) + '/../lib'
3
+ unless $:.include?(File.dirname(__FILE__) + "/../lib/")
4
+ $: << File.dirname(__FILE__) + "/../lib"
5
5
  end
6
6
 
7
- require 'sensu/client'
7
+ require "sensu/client/process"
8
8
 
9
9
  options = Sensu::CLI.read
10
- Sensu::Client.run(options)
10
+ Sensu::Client::Process.run(options)
data/bin/sensu-server CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- unless $:.include?(File.dirname(__FILE__) + '/../lib/')
4
- $: << File.dirname(__FILE__) + '/../lib'
3
+ unless $:.include?(File.dirname(__FILE__) + "/../lib/")
4
+ $: << File.dirname(__FILE__) + "/../lib"
5
5
  end
6
6
 
7
- require 'sensu/server'
7
+ require "sensu/server/process"
8
8
 
9
9
  options = Sensu::CLI.read
10
- Sensu::Server.run(options)
10
+ Sensu::Server::Process.run(options)