Fluent::ExecFilterOutput::Formatter
# File lib/fluent/plugin/out_exec_filter.rb, line 340 def initialize(in_keys) @in_keys = in_keys super() end
# File lib/fluent/plugin/out_exec_filter.rb, line 345 def call(record, out) last = @in_keys.length-1 for i in 0..last key = @in_keys[i] out << record[key].to_s out << "\t" if i != last end out << "\n" end
[Validate]
Generated with the Darkfish Rdoc Generator 2.