flapjack 0.6.34 → 0.6.35

Sign up to get free protection for your applications and to get access to all the features.
@@ -76,11 +76,24 @@ def process_input
76
76
  begin
77
77
  while line = @fifo.gets
78
78
  skip unless line
79
- object_type, timestamp, entity, check, state, check_time, check_latency, check_output, check_perfdata = line.split("\t")
79
+ split_line = line.split("\t")
80
+
81
+ object_type, timestamp, entity, check, state, check_time, check_latency, check_output, check_perfdata = split_line
82
+
83
+ case
84
+ when split_line.length != 9
85
+ puts "ERROR - rejecting this line as it doesn't split into 9 tab separated strings: [#{line}]"
86
+ next
87
+ when (timestamp !~ /^\d+$/)
88
+ puts "ERROR - rejecting this line as second string doesn't look like a timestamp: [#{line}]"
89
+ next
90
+ when (not ((object_type == '[HOSTPERFDATA]') or (object_type == '[SERVICEPERFDATA]')))
91
+ puts "ERROR - rejecting this line as first string is neither '[HOSTPERFDATA]' nor '[SERVICEPERFDATA]': [#{line}]"
92
+ next
93
+ end
94
+
80
95
  puts "#{object_type}, #{timestamp}, #{entity}, #{check}, #{state}, #{check_output}"
81
- next unless line.length == 9
82
- next unless timestamp =~ /^\d+$/
83
- next unless (object_type == '[HOSTPERFDATA]') or (object_type == '[SERVICEPERFDATA]')
96
+
84
97
  state = 'ok' if state.downcase == 'up'
85
98
  state = 'critical' if state.downcase == 'down'
86
99
  event = {
@@ -95,15 +108,13 @@ def process_input
95
108
  end
96
109
  rescue Redis::CannotConnectError
97
110
  puts "Error, unable to to connect to the redis server (#{$!})"
98
- rescue EOFError
99
- puts "Error - end of file reached when reading from the named pipe. Nagios down?"
100
- sleep 10
101
111
  end
102
112
  end
103
113
 
104
114
  def main
105
115
  while true
106
116
  process_input
117
+ puts "Whoops, restarting main loop in 10 seconds"
107
118
  sleep 10
108
119
  end
109
120
  end
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  module Flapjack
4
- VERSION = "0.6.34"
4
+ VERSION = "0.6.35"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flapjack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.34
4
+ version: 0.6.35
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: