fluent-plugin-rewrite 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/fluent-plugin-rewrite.gemspec +1 -1
- data/lib/fluent/plugin/out_rewrite.rb +2 -2
- metadata +1 -1
@@ -51,8 +51,8 @@ module Fluent
|
|
51
51
|
end
|
52
52
|
|
53
53
|
es.each do |time, record|
|
54
|
-
|
55
|
-
Engine.emit(
|
54
|
+
filtered_tag, record = rewrite(tag, record)
|
55
|
+
Engine.emit(filtered_tag, time, record) if filtered_tag && record
|
56
56
|
end
|
57
57
|
|
58
58
|
chain.next
|