fluentd 0.14.4-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fluentd might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.github/ISSUE_TEMPLATE.md +6 -0
- data/.gitignore +26 -0
- data/.travis.yml +45 -0
- data/AUTHORS +2 -0
- data/CONTRIBUTING.md +35 -0
- data/COPYING +14 -0
- data/ChangeLog +276 -0
- data/Gemfile +9 -0
- data/README.md +51 -0
- data/Rakefile +53 -0
- data/Vagrantfile +17 -0
- data/appveyor.yml +41 -0
- data/bin/fluent-debug +5 -0
- data/example/copy_roundrobin.conf +39 -0
- data/example/filter_stdout.conf +22 -0
- data/example/in_forward.conf +11 -0
- data/example/in_http.conf +14 -0
- data/example/in_out_forward.conf +17 -0
- data/example/in_syslog.conf +15 -0
- data/example/in_tail.conf +14 -0
- data/example/in_tcp.conf +13 -0
- data/example/in_udp.conf +13 -0
- data/example/multi_filters.conf +61 -0
- data/example/out_buffered_null.conf +32 -0
- data/example/out_copy.conf +20 -0
- data/example/out_file.conf +13 -0
- data/example/out_forward.conf +35 -0
- data/example/out_forward_buf_file.conf +23 -0
- data/example/v0_12_filter.conf +78 -0
- data/example/v1_literal_example.conf +36 -0
- data/fluent.conf +139 -0
- data/fluentd.gemspec +51 -0
- data/lib/fluent/agent.rb +194 -0
- data/lib/fluent/command/bundler_injection.rb +45 -0
- data/lib/fluent/command/cat.rb +319 -0
- data/lib/fluent/command/debug.rb +102 -0
- data/lib/fluent/command/fluentd.rb +273 -0
- data/lib/fluent/compat/call_super_mixin.rb +67 -0
- data/lib/fluent/compat/exec_util.rb +129 -0
- data/lib/fluent/compat/file_util.rb +54 -0
- data/lib/fluent/compat/filter.rb +68 -0
- data/lib/fluent/compat/formatter.rb +111 -0
- data/lib/fluent/compat/formatter_utils.rb +85 -0
- data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
- data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
- data/lib/fluent/compat/input.rb +49 -0
- data/lib/fluent/compat/output.rb +677 -0
- data/lib/fluent/compat/output_chain.rb +60 -0
- data/lib/fluent/compat/parser.rb +180 -0
- data/lib/fluent/compat/parser_utils.rb +40 -0
- data/lib/fluent/compat/propagate_default.rb +62 -0
- data/lib/fluent/compat/record_filter_mixin.rb +34 -0
- data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
- data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
- data/lib/fluent/compat/socket_util.rb +165 -0
- data/lib/fluent/compat/string_util.rb +34 -0
- data/lib/fluent/compat/structured_format_mixin.rb +26 -0
- data/lib/fluent/compat/type_converter.rb +90 -0
- data/lib/fluent/config.rb +56 -0
- data/lib/fluent/config/basic_parser.rb +123 -0
- data/lib/fluent/config/configure_proxy.rb +366 -0
- data/lib/fluent/config/dsl.rb +149 -0
- data/lib/fluent/config/element.rb +218 -0
- data/lib/fluent/config/error.rb +26 -0
- data/lib/fluent/config/literal_parser.rb +251 -0
- data/lib/fluent/config/parser.rb +107 -0
- data/lib/fluent/config/section.rb +212 -0
- data/lib/fluent/config/types.rb +136 -0
- data/lib/fluent/config/v1_parser.rb +190 -0
- data/lib/fluent/configurable.rb +176 -0
- data/lib/fluent/daemon.rb +15 -0
- data/lib/fluent/engine.rb +220 -0
- data/lib/fluent/env.rb +27 -0
- data/lib/fluent/event.rb +287 -0
- data/lib/fluent/event_router.rb +259 -0
- data/lib/fluent/filter.rb +21 -0
- data/lib/fluent/formatter.rb +23 -0
- data/lib/fluent/input.rb +21 -0
- data/lib/fluent/label.rb +38 -0
- data/lib/fluent/load.rb +36 -0
- data/lib/fluent/log.rb +445 -0
- data/lib/fluent/match.rb +141 -0
- data/lib/fluent/mixin.rb +31 -0
- data/lib/fluent/msgpack_factory.rb +62 -0
- data/lib/fluent/output.rb +26 -0
- data/lib/fluent/output_chain.rb +23 -0
- data/lib/fluent/parser.rb +23 -0
- data/lib/fluent/plugin.rb +161 -0
- data/lib/fluent/plugin/bare_output.rb +63 -0
- data/lib/fluent/plugin/base.rb +130 -0
- data/lib/fluent/plugin/buf_file.rb +154 -0
- data/lib/fluent/plugin/buf_memory.rb +34 -0
- data/lib/fluent/plugin/buffer.rb +603 -0
- data/lib/fluent/plugin/buffer/chunk.rb +160 -0
- data/lib/fluent/plugin/buffer/file_chunk.rb +323 -0
- data/lib/fluent/plugin/buffer/memory_chunk.rb +90 -0
- data/lib/fluent/plugin/exec_util.rb +22 -0
- data/lib/fluent/plugin/file_util.rb +22 -0
- data/lib/fluent/plugin/file_wrapper.rb +120 -0
- data/lib/fluent/plugin/filter.rb +93 -0
- data/lib/fluent/plugin/filter_grep.rb +75 -0
- data/lib/fluent/plugin/filter_record_transformer.rb +342 -0
- data/lib/fluent/plugin/filter_stdout.rb +53 -0
- data/lib/fluent/plugin/formatter.rb +45 -0
- data/lib/fluent/plugin/formatter_csv.rb +47 -0
- data/lib/fluent/plugin/formatter_hash.rb +29 -0
- data/lib/fluent/plugin/formatter_json.rb +44 -0
- data/lib/fluent/plugin/formatter_ltsv.rb +41 -0
- data/lib/fluent/plugin/formatter_msgpack.rb +29 -0
- data/lib/fluent/plugin/formatter_out_file.rb +78 -0
- data/lib/fluent/plugin/formatter_single_value.rb +34 -0
- data/lib/fluent/plugin/formatter_stdout.rb +74 -0
- data/lib/fluent/plugin/in_debug_agent.rb +64 -0
- data/lib/fluent/plugin/in_dummy.rb +135 -0
- data/lib/fluent/plugin/in_exec.rb +149 -0
- data/lib/fluent/plugin/in_forward.rb +366 -0
- data/lib/fluent/plugin/in_gc_stat.rb +52 -0
- data/lib/fluent/plugin/in_http.rb +422 -0
- data/lib/fluent/plugin/in_monitor_agent.rb +401 -0
- data/lib/fluent/plugin/in_object_space.rb +90 -0
- data/lib/fluent/plugin/in_syslog.rb +204 -0
- data/lib/fluent/plugin/in_tail.rb +838 -0
- data/lib/fluent/plugin/in_tcp.rb +41 -0
- data/lib/fluent/plugin/in_udp.rb +37 -0
- data/lib/fluent/plugin/in_unix.rb +201 -0
- data/lib/fluent/plugin/input.rb +33 -0
- data/lib/fluent/plugin/multi_output.rb +95 -0
- data/lib/fluent/plugin/out_buffered_null.rb +59 -0
- data/lib/fluent/plugin/out_buffered_stdout.rb +70 -0
- data/lib/fluent/plugin/out_copy.rb +42 -0
- data/lib/fluent/plugin/out_exec.rb +114 -0
- data/lib/fluent/plugin/out_exec_filter.rb +393 -0
- data/lib/fluent/plugin/out_file.rb +167 -0
- data/lib/fluent/plugin/out_forward.rb +646 -0
- data/lib/fluent/plugin/out_null.rb +27 -0
- data/lib/fluent/plugin/out_relabel.rb +28 -0
- data/lib/fluent/plugin/out_roundrobin.rb +80 -0
- data/lib/fluent/plugin/out_stdout.rb +48 -0
- data/lib/fluent/plugin/out_stream.rb +130 -0
- data/lib/fluent/plugin/output.rb +1020 -0
- data/lib/fluent/plugin/owned_by_mixin.rb +42 -0
- data/lib/fluent/plugin/parser.rb +175 -0
- data/lib/fluent/plugin/parser_apache.rb +28 -0
- data/lib/fluent/plugin/parser_apache2.rb +84 -0
- data/lib/fluent/plugin/parser_apache_error.rb +26 -0
- data/lib/fluent/plugin/parser_csv.rb +33 -0
- data/lib/fluent/plugin/parser_json.rb +79 -0
- data/lib/fluent/plugin/parser_ltsv.rb +50 -0
- data/lib/fluent/plugin/parser_multiline.rb +104 -0
- data/lib/fluent/plugin/parser_nginx.rb +28 -0
- data/lib/fluent/plugin/parser_none.rb +36 -0
- data/lib/fluent/plugin/parser_regexp.rb +73 -0
- data/lib/fluent/plugin/parser_syslog.rb +82 -0
- data/lib/fluent/plugin/parser_tsv.rb +37 -0
- data/lib/fluent/plugin/socket_util.rb +22 -0
- data/lib/fluent/plugin/storage.rb +84 -0
- data/lib/fluent/plugin/storage_local.rb +132 -0
- data/lib/fluent/plugin/string_util.rb +22 -0
- data/lib/fluent/plugin_helper.rb +42 -0
- data/lib/fluent/plugin_helper/child_process.rb +298 -0
- data/lib/fluent/plugin_helper/compat_parameters.rb +224 -0
- data/lib/fluent/plugin_helper/event_emitter.rb +80 -0
- data/lib/fluent/plugin_helper/event_loop.rb +118 -0
- data/lib/fluent/plugin_helper/formatter.rb +149 -0
- data/lib/fluent/plugin_helper/inject.rb +125 -0
- data/lib/fluent/plugin_helper/parser.rb +147 -0
- data/lib/fluent/plugin_helper/retry_state.rb +177 -0
- data/lib/fluent/plugin_helper/storage.rb +331 -0
- data/lib/fluent/plugin_helper/thread.rb +147 -0
- data/lib/fluent/plugin_helper/timer.rb +90 -0
- data/lib/fluent/plugin_id.rb +63 -0
- data/lib/fluent/process.rb +504 -0
- data/lib/fluent/registry.rb +99 -0
- data/lib/fluent/root_agent.rb +314 -0
- data/lib/fluent/rpc.rb +94 -0
- data/lib/fluent/supervisor.rb +680 -0
- data/lib/fluent/system_config.rb +122 -0
- data/lib/fluent/test.rb +56 -0
- data/lib/fluent/test/base.rb +85 -0
- data/lib/fluent/test/driver/base.rb +179 -0
- data/lib/fluent/test/driver/base_owned.rb +70 -0
- data/lib/fluent/test/driver/base_owner.rb +125 -0
- data/lib/fluent/test/driver/event_feeder.rb +98 -0
- data/lib/fluent/test/driver/filter.rb +57 -0
- data/lib/fluent/test/driver/formatter.rb +30 -0
- data/lib/fluent/test/driver/input.rb +31 -0
- data/lib/fluent/test/driver/multi_output.rb +52 -0
- data/lib/fluent/test/driver/output.rb +76 -0
- data/lib/fluent/test/driver/parser.rb +30 -0
- data/lib/fluent/test/driver/test_event_router.rb +45 -0
- data/lib/fluent/test/filter_test.rb +77 -0
- data/lib/fluent/test/formatter_test.rb +65 -0
- data/lib/fluent/test/helpers.rb +79 -0
- data/lib/fluent/test/input_test.rb +172 -0
- data/lib/fluent/test/log.rb +73 -0
- data/lib/fluent/test/output_test.rb +156 -0
- data/lib/fluent/test/parser_test.rb +70 -0
- data/lib/fluent/time.rb +175 -0
- data/lib/fluent/timezone.rb +133 -0
- data/lib/fluent/unique_id.rb +39 -0
- data/lib/fluent/version.rb +21 -0
- data/lib/fluent/winsvc.rb +71 -0
- data/test/compat/test_calls_super.rb +166 -0
- data/test/compat/test_parser.rb +82 -0
- data/test/config/assertions.rb +42 -0
- data/test/config/test_config_parser.rb +507 -0
- data/test/config/test_configurable.rb +1194 -0
- data/test/config/test_configure_proxy.rb +386 -0
- data/test/config/test_dsl.rb +415 -0
- data/test/config/test_element.rb +403 -0
- data/test/config/test_literal_parser.rb +297 -0
- data/test/config/test_section.rb +184 -0
- data/test/config/test_system_config.rb +120 -0
- data/test/config/test_types.rb +171 -0
- data/test/helper.rb +119 -0
- data/test/plugin/data/2010/01/20100102-030405.log +0 -0
- data/test/plugin/data/2010/01/20100102-030406.log +0 -0
- data/test/plugin/data/2010/01/20100102.log +0 -0
- data/test/plugin/data/log/bar +0 -0
- data/test/plugin/data/log/foo/bar.log +0 -0
- data/test/plugin/data/log/test.log +0 -0
- data/test/plugin/test_bare_output.rb +118 -0
- data/test/plugin/test_base.rb +75 -0
- data/test/plugin/test_buf_file.rb +571 -0
- data/test/plugin/test_buf_memory.rb +42 -0
- data/test/plugin/test_buffer.rb +1200 -0
- data/test/plugin/test_buffer_chunk.rb +168 -0
- data/test/plugin/test_buffer_file_chunk.rb +771 -0
- data/test/plugin/test_buffer_memory_chunk.rb +265 -0
- data/test/plugin/test_file_util.rb +96 -0
- data/test/plugin/test_filter.rb +353 -0
- data/test/plugin/test_filter_grep.rb +119 -0
- data/test/plugin/test_filter_record_transformer.rb +600 -0
- data/test/plugin/test_filter_stdout.rb +211 -0
- data/test/plugin/test_formatter_csv.rb +94 -0
- data/test/plugin/test_formatter_json.rb +30 -0
- data/test/plugin/test_formatter_ltsv.rb +52 -0
- data/test/plugin/test_formatter_msgpack.rb +28 -0
- data/test/plugin/test_formatter_out_file.rb +95 -0
- data/test/plugin/test_formatter_single_value.rb +38 -0
- data/test/plugin/test_in_debug_agent.rb +28 -0
- data/test/plugin/test_in_dummy.rb +188 -0
- data/test/plugin/test_in_exec.rb +133 -0
- data/test/plugin/test_in_forward.rb +635 -0
- data/test/plugin/test_in_gc_stat.rb +39 -0
- data/test/plugin/test_in_http.rb +442 -0
- data/test/plugin/test_in_monitor_agent.rb +329 -0
- data/test/plugin/test_in_object_space.rb +64 -0
- data/test/plugin/test_in_syslog.rb +205 -0
- data/test/plugin/test_in_tail.rb +1001 -0
- data/test/plugin/test_in_tcp.rb +102 -0
- data/test/plugin/test_in_udp.rb +121 -0
- data/test/plugin/test_in_unix.rb +126 -0
- data/test/plugin/test_input.rb +122 -0
- data/test/plugin/test_multi_output.rb +180 -0
- data/test/plugin/test_out_buffered_null.rb +79 -0
- data/test/plugin/test_out_buffered_stdout.rb +122 -0
- data/test/plugin/test_out_copy.rb +160 -0
- data/test/plugin/test_out_exec.rb +155 -0
- data/test/plugin/test_out_exec_filter.rb +262 -0
- data/test/plugin/test_out_file.rb +383 -0
- data/test/plugin/test_out_forward.rb +590 -0
- data/test/plugin/test_out_null.rb +29 -0
- data/test/plugin/test_out_relabel.rb +28 -0
- data/test/plugin/test_out_roundrobin.rb +146 -0
- data/test/plugin/test_out_stdout.rb +92 -0
- data/test/plugin/test_out_stream.rb +93 -0
- data/test/plugin/test_output.rb +568 -0
- data/test/plugin/test_output_as_buffered.rb +1604 -0
- data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
- data/test/plugin/test_output_as_buffered_retries.rb +839 -0
- data/test/plugin/test_output_as_buffered_secondary.rb +817 -0
- data/test/plugin/test_output_as_standard.rb +374 -0
- data/test/plugin/test_owned_by.rb +35 -0
- data/test/plugin/test_parser_apache.rb +42 -0
- data/test/plugin/test_parser_apache2.rb +38 -0
- data/test/plugin/test_parser_apache_error.rb +45 -0
- data/test/plugin/test_parser_base.rb +32 -0
- data/test/plugin/test_parser_csv.rb +104 -0
- data/test/plugin/test_parser_json.rb +107 -0
- data/test/plugin/test_parser_labeled_tsv.rb +129 -0
- data/test/plugin/test_parser_multiline.rb +100 -0
- data/test/plugin/test_parser_nginx.rb +48 -0
- data/test/plugin/test_parser_none.rb +53 -0
- data/test/plugin/test_parser_regexp.rb +277 -0
- data/test/plugin/test_parser_syslog.rb +66 -0
- data/test/plugin/test_parser_time.rb +46 -0
- data/test/plugin/test_parser_tsv.rb +121 -0
- data/test/plugin/test_storage.rb +167 -0
- data/test/plugin/test_storage_local.rb +8 -0
- data/test/plugin/test_string_util.rb +26 -0
- data/test/plugin_helper/test_child_process.rb +608 -0
- data/test/plugin_helper/test_compat_parameters.rb +242 -0
- data/test/plugin_helper/test_event_emitter.rb +51 -0
- data/test/plugin_helper/test_event_loop.rb +52 -0
- data/test/plugin_helper/test_formatter.rb +252 -0
- data/test/plugin_helper/test_inject.rb +487 -0
- data/test/plugin_helper/test_parser.rb +263 -0
- data/test/plugin_helper/test_retry_state.rb +399 -0
- data/test/plugin_helper/test_storage.rb +521 -0
- data/test/plugin_helper/test_thread.rb +164 -0
- data/test/plugin_helper/test_timer.rb +131 -0
- data/test/scripts/exec_script.rb +32 -0
- data/test/scripts/fluent/plugin/formatter_known.rb +8 -0
- data/test/scripts/fluent/plugin/out_test.rb +81 -0
- data/test/scripts/fluent/plugin/out_test2.rb +80 -0
- data/test/scripts/fluent/plugin/parser_known.rb +4 -0
- data/test/test_config.rb +179 -0
- data/test/test_configdsl.rb +148 -0
- data/test/test_event.rb +329 -0
- data/test/test_event_router.rb +331 -0
- data/test/test_event_time.rb +184 -0
- data/test/test_filter.rb +121 -0
- data/test/test_formatter.rb +319 -0
- data/test/test_input.rb +31 -0
- data/test/test_log.rb +572 -0
- data/test/test_match.rb +137 -0
- data/test/test_mixin.rb +351 -0
- data/test/test_output.rb +214 -0
- data/test/test_plugin_classes.rb +136 -0
- data/test/test_plugin_helper.rb +81 -0
- data/test/test_process.rb +48 -0
- data/test/test_root_agent.rb +278 -0
- data/test/test_supervisor.rb +339 -0
- data/test/test_time_formatter.rb +186 -0
- data/test/test_unique_id.rb +47 -0
- metadata +823 -0
@@ -0,0 +1,374 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
require 'fluent/plugin/output'
|
3
|
+
require 'fluent/plugin/buffer'
|
4
|
+
require 'fluent/msgpack_factory'
|
5
|
+
require 'fluent/event'
|
6
|
+
|
7
|
+
require 'json'
|
8
|
+
require 'time'
|
9
|
+
require 'timeout'
|
10
|
+
|
11
|
+
require 'flexmock/test_unit'
|
12
|
+
|
13
|
+
module FluentPluginStandardBufferedOutputTest
|
14
|
+
class DummyBareOutput < Fluent::Plugin::Output
|
15
|
+
def register(name, &block)
|
16
|
+
instance_variable_set("@#{name}", block)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
class DummyAsyncOutput < DummyBareOutput
|
20
|
+
def format(tag, time, record)
|
21
|
+
@format ? @format.call(tag, time, record) : [tag, time, record].to_json
|
22
|
+
end
|
23
|
+
def write(chunk)
|
24
|
+
@write ? @write.call(chunk) : nil
|
25
|
+
end
|
26
|
+
end
|
27
|
+
class DummyAsyncStandardOutput < DummyBareOutput
|
28
|
+
def write(chunk)
|
29
|
+
@write ? @write.call(chunk) : nil
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
class StandardBufferedOutputTest < Test::Unit::TestCase
|
35
|
+
def create_output(type=:full)
|
36
|
+
case type
|
37
|
+
when :bare then FluentPluginStandardBufferedOutputTest::DummyBareOutput.new
|
38
|
+
when :buffered then FluentPluginStandardBufferedOutputTest::DummyAsyncOutput.new
|
39
|
+
when :standard then FluentPluginStandardBufferedOutputTest::DummyAsyncStandardOutput.new
|
40
|
+
else
|
41
|
+
raise ArgumentError, "unknown type: #{type}"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
def create_metadata(timekey: nil, tag: nil, variables: nil)
|
45
|
+
Fluent::Plugin::Buffer::Metadata.new(timekey, tag, variables)
|
46
|
+
end
|
47
|
+
def waiting(seconds)
|
48
|
+
begin
|
49
|
+
Timeout.timeout(seconds) do
|
50
|
+
yield
|
51
|
+
end
|
52
|
+
rescue Timeout::Error
|
53
|
+
STDERR.print(*@i.log.out.logs)
|
54
|
+
raise
|
55
|
+
end
|
56
|
+
end
|
57
|
+
def test_event_stream
|
58
|
+
es = Fluent::MultiEventStream.new
|
59
|
+
es.add(event_time('2016-04-21 17:19:00 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
60
|
+
es.add(event_time('2016-04-21 17:19:13 -0700'), {"key" => "my value", "name" => "moris2", "message" => "hello!"})
|
61
|
+
es.add(event_time('2016-04-21 17:19:25 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
62
|
+
es.add(event_time('2016-04-21 17:20:01 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
63
|
+
es.add(event_time('2016-04-21 17:20:13 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
64
|
+
es.add(event_time('2016-04-21 17:21:32 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
65
|
+
es
|
66
|
+
end
|
67
|
+
|
68
|
+
setup do
|
69
|
+
@i = nil
|
70
|
+
end
|
71
|
+
|
72
|
+
teardown do
|
73
|
+
if @i
|
74
|
+
@i.stop unless @i.stopped?
|
75
|
+
@i.before_shutdown unless @i.before_shutdown?
|
76
|
+
@i.shutdown unless @i.shutdown?
|
77
|
+
@i.after_shutdown unless @i.after_shutdown?
|
78
|
+
@i.close unless @i.closed?
|
79
|
+
@i.terminate unless @i.terminated?
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
sub_test_case 'standard buffered without any chunk keys' do
|
84
|
+
test '#execute_chunking calls @buffer.write(bulk: true) just once with predefined msgpack format' do
|
85
|
+
@i = create_output(:standard)
|
86
|
+
@i.configure(config_element())
|
87
|
+
@i.start
|
88
|
+
@i.after_start
|
89
|
+
|
90
|
+
m = create_metadata()
|
91
|
+
es = test_event_stream
|
92
|
+
|
93
|
+
buffer_mock = flexmock(@i.buffer)
|
94
|
+
buffer_mock.should_receive(:write).once.with({m => es}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM, enqueue: false)
|
95
|
+
|
96
|
+
@i.execute_chunking("mytag.test", es)
|
97
|
+
end
|
98
|
+
|
99
|
+
test '#execute_chunking calls @buffer.write(bulk: true) just once with predefined msgpack format, but time will be int if time_as_integer specified' do
|
100
|
+
@i = create_output(:standard)
|
101
|
+
@i.configure(config_element('ROOT','',{"time_as_integer"=>"true"}))
|
102
|
+
@i.start
|
103
|
+
@i.after_start
|
104
|
+
|
105
|
+
m = create_metadata()
|
106
|
+
es = test_event_stream
|
107
|
+
|
108
|
+
buffer_mock = flexmock(@i.buffer)
|
109
|
+
buffer_mock.should_receive(:write).once.with({m => es}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM_TIME_INT, enqueue: false)
|
110
|
+
|
111
|
+
@i.execute_chunking("mytag.test", es)
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
sub_test_case 'standard buffered with tag chunk key' do
|
116
|
+
test '#execute_chunking calls @buffer.write(bulk: true) just once with predefined msgpack format' do
|
117
|
+
@i = create_output(:standard)
|
118
|
+
@i.configure(config_element('ROOT','',{},[config_element('buffer','tag',{'flush_thread_burst_interval' => 0.01})]))
|
119
|
+
@i.start
|
120
|
+
@i.after_start
|
121
|
+
|
122
|
+
m = create_metadata(tag: "mytag.test")
|
123
|
+
es = test_event_stream
|
124
|
+
|
125
|
+
buffer_mock = flexmock(@i.buffer)
|
126
|
+
buffer_mock.should_receive(:write).once.with({m => es}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM, enqueue: false)
|
127
|
+
|
128
|
+
@i.execute_chunking("mytag.test", es)
|
129
|
+
end
|
130
|
+
|
131
|
+
test '#execute_chunking calls @buffer.write(bulk: true) just once with predefined msgpack format, but time will be int if time_as_integer specified' do
|
132
|
+
@i = create_output(:standard)
|
133
|
+
@i.configure(config_element('ROOT','',{"time_as_integer"=>"true"},[config_element('buffer','tag',{'flush_thread_burst_interval' => 0.01})]))
|
134
|
+
@i.start
|
135
|
+
@i.after_start
|
136
|
+
|
137
|
+
m = create_metadata(tag: "mytag.test")
|
138
|
+
es = test_event_stream
|
139
|
+
|
140
|
+
buffer_mock = flexmock(@i.buffer)
|
141
|
+
buffer_mock.should_receive(:write).once.with({m => es}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM_TIME_INT, enqueue: false)
|
142
|
+
|
143
|
+
@i.execute_chunking("mytag.test", es)
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
sub_test_case 'standard buffered with time chunk key' do
|
148
|
+
test '#execute_chunking calls @buffer.write(bulk: true) with predefined msgpack format' do
|
149
|
+
@i = create_output(:standard)
|
150
|
+
@i.configure(config_element('ROOT','',{},[config_element('buffer','time',{"timekey" => "60",'flush_thread_burst_interval' => 0.01})]))
|
151
|
+
@i.start
|
152
|
+
@i.after_start
|
153
|
+
|
154
|
+
m1 = create_metadata(timekey: Time.parse('2016-04-21 17:19:00 -0700').to_i)
|
155
|
+
m2 = create_metadata(timekey: Time.parse('2016-04-21 17:20:00 -0700').to_i)
|
156
|
+
m3 = create_metadata(timekey: Time.parse('2016-04-21 17:21:00 -0700').to_i)
|
157
|
+
|
158
|
+
es1 = Fluent::MultiEventStream.new
|
159
|
+
es1.add(event_time('2016-04-21 17:19:00 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
160
|
+
es1.add(event_time('2016-04-21 17:19:13 -0700'), {"key" => "my value", "name" => "moris2", "message" => "hello!"})
|
161
|
+
es1.add(event_time('2016-04-21 17:19:25 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
162
|
+
|
163
|
+
es2 = Fluent::MultiEventStream.new
|
164
|
+
es2.add(event_time('2016-04-21 17:20:01 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
165
|
+
es2.add(event_time('2016-04-21 17:20:13 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
166
|
+
|
167
|
+
es3 = Fluent::MultiEventStream.new
|
168
|
+
es3.add(event_time('2016-04-21 17:21:32 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
169
|
+
|
170
|
+
buffer_mock = flexmock(@i.buffer)
|
171
|
+
buffer_mock.should_receive(:write).once.with({
|
172
|
+
m1 => es1,
|
173
|
+
m2 => es2,
|
174
|
+
m3 => es3,
|
175
|
+
}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM, enqueue: false)
|
176
|
+
|
177
|
+
es = test_event_stream
|
178
|
+
@i.execute_chunking("mytag.test", es)
|
179
|
+
end
|
180
|
+
|
181
|
+
test '#execute_chunking calls @buffer.write(bulk: true) with predefined msgpack format, but time will be int if time_as_integer specified' do
|
182
|
+
@i = create_output(:standard)
|
183
|
+
@i.configure(config_element('ROOT','',{"time_as_integer" => "true"},[config_element('buffer','time',{"timekey" => "60",'flush_thread_burst_interval' => 0.01})]))
|
184
|
+
@i.start
|
185
|
+
@i.after_start
|
186
|
+
|
187
|
+
m1 = create_metadata(timekey: Time.parse('2016-04-21 17:19:00 -0700').to_i)
|
188
|
+
m2 = create_metadata(timekey: Time.parse('2016-04-21 17:20:00 -0700').to_i)
|
189
|
+
m3 = create_metadata(timekey: Time.parse('2016-04-21 17:21:00 -0700').to_i)
|
190
|
+
|
191
|
+
es1 = Fluent::MultiEventStream.new
|
192
|
+
es1.add(event_time('2016-04-21 17:19:00 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
193
|
+
es1.add(event_time('2016-04-21 17:19:13 -0700'), {"key" => "my value", "name" => "moris2", "message" => "hello!"})
|
194
|
+
es1.add(event_time('2016-04-21 17:19:25 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
195
|
+
|
196
|
+
es2 = Fluent::MultiEventStream.new
|
197
|
+
es2.add(event_time('2016-04-21 17:20:01 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
198
|
+
es2.add(event_time('2016-04-21 17:20:13 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
199
|
+
|
200
|
+
es3 = Fluent::MultiEventStream.new
|
201
|
+
es3.add(event_time('2016-04-21 17:21:32 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
202
|
+
|
203
|
+
buffer_mock = flexmock(@i.buffer)
|
204
|
+
buffer_mock.should_receive(:write).with({
|
205
|
+
m1 => es1,
|
206
|
+
m2 => es2,
|
207
|
+
m3 => es3,
|
208
|
+
}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM_TIME_INT, enqueue: false)
|
209
|
+
|
210
|
+
es = test_event_stream
|
211
|
+
@i.execute_chunking("mytag.test", es)
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
sub_test_case 'standard buffered with variable chunk keys' do
|
216
|
+
test '#execute_chunking calls @buffer.write(bulk: true) with predefined msgpack format' do
|
217
|
+
@i = create_output(:standard)
|
218
|
+
@i.configure(config_element('ROOT','',{},[config_element('buffer','key,name',{'flush_thread_burst_interval' => 0.01})]))
|
219
|
+
@i.start
|
220
|
+
@i.after_start
|
221
|
+
|
222
|
+
m1 = create_metadata(variables: {key: "my value", name: "moris1"})
|
223
|
+
es1 = Fluent::MultiEventStream.new
|
224
|
+
es1.add(event_time('2016-04-21 17:19:00 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
225
|
+
es1.add(event_time('2016-04-21 17:19:25 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
226
|
+
es1.add(event_time('2016-04-21 17:20:01 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
227
|
+
es1.add(event_time('2016-04-21 17:20:13 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
228
|
+
es1.add(event_time('2016-04-21 17:21:32 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
229
|
+
|
230
|
+
m2 = create_metadata(variables: {key: "my value", name: "moris2"})
|
231
|
+
es2 = Fluent::MultiEventStream.new
|
232
|
+
es2.add(event_time('2016-04-21 17:19:13 -0700'), {"key" => "my value", "name" => "moris2", "message" => "hello!"})
|
233
|
+
|
234
|
+
buffer_mock = flexmock(@i.buffer)
|
235
|
+
buffer_mock.should_receive(:write).with({
|
236
|
+
m1 => es1,
|
237
|
+
m2 => es2,
|
238
|
+
}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM, enqueue: false).once
|
239
|
+
|
240
|
+
es = test_event_stream
|
241
|
+
@i.execute_chunking("mytag.test", es)
|
242
|
+
end
|
243
|
+
|
244
|
+
test '#execute_chunking calls @buffer.write(bulk: true) in times of # of variable variations with predefined msgpack format, but time will be int if time_as_integer specified' do
|
245
|
+
@i = create_output(:standard)
|
246
|
+
@i.configure(config_element('ROOT','',{"time_as_integer" => "true"},[config_element('buffer','key,name',{'flush_thread_burst_interval' => 0.01})]))
|
247
|
+
@i.start
|
248
|
+
@i.after_start
|
249
|
+
|
250
|
+
m1 = create_metadata(variables: {key: "my value", name: "moris1"})
|
251
|
+
es1 = Fluent::MultiEventStream.new
|
252
|
+
es1.add(event_time('2016-04-21 17:19:00 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
253
|
+
es1.add(event_time('2016-04-21 17:19:25 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
254
|
+
es1.add(event_time('2016-04-21 17:20:01 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
255
|
+
es1.add(event_time('2016-04-21 17:20:13 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
256
|
+
es1.add(event_time('2016-04-21 17:21:32 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
257
|
+
|
258
|
+
m2 = create_metadata(variables: {key: "my value", name: "moris2"})
|
259
|
+
es2 = Fluent::MultiEventStream.new
|
260
|
+
es2.add(event_time('2016-04-21 17:19:13 -0700'), {"key" => "my value", "name" => "moris2", "message" => "hello!"})
|
261
|
+
|
262
|
+
buffer_mock = flexmock(@i.buffer)
|
263
|
+
buffer_mock.should_receive(:write).with({
|
264
|
+
m1 => es1,
|
265
|
+
m2 => es2,
|
266
|
+
}, format: Fluent::Plugin::Output::FORMAT_MSGPACK_STREAM_TIME_INT, enqueue: false).once
|
267
|
+
|
268
|
+
es = test_event_stream
|
269
|
+
@i.execute_chunking("mytag.test", es)
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
sub_test_case 'custom format buffered without any chunk keys' do
|
274
|
+
test '#execute_chunking calls @buffer.write(bulk: true) just once with customized format' do
|
275
|
+
@i = create_output(:buffered)
|
276
|
+
@i.register(:format){|tag, time, record| [time, record].to_json }
|
277
|
+
@i.configure(config_element())
|
278
|
+
@i.start
|
279
|
+
@i.after_start
|
280
|
+
|
281
|
+
m = create_metadata()
|
282
|
+
es = test_event_stream
|
283
|
+
|
284
|
+
buffer_mock = flexmock(@i.buffer)
|
285
|
+
buffer_mock.should_receive(:write).once.with({m => es.map{|t,r| [t,r].to_json }}, format: nil, enqueue: false)
|
286
|
+
|
287
|
+
@i.execute_chunking("mytag.test", es)
|
288
|
+
end
|
289
|
+
end
|
290
|
+
|
291
|
+
sub_test_case 'custom format buffered with tag chunk key' do
|
292
|
+
test '#execute_chunking calls @buffer.write(bulk: true) just once with customized format' do
|
293
|
+
@i = create_output(:buffered)
|
294
|
+
@i.register(:format){|tag, time, record| [time, record].to_json }
|
295
|
+
@i.configure(config_element('ROOT','',{},[config_element('buffer','tag',{'flush_thread_burst_interval' => 0.01})]))
|
296
|
+
@i.start
|
297
|
+
@i.after_start
|
298
|
+
|
299
|
+
m = create_metadata(tag: "mytag.test")
|
300
|
+
es = test_event_stream
|
301
|
+
|
302
|
+
buffer_mock = flexmock(@i.buffer)
|
303
|
+
buffer_mock.should_receive(:write).once.with({m => es.map{|t,r| [t,r].to_json}}, format: nil, enqueue: false)
|
304
|
+
|
305
|
+
@i.execute_chunking("mytag.test", es)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
sub_test_case 'custom format buffered with time chunk key' do
|
309
|
+
test '#execute_chunking calls @buffer.write with customized format' do
|
310
|
+
@i = create_output(:buffered)
|
311
|
+
@i.register(:format){|tag, time, record| [time, record].to_json }
|
312
|
+
@i.configure(config_element('ROOT','',{},[config_element('buffer','time',{"timekey" => "60",'flush_thread_burst_interval' => 0.01})]))
|
313
|
+
@i.start
|
314
|
+
@i.after_start
|
315
|
+
|
316
|
+
m1 = create_metadata(timekey: Time.parse('2016-04-21 17:19:00 -0700').to_i)
|
317
|
+
m2 = create_metadata(timekey: Time.parse('2016-04-21 17:20:00 -0700').to_i)
|
318
|
+
m3 = create_metadata(timekey: Time.parse('2016-04-21 17:21:00 -0700').to_i)
|
319
|
+
|
320
|
+
es1 = Fluent::MultiEventStream.new
|
321
|
+
es1.add(event_time('2016-04-21 17:19:00 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
322
|
+
es1.add(event_time('2016-04-21 17:19:13 -0700'), {"key" => "my value", "name" => "moris2", "message" => "hello!"})
|
323
|
+
es1.add(event_time('2016-04-21 17:19:25 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
324
|
+
|
325
|
+
es2 = Fluent::MultiEventStream.new
|
326
|
+
es2.add(event_time('2016-04-21 17:20:01 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
327
|
+
es2.add(event_time('2016-04-21 17:20:13 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
328
|
+
|
329
|
+
es3 = Fluent::MultiEventStream.new
|
330
|
+
es3.add(event_time('2016-04-21 17:21:32 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
331
|
+
|
332
|
+
buffer_mock = flexmock(@i.buffer)
|
333
|
+
buffer_mock.should_receive(:write).with({
|
334
|
+
m1 => es1.map{|t,r| [t,r].to_json },
|
335
|
+
m2 => es2.map{|t,r| [t,r].to_json },
|
336
|
+
m3 => es3.map{|t,r| [t,r].to_json },
|
337
|
+
}, enqueue: false).once
|
338
|
+
|
339
|
+
es = test_event_stream
|
340
|
+
@i.execute_chunking("mytag.test", es)
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
sub_test_case 'custom format buffered with variable chunk keys' do
|
345
|
+
test '#execute_chunking calls @buffer.write in times of # of variable variations with customized format' do
|
346
|
+
@i = create_output(:buffered)
|
347
|
+
@i.register(:format){|tag, time, record| [time, record].to_json }
|
348
|
+
@i.configure(config_element('ROOT','',{},[config_element('buffer','key,name',{'flush_thread_burst_interval' => 0.01})]))
|
349
|
+
@i.start
|
350
|
+
@i.after_start
|
351
|
+
|
352
|
+
m1 = create_metadata(variables: {key: "my value", name: "moris1"})
|
353
|
+
es1 = Fluent::MultiEventStream.new
|
354
|
+
es1.add(event_time('2016-04-21 17:19:00 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
355
|
+
es1.add(event_time('2016-04-21 17:19:25 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
356
|
+
es1.add(event_time('2016-04-21 17:20:01 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
357
|
+
es1.add(event_time('2016-04-21 17:20:13 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
358
|
+
es1.add(event_time('2016-04-21 17:21:32 -0700'), {"key" => "my value", "name" => "moris1", "message" => "hello!"})
|
359
|
+
|
360
|
+
m2 = create_metadata(variables: {key: "my value", name: "moris2"})
|
361
|
+
es2 = Fluent::MultiEventStream.new
|
362
|
+
es2.add(event_time('2016-04-21 17:19:13 -0700'), {"key" => "my value", "name" => "moris2", "message" => "hello!"})
|
363
|
+
|
364
|
+
buffer_mock = flexmock(@i.buffer)
|
365
|
+
buffer_mock.should_receive(:write).with({
|
366
|
+
m1 => es1.map{|t,r| [t,r].to_json },
|
367
|
+
m2 => es2.map{|t,r| [t,r].to_json },
|
368
|
+
}, enqueue: false).once
|
369
|
+
|
370
|
+
es = test_event_stream
|
371
|
+
@i.execute_chunking("mytag.test", es)
|
372
|
+
end
|
373
|
+
end
|
374
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
require 'fluent/plugin/base'
|
3
|
+
require 'fluent/plugin/input'
|
4
|
+
require 'fluent/plugin/owned_by_mixin'
|
5
|
+
|
6
|
+
module OwnedByMixinTestEnv
|
7
|
+
class DummyParent < Fluent::Plugin::Input
|
8
|
+
Fluent::Plugin.register_input('dummy_parent', self)
|
9
|
+
end
|
10
|
+
class DummyChild < Fluent::Plugin::Base
|
11
|
+
include Fluent::Plugin::OwnedByMixin
|
12
|
+
Fluent::Plugin.register_parser('dummy_child', self)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class OwnedByMixinTest < Test::Unit::TestCase
|
17
|
+
sub_test_case 'Owned plugins' do
|
18
|
+
setup do
|
19
|
+
Fluent::Test.setup
|
20
|
+
end
|
21
|
+
|
22
|
+
test 'inherits plugin id and logger from parent' do
|
23
|
+
parent = Fluent::Plugin.new_input('dummy_parent')
|
24
|
+
parent.configure(config_element('ROOT', '', {'@id' => 'my_parent_id', '@log_level' => 'trace'}))
|
25
|
+
child = Fluent::Plugin.new_parser('dummy_child', parent: parent)
|
26
|
+
|
27
|
+
assert_equal parent.object_id, child.owner.object_id
|
28
|
+
|
29
|
+
assert child.instance_eval{ @_plugin_id_configured }
|
30
|
+
assert_equal 'my_parent_id', child.instance_eval{ @_plugin_id }
|
31
|
+
|
32
|
+
assert_equal Fluent::Log::LEVEL_TRACE, child.log.level
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
require 'fluent/test/driver/parser'
|
3
|
+
require 'fluent/plugin/parser_apache'
|
4
|
+
|
5
|
+
class ApacheParserTest < ::Test::Unit::TestCase
|
6
|
+
def setup
|
7
|
+
Fluent::Test.setup
|
8
|
+
end
|
9
|
+
|
10
|
+
def create_driver(conf = {})
|
11
|
+
Fluent::Test::Driver::Parser.new(Fluent::Plugin::ApacheParser.new).configure(conf)
|
12
|
+
end
|
13
|
+
|
14
|
+
data('parse' => :parse, 'call' => :call)
|
15
|
+
def test_call(method_name)
|
16
|
+
d = create_driver
|
17
|
+
m = d.instance.method(method_name)
|
18
|
+
m.call('192.168.0.1 - - [28/Feb/2013:12:00:00 +0900] "GET / HTTP/1.1" 200 777') { |time, record|
|
19
|
+
assert_equal(event_time('28/Feb/2013:12:00:00 +0900', format: '%d/%b/%Y:%H:%M:%S %z'), time)
|
20
|
+
assert_equal({
|
21
|
+
'user' => '-',
|
22
|
+
'method' => 'GET',
|
23
|
+
'code' => '200',
|
24
|
+
'size' => '777',
|
25
|
+
'host' => '192.168.0.1',
|
26
|
+
'path' => '/'
|
27
|
+
}, record)
|
28
|
+
}
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_parse_with_keep_time_key
|
32
|
+
conf = {
|
33
|
+
'time_format' => "%d/%b/%Y:%H:%M:%S %z",
|
34
|
+
'keep_time_key' => 'true',
|
35
|
+
}
|
36
|
+
d = create_driver(conf)
|
37
|
+
text = '192.168.0.1 - - [28/Feb/2013:12:00:00 +0900] "GET / HTTP/1.1" 200 777'
|
38
|
+
d.instance.parse(text) do |_time, record|
|
39
|
+
assert_equal "28/Feb/2013:12:00:00 +0900", record['time']
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|