sensu 0.17.0.beta → 0.17.0.beta.1

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: 353194762fe5d578ba9a0fab7a901d3d33dd2cce
4
- data.tar.gz: 5a9eeacb29a9dce4103c3847181959bb431e9cf2
3
+ metadata.gz: 23b2db451f31f89aba603541b9d4154bb2cf5ac9
4
+ data.tar.gz: 7919b87e10f33dd688538f03ac2f02031c4f88c8
5
5
  SHA512:
6
- metadata.gz: 4945f1f379551daefb88be0a0b4ede8d82719f829b414410d5e66f65f069a482d62ec7718468b98379eede3e06941a9784ae663885a68aa359d336719f7459e1
7
- data.tar.gz: 9db84ddb99d930aa80f632215616985a98f8b58a2c50078d1b4fc8896013b425329b60682759238c1b34c667d92b63f6425303a04ef6dca735bab7e5d8f8c47e
6
+ metadata.gz: cdb5f52f14d6260c3dbb60e2a8596c6cdde582f97638b87ebf02e505f2bdb36dcf1f433747ad9aec5ebc87d730459a79344adc0611eb480b891cfe2b59f01ac6
7
+ data.tar.gz: 784e7f18dd9c3ebd44926489c8d48410614aa33a422e9cf2abd0492f6b52171b9e599ffcc804e5c8c2bb7771724b69539a02e98801b8588402d28f38a939d42f
data/CHANGELOG.md CHANGED
@@ -7,7 +7,9 @@ Improved Sensu client keepalive event check output.
7
7
  Hashed initial check request/execution scheduling splay, consistent over
8
8
  process restarts/reloads.
9
9
 
10
- Sensu event ID logged for event handler output.
10
+ Handler output with multiple lines is now logged as a single log event.
11
+
12
+ Support for Sensu filter extensions.
11
13
 
12
14
  ### Other
13
15
 
@@ -15,6 +17,8 @@ Fixed TLS/SSL on Windows.
15
17
 
16
18
  Fixed event filtering with event action, eg. `"action": "create"`.
17
19
 
20
+ Restructured and documented Sensu core with YARD.
21
+
18
22
  ## 0.16.0 - 2014-10-31
19
23
 
20
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)