sensu-settings 9.1.2 → 9.2.0
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 +4 -4
- data/lib/sensu/settings/loader.rb +2 -2
- data/sensu-settings.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1b81eae55c8690a5b2ac6e492b2e5bdc1e1dea5
|
4
|
+
data.tar.gz: 7703b6e12854c67d93535693003696529694d95a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b6df1b910f9f61a7ba0f97cd4cbe7ae87e38421af01d709c5e7ea7cec781e93028d5ef3074288913932bcb4840a38b1061d54104f8232f4d7b101c4ab992799
|
7
|
+
data.tar.gz: f46512869ee3898cbf1b4a816c3d0c12f6a6d67ed6b752e005569d104688a4a66da26f18d51fc3891e3eb1c9ee5205a94f508e2fd231d3eaa8a3bec5f49ada34
|
@@ -51,6 +51,7 @@ module Sensu
|
|
51
51
|
# @return [Hash] settings.
|
52
52
|
def default_settings
|
53
53
|
default = {
|
54
|
+
:client => {},
|
54
55
|
:sensu => {
|
55
56
|
:spawn => {
|
56
57
|
:limit => 12
|
@@ -174,7 +175,6 @@ module Sensu
|
|
174
175
|
# * Ensuring client subscriptions include a single subscription based on the
|
175
176
|
# client name, e.g "client:i-424242".
|
176
177
|
def load_client_overrides
|
177
|
-
@settings[:client] ||= {}
|
178
178
|
@settings[:client][:subscriptions] ||= []
|
179
179
|
@settings[:client][:subscriptions] << "client:#{@settings[:client][:name]}"
|
180
180
|
@settings[:client][:subscriptions].uniq!
|
@@ -310,7 +310,7 @@ module Sensu
|
|
310
310
|
def load_client_env
|
311
311
|
@settings[:client][:name] = ENV["SENSU_CLIENT_NAME"] if ENV["SENSU_CLIENT_NAME"]
|
312
312
|
@settings[:client][:address] = ENV["SENSU_CLIENT_ADDRESS"] if ENV["SENSU_CLIENT_ADDRESS"]
|
313
|
-
@settings[:client][:subscriptions] = ENV
|
313
|
+
@settings[:client][:subscriptions] = ENV["SENSU_CLIENT_SUBSCRIPTIONS"].split(",") if ENV["SENSU_CLIENT_SUBSCRIPTIONS"]
|
314
314
|
if ENV.keys.any? {|k| k =~ /^SENSU_CLIENT/}
|
315
315
|
warning("using sensu client environment variables", :client => @settings[:client])
|
316
316
|
end
|
data/sensu-settings.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sensu-settings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.
|
4
|
+
version: 9.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sean Porter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sensu-json
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
128
|
rubyforge_project:
|
129
|
-
rubygems_version: 2.6.
|
129
|
+
rubygems_version: 2.6.6
|
130
130
|
signing_key:
|
131
131
|
specification_version: 4
|
132
132
|
summary: The Sensu settings library, loader and validator
|