Class: Fluent::ExecFilterOutput
- Inherits:
-
BufferedOutput
- Object
- Fluent::ExecFilterOutput
- Defined in:
- lib/fluent/plugin/out_exec_filter.rb
Defined Under Namespace
Classes: ChildProcess
Instance Method Summary collapse
- #before_shutdown ⇒ Object
- #configure(conf) ⇒ Object
- #format_stream(tag, es) ⇒ Object
-
#initialize ⇒ ExecFilterOutput
constructor
A new instance of ExecFilterOutput.
- #on_message(record) ⇒ Object
- #shutdown ⇒ Object
- #start ⇒ Object
- #write(chunk) ⇒ Object
Constructor Details
#initialize ⇒ ExecFilterOutput
Returns a new instance of ExecFilterOutput.
30 31 32 33 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 30 def initialize super require 'fluent/timezone' end |
Instance Method Details
#before_shutdown ⇒ Object
222 223 224 225 226 227 228 229 230 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 222 def before_shutdown log.debug "out_exec_filter#before_shutdown called" @children.each {|c| c.finished = true } sleep 0.5 # TODO wait time before killing child process super end |
#configure(conf) ⇒ Object
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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 96 def configure(conf) if tag_key = conf['tag_key'] # TODO obsoleted? @in_tag_key = tag_key @out_tag_key = tag_key end if time_key = conf['time_key'] # TODO obsoleted? @in_time_key = time_key @out_time_key = time_key end if time_format = conf['time_format'] # TODO obsoleted? @in_time_format = time_format @out_time_format = time_format end super if conf['localtime'] @localtime = true elsif conf['utc'] @localtime = false end if conf['timezone'] @timezone = conf['timezone'] Fluent::Timezone.validate!(@timezone) end if !@tag && !@out_tag_key raise ConfigError, "'tag' or 'out_tag_key' option is required on exec_filter output" end if @in_time_key if f = @in_time_format tf = TimeFormatter.new(f, @localtime, @timezone) @time_format_proc = tf.method(:format) else @time_format_proc = Proc.new {|time| time.to_s } end elsif @in_time_format log.warn "in_time_format effects nothing when in_time_key is not specified: #{conf}" end if @out_time_key if f = @out_time_format @time_parse_proc = begin strptime = Strptime.new(f) Proc.new { |str| Fluent::EventTime.from_time(strptime.exec(str)) } rescue Proc.new {|str| Fluent::EventTime.from_time(Time.strptime(str, f)) } end else @time_parse_proc = Proc.new {|str| Fluent::EventTime.from_time(Time.at(str.to_f)) } end elsif @out_time_format log.warn "out_time_format effects nothing when out_time_key is not specified: #{conf}" end if @remove_prefix @removed_prefix_string = @remove_prefix + '.' @removed_length = @removed_prefix_string.length end if @add_prefix @added_prefix_string = @add_prefix + '.' end case @in_format when :tsv if @in_keys.empty? raise ConfigError, "in_keys option is required on exec_filter output for tsv in_format" end @formatter = Fluent::ExecUtil::TSVFormatter.new(@in_keys) when :json @formatter = Fluent::ExecUtil::JSONFormatter.new when :msgpack @formatter = Fluent::ExecUtil::MessagePackFormatter.new end case @out_format when :tsv if @out_keys.empty? raise ConfigError, "out_keys option is required on exec_filter output for tsv in_format" end @parser = Fluent::ExecUtil::TSVParser.new(@out_keys, method(:on_message)) when :json @parser = Fluent::ExecUtil::JSONParser.new(method(:on_message)) when :msgpack @parser = Fluent::ExecUtil::MessagePackParser.new(method(:on_message)) end @respawns = if @child_respawn.nil? or @child_respawn == 'none' or @child_respawn == '0' 0 elsif @child_respawn == 'inf' or @child_respawn == '-1' -1 elsif @child_respawn =~ /^\d+$/ @child_respawn.to_i else raise ConfigError, "child_respawn option argument invalid: none(or 0), inf(or -1) or positive number" end @suppress_error_log_interval ||= 0 @next_log_time = Time.now.to_i end |
#format_stream(tag, es) ⇒ Object
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 241 def format_stream(tag, es) if @remove_prefix if (tag[0, @removed_length] == @removed_prefix_string and tag.length > @removed_length) or tag == @removed_prefix tag = tag[@removed_length..-1] || '' end end out = '' es.each {|time,record| if @in_time_key record[@in_time_key] = @time_format_proc.call(time) end if @in_tag_key record[@in_tag_key] = tag end @formatter.call(record, out) } out end |
#on_message(record) ⇒ Object
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 367 def (record) if val = record.delete(@out_time_key) time = @time_parse_proc.call(val) else time = Engine.now end if val = record.delete(@out_tag_key) tag = if @add_prefix @added_prefix_string + val else val end else tag = @tag end router.emit(tag, time, record) rescue if @suppress_error_log_interval == 0 || Time.now.to_i > @next_log_time log.error "exec_filter failed to emit", error: $!, record: Yajl.dump(record) log.warn_backtrace $!.backtrace @next_log_time = Time.now.to_i + @suppress_error_log_interval end end |
#shutdown ⇒ Object
232 233 234 235 236 237 238 239 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 232 def shutdown @children.reject! {|c| c.shutdown true } super end |
#start ⇒ Object
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 205 def start super @children = [] @rr = 0 begin @num_children.times do c = ChildProcess.new(@parser, @respawns, log) c.start(@command) @children << c end rescue shutdown raise end end |
#write(chunk) ⇒ Object
263 264 265 266 |
# File 'lib/fluent/plugin/out_exec_filter.rb', line 263 def write(chunk) r = @rr = (@rr + 1) % @children.length @children[r].write chunk end |