-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1064 from fluent/migrate-plugin-v14-copy-rr
Migrate out_copy and out_roundrobin to v0.14 API
- Loading branch information
Showing
9 changed files
with
339 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<source> | ||
@type dummy | ||
@label @test | ||
tag test.copy | ||
auto_increment_key id | ||
</source> | ||
|
||
<source> | ||
@type dummy | ||
@label @test | ||
tag test.rr | ||
auto_increment_key id | ||
</source> | ||
|
||
<label @test> | ||
<match test.copy> | ||
@type copy | ||
<store> | ||
@type stdout | ||
output_type json | ||
</store> | ||
<store> | ||
@type stdout | ||
output_type ltsv | ||
</store> | ||
</match> | ||
|
||
<match test.rr> | ||
@type roundrobin | ||
<store> | ||
@type stdout | ||
output_type json | ||
</store> | ||
<store> | ||
@type stdout | ||
output_type ltsv | ||
</store> | ||
</match> | ||
</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# | ||
# Fluentd | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
require 'fluent/test/driver/base' | ||
require 'fluent/test/driver/event_feeder' | ||
|
||
require 'fluent/plugin/multi_output' | ||
|
||
module Fluent | ||
module Test | ||
module Driver | ||
class MultiOutput < Base | ||
include EventFeeder | ||
|
||
def initialize(klass, opts: {}, &block) | ||
super | ||
raise ArgumentError, "plugin is not an instance of Fluent::Plugin::MultiOutput" unless @instance.is_a? Fluent::Plugin::MultiOutput | ||
@flush_buffer_at_cleanup = nil | ||
end | ||
|
||
def run(flush: true, **kwargs, &block) | ||
@flush_buffer_at_cleanup = flush | ||
super(**kwargs, &block) | ||
end | ||
|
||
def run_actual(**kwargs, &block) | ||
super(**kwargs, &block) | ||
if @flush_buffer_at_cleanup | ||
@instance.outputs.each{|o| o.force_flush } | ||
end | ||
end | ||
|
||
def flush | ||
@instance.outputs.each{|o| o.force_flush } | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.