sensu 0.17.0.beta → 0.17.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/bin/sensu-api +4 -4
- data/bin/sensu-client +4 -4
- data/bin/sensu-server +4 -4
- data/lib/sensu/api/process.rb +704 -0
- data/lib/sensu/cli.rb +21 -15
- data/lib/sensu/client/process.rb +414 -0
- data/lib/sensu/client/socket.rb +226 -0
- data/lib/sensu/constants.rb +4 -1
- data/lib/sensu/daemon.rb +125 -73
- data/lib/sensu/redis.rb +10 -5
- data/lib/sensu/server/filter.rb +309 -0
- data/lib/sensu/server/handle.rb +168 -0
- data/lib/sensu/server/mutate.rb +92 -0
- data/lib/sensu/server/process.rb +811 -0
- data/lib/sensu/server/sandbox.rb +21 -0
- data/lib/sensu/server/socket.rb +42 -0
- data/lib/sensu/utilities.rb +29 -3
- data/sensu.gemspec +29 -28
- metadata +30 -12
- data/lib/sensu/api.rb +0 -704
- data/lib/sensu/client.rb +0 -298
- data/lib/sensu/sandbox.rb +0 -11
- data/lib/sensu/server.rb +0 -772
- data/lib/sensu/socket.rb +0 -246
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23b2db451f31f89aba603541b9d4154bb2cf5ac9
|
4
|
+
data.tar.gz: 7919b87e10f33dd688538f03ac2f02031c4f88c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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__) +
|
4
|
-
$: << File.dirname(__FILE__) +
|
3
|
+
unless $:.include?(File.dirname(__FILE__) + "/../lib/")
|
4
|
+
$: << File.dirname(__FILE__) + "/../lib"
|
5
5
|
end
|
6
6
|
|
7
|
-
require
|
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__) +
|
4
|
-
$: << File.dirname(__FILE__) +
|
3
|
+
unless $:.include?(File.dirname(__FILE__) + "/../lib/")
|
4
|
+
$: << File.dirname(__FILE__) + "/../lib"
|
5
5
|
end
|
6
6
|
|
7
|
-
require
|
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__) +
|
4
|
-
$: << File.dirname(__FILE__) +
|
3
|
+
unless $:.include?(File.dirname(__FILE__) + "/../lib/")
|
4
|
+
$: << File.dirname(__FILE__) + "/../lib"
|
5
5
|
end
|
6
6
|
|
7
|
-
require
|
7
|
+
require "sensu/server/process"
|
8
8
|
|
9
9
|
options = Sensu::CLI.read
|
10
|
-
Sensu::Server.run(options)
|
10
|
+
Sensu::Server::Process.run(options)
|