Class: Sensu::Client

Inherits:
Object
  • Object
show all
Includes:
Daemon
Defined in:
lib/sensu/client.rb

Instance Attribute Summary collapse

Attributes included from Daemon

#state

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Daemon

#load_extensions, #load_settings, #log_concerns, #setup_logger, #setup_process, #setup_redis, #setup_signal_traps, #setup_transport

Methods included from Utilities

#deep_merge, #random_uuid, #redact_sensitive, #retry_until_true, #testing?

Constructor Details

#initialize(options = {}) ⇒ Client

Returns a new instance of Client.



18
19
20
21
22
# File 'lib/sensu/client.rb', line 18

def initialize(options={})
  super
  @safe_mode = @settings[:client][:safe_mode] || false
  @checks_in_progress = Array.new
end

Instance Attribute Details

#safe_modeObject

Returns the value of attribute safe_mode.



8
9
10
# File 'lib/sensu/client.rb', line 8

def safe_mode
  @safe_mode
end

Class Method Details

.run(options = {}) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/sensu/client.rb', line 10

def self.run(options={})
  client = self.new(options)
  EM::run do
    client.start
    client.setup_signal_traps
  end
end

Instance Method Details

#bootstrapObject



246
247
248
249
250
251
# File 'lib/sensu/client.rb', line 246

def bootstrap
  setup_keepalives
  setup_subscriptions
  setup_standalone
  @state = :running
end

#complete_checks_in_progress(&block) ⇒ Object



234
235
236
237
238
239
240
241
242
243
244
# File 'lib/sensu/client.rb', line 234

def complete_checks_in_progress(&block)
  @logger.info('completing checks in progress', {
    :checks_in_progress => @checks_in_progress
  })
  retry_until_true do
    if @checks_in_progress.empty?
      block.call
      true
    end
  end
end

#execute_check_command(check) ⇒ Object



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/sensu/client.rb', line 91

def execute_check_command(check)
  @logger.debug('attempting to execute check command', {
    :check => check
  })
  unless @checks_in_progress.include?(check[:name])
    @checks_in_progress << check[:name]
    command, unmatched_tokens = substitute_command_tokens(check)
    if unmatched_tokens.empty?
      check[:executed] = Time.now.to_i
      started = Time.now.to_f
      Spawn.process(command, :timeout => check[:timeout]) do |output, status|
        check[:duration] = ('%.3f' % (Time.now.to_f - started)).to_f
        check[:output] = output
        check[:status] = status
        publish_result(check)
        @checks_in_progress.delete(check[:name])
      end
    else
      check[:output] = 'Unmatched command tokens: ' + unmatched_tokens.join(', ')
      check[:status] = 3
      check[:handle] = false
      publish_result(check)
      @checks_in_progress.delete(check[:name])
    end
  else
    @logger.warn('previous check command execution in progress', {
      :check => check
    })
  end
end

#find_client_attribute(tree, path, default) ⇒ Object



69
70
71
72
73
74
75
76
# File 'lib/sensu/client.rb', line 69

def find_client_attribute(tree, path, default)
  attribute = tree[path.shift]
  if attribute.is_a?(Hash)
    find_client_attribute(attribute, path, default)
  else
    attribute.nil? ? default : attribute
  end
end

#pauseObject



259
260
261
262
263
264
265
266
267
268
269
# File 'lib/sensu/client.rb', line 259

def pause
  unless @state == :pausing || @state == :paused
    @state = :pausing
    @timers[:run].each do |timer|
      timer.cancel
    end
    @timers[:run].clear
    @transport.unsubscribe
    @state = :paused
  end
end

#process_check(check) ⇒ Object



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# File 'lib/sensu/client.rb', line 135

def process_check(check)
  @logger.debug('processing check', {
    :check => check
  })
  if check.has_key?(:command)
    if @settings.check_exists?(check[:name])
      check.merge!(@settings[:checks][check[:name]])
      execute_check_command(check)
    elsif @safe_mode
      check[:output] = 'Check is not locally defined (safe mode)'
      check[:status] = 3
      check[:handle] = false
      check[:executed] = Time.now.to_i
      publish_result(check)
    else
      execute_check_command(check)
    end
  else
    if @extensions.check_exists?(check[:name])
      run_check_extension(check)
    else
      @logger.warn('unknown check extension', {
        :check => check
      })
    end
  end
end

#publish_keepaliveObject



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/sensu/client.rb', line 24

def publish_keepalive
  keepalive = @settings[:client].merge({
    :version => VERSION,
    :timestamp => Time.now.to_i
  })
  payload = redact_sensitive(keepalive, @settings[:client][:redact])
  @logger.debug('publishing keepalive', {
    :payload => payload
  })
  @transport.publish(:direct, 'keepalives', MultiJson.dump(payload)) do |info|
    if info[:error]
      @logger.error('failed to publish keepalive', {
        :payload => payload,
        :error => info[:error].to_s
      })
    end
  end
end

#publish_result(check) ⇒ Object



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/sensu/client.rb', line 51

def publish_result(check)
  payload = {
    :client => @settings[:client][:name],
    :check => check
  }
  @logger.info('publishing check result', {
    :payload => payload
  })
  @transport.publish(:direct, 'results', MultiJson.dump(payload)) do |info|
    if info[:error]
      @logger.error('failed to publish check result', {
        :payload => payload,
        :error => info[:error].to_s
      })
    end
  end
end

#resumeObject



271
272
273
274
275
276
277
278
279
280
# File 'lib/sensu/client.rb', line 271

def resume
  retry_until_true(1) do
    if @state == :paused
      if @transport.connected?
        bootstrap
        true
      end
    end
  end
end

#run_check_extension(check) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/sensu/client.rb', line 122

def run_check_extension(check)
  @logger.debug('attempting to run check extension', {
    :check => check
  })
  check[:executed] = Time.now.to_i
  extension = @extensions[:checks][check[:name]]
  extension.safe_run do |output, status|
    check[:output] = output
    check[:status] = status
    publish_result(check)
  end
end

#schedule_checks(checks) ⇒ Object



187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/sensu/client.rb', line 187

def schedule_checks(checks)
  check_count = 0
  stagger = testing? ? 0 : 2
  checks.each do |check|
    check_count += 1
    scheduling_delay = stagger * check_count % 30
    @timers[:run] << EM::Timer.new(scheduling_delay) do
      interval = testing? ? 0.5 : check[:interval]
      @timers[:run] << EM::PeriodicTimer.new(interval) do
        check[:issued] = Time.now.to_i
        process_check(check.dup)
      end
    end
  end
end

#setup_keepalivesObject



43
44
45
46
47
48
49
# File 'lib/sensu/client.rb', line 43

def setup_keepalives
  @logger.debug('scheduling keepalives')
  publish_keepalive
  @timers[:run] << EM::PeriodicTimer.new(20) do
    publish_keepalive
  end
end

#setup_socketsObject



214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# File 'lib/sensu/client.rb', line 214

def setup_sockets
  options = @settings[:client][:socket] || Hash.new
  options[:bind] ||= '127.0.0.1'
  options[:port] ||= 3030
  @logger.debug('binding client tcp and udp sockets', {
    :options => options
  })
  EM::start_server(options[:bind], options[:port], Socket) do |socket|
    socket.logger = @logger
    socket.settings = @settings
    socket.transport = @transport
  end
  EM::open_datagram_socket(options[:bind], options[:port], Socket) do |socket|
    socket.logger = @logger
    socket.settings = @settings
    socket.transport = @transport
    socket.protocol = :udp
  end
end

#setup_standaloneObject



203
204
205
206
207
208
209
210
211
212
# File 'lib/sensu/client.rb', line 203

def setup_standalone
  @logger.debug('scheduling standalone checks')
  standard_checks = @settings.checks.select do |check|
    check[:standalone]
  end
  extension_checks = @extensions.checks.select do |check|
    check[:standalone] && check[:interval].is_a?(Integer)
  end
  schedule_checks(standard_checks + extension_checks)
end

#setup_subscriptionsObject



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# File 'lib/sensu/client.rb', line 163

def setup_subscriptions
  @logger.debug('subscribing to client subscriptions')
  @settings[:client][:subscriptions].each do |subscription|
    @logger.debug('subscribing to a subscription', {
      :subscription => subscription
    })
    funnel = [@settings[:client][:name], VERSION, Time.now.to_i].join('-')
    @transport.subscribe(:fanout, subscription, funnel) do |message_info, message|
      begin
        check = MultiJson.load(message)
        @logger.info('received check request', {
          :check => check
        })
        process_check(check)
      rescue MultiJson::ParseError => error
        @logger.error('failed to parse the check request payload', {
          :message => message,
          :error => error.to_s
        })
      end
    end
  end
end

#startObject



253
254
255
256
257
# File 'lib/sensu/client.rb', line 253

def start
  setup_transport
  setup_sockets
  bootstrap
end

#stopObject



282
283
284
285
286
287
288
289
290
# File 'lib/sensu/client.rb', line 282

def stop
  @logger.warn('stopping')
  pause
  @state = :stopping
  complete_checks_in_progress do
    @transport.close
    super
  end
end

#substitute_command_tokens(check) ⇒ Object



78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/sensu/client.rb', line 78

def substitute_command_tokens(check)
  unmatched_tokens = Array.new
  substituted = check[:command].gsub(/:::([^:].*?):::/) do
    token, default = $1.to_s.split('|', -1)
    matched = find_client_attribute(@settings[:client], token.split('.'), default)
    if matched.nil?
      unmatched_tokens << token
    end
    matched
  end
  [substituted, unmatched_tokens]
end