fluentd 0.12.40 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +6 -0
- data/.gitignore +2 -0
- data/.travis.yml +33 -21
- data/CONTRIBUTING.md +1 -0
- data/ChangeLog +810 -237
- data/README.md +0 -25
- data/Rakefile +2 -1
- data/Vagrantfile +17 -0
- data/appveyor.yml +35 -0
- data/example/filter_stdout.conf +5 -5
- data/example/in_forward.conf +2 -2
- data/example/in_http.conf +2 -2
- data/example/in_out_forward.conf +17 -0
- data/example/in_syslog.conf +2 -2
- data/example/in_tail.conf +2 -2
- data/example/in_tcp.conf +2 -2
- data/example/in_udp.conf +2 -2
- data/example/out_copy.conf +4 -4
- data/example/out_file.conf +2 -2
- data/example/out_forward.conf +2 -2
- data/example/out_forward_buf_file.conf +23 -0
- data/example/v0_12_filter.conf +8 -8
- data/fluent.conf +29 -0
- data/fluentd.gemspec +18 -11
- data/lib/fluent/agent.rb +60 -58
- data/lib/fluent/command/cat.rb +1 -1
- data/lib/fluent/command/debug.rb +7 -5
- data/lib/fluent/command/fluentd.rb +97 -2
- data/lib/fluent/compat/call_super_mixin.rb +67 -0
- data/lib/fluent/compat/filter.rb +50 -0
- data/lib/fluent/compat/formatter.rb +109 -0
- data/lib/fluent/compat/input.rb +50 -0
- data/lib/fluent/compat/output.rb +617 -0
- data/lib/fluent/compat/output_chain.rb +60 -0
- data/lib/fluent/compat/parser.rb +163 -0
- data/lib/fluent/compat/propagate_default.rb +62 -0
- data/lib/fluent/config.rb +23 -20
- data/lib/fluent/config/configure_proxy.rb +119 -70
- data/lib/fluent/config/dsl.rb +5 -18
- data/lib/fluent/config/element.rb +72 -8
- data/lib/fluent/config/error.rb +0 -3
- data/lib/fluent/config/literal_parser.rb +0 -2
- data/lib/fluent/config/parser.rb +4 -4
- data/lib/fluent/config/section.rb +39 -28
- data/lib/fluent/config/types.rb +2 -13
- data/lib/fluent/config/v1_parser.rb +1 -3
- data/lib/fluent/configurable.rb +48 -16
- data/lib/fluent/daemon.rb +15 -0
- data/lib/fluent/engine.rb +26 -52
- data/lib/fluent/env.rb +6 -4
- data/lib/fluent/event.rb +58 -11
- data/lib/fluent/event_router.rb +5 -5
- data/lib/fluent/filter.rb +2 -50
- data/lib/fluent/formatter.rb +4 -293
- data/lib/fluent/input.rb +2 -32
- data/lib/fluent/label.rb +2 -2
- data/lib/fluent/load.rb +3 -2
- data/lib/fluent/log.rb +107 -38
- data/lib/fluent/match.rb +0 -36
- data/lib/fluent/mixin.rb +117 -7
- data/lib/fluent/msgpack_factory.rb +62 -0
- data/lib/fluent/output.rb +7 -612
- data/lib/fluent/output_chain.rb +23 -0
- data/lib/fluent/parser.rb +4 -800
- data/lib/fluent/plugin.rb +100 -121
- data/lib/fluent/plugin/bare_output.rb +63 -0
- data/lib/fluent/plugin/base.rb +121 -0
- data/lib/fluent/plugin/buf_file.rb +101 -182
- data/lib/fluent/plugin/buf_memory.rb +9 -92
- data/lib/fluent/plugin/buffer.rb +473 -0
- data/lib/fluent/plugin/buffer/chunk.rb +135 -0
- data/lib/fluent/plugin/buffer/file_chunk.rb +339 -0
- data/lib/fluent/plugin/buffer/memory_chunk.rb +100 -0
- data/lib/fluent/plugin/exec_util.rb +80 -75
- data/lib/fluent/plugin/file_util.rb +33 -28
- data/lib/fluent/plugin/file_wrapper.rb +120 -0
- data/lib/fluent/plugin/filter.rb +51 -0
- data/lib/fluent/plugin/filter_grep.rb +13 -40
- data/lib/fluent/plugin/filter_record_transformer.rb +22 -18
- data/lib/fluent/plugin/formatter.rb +93 -0
- data/lib/fluent/plugin/formatter_csv.rb +48 -0
- data/lib/fluent/plugin/formatter_hash.rb +32 -0
- data/lib/fluent/plugin/formatter_json.rb +47 -0
- data/lib/fluent/plugin/formatter_ltsv.rb +42 -0
- data/lib/fluent/plugin/formatter_msgpack.rb +32 -0
- data/lib/fluent/plugin/formatter_out_file.rb +45 -0
- data/lib/fluent/plugin/formatter_single_value.rb +34 -0
- data/lib/fluent/plugin/formatter_stdout.rb +39 -0
- data/lib/fluent/plugin/in_debug_agent.rb +4 -0
- data/lib/fluent/plugin/in_dummy.rb +22 -18
- data/lib/fluent/plugin/in_exec.rb +18 -8
- data/lib/fluent/plugin/in_forward.rb +36 -79
- data/lib/fluent/plugin/in_gc_stat.rb +4 -0
- data/lib/fluent/plugin/in_http.rb +21 -18
- data/lib/fluent/plugin/in_monitor_agent.rb +15 -48
- data/lib/fluent/plugin/in_object_space.rb +6 -1
- data/lib/fluent/plugin/in_stream.rb +7 -3
- data/lib/fluent/plugin/in_syslog.rb +46 -95
- data/lib/fluent/plugin/in_tail.rb +51 -595
- data/lib/fluent/plugin/in_tcp.rb +8 -1
- data/lib/fluent/plugin/in_udp.rb +8 -14
- 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_copy.rb +11 -7
- data/lib/fluent/plugin/out_exec.rb +15 -11
- data/lib/fluent/plugin/out_exec_filter.rb +18 -10
- data/lib/fluent/plugin/out_file.rb +34 -5
- data/lib/fluent/plugin/out_forward.rb +19 -9
- data/lib/fluent/plugin/out_null.rb +0 -14
- data/lib/fluent/plugin/out_roundrobin.rb +11 -7
- data/lib/fluent/plugin/out_stdout.rb +5 -7
- data/lib/fluent/plugin/out_stream.rb +3 -1
- data/lib/fluent/plugin/output.rb +979 -0
- data/lib/fluent/plugin/owned_by_mixin.rb +42 -0
- data/lib/fluent/plugin/parser.rb +244 -0
- data/lib/fluent/plugin/parser_apache.rb +24 -0
- data/lib/fluent/plugin/parser_apache2.rb +84 -0
- data/lib/fluent/plugin/parser_apache_error.rb +21 -0
- data/lib/fluent/plugin/parser_csv.rb +31 -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 +102 -0
- data/lib/fluent/plugin/parser_nginx.rb +24 -0
- data/lib/fluent/plugin/parser_none.rb +36 -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 +120 -114
- data/lib/fluent/plugin/storage.rb +84 -0
- data/lib/fluent/plugin/storage_local.rb +116 -0
- data/lib/fluent/plugin/string_util.rb +16 -13
- data/lib/fluent/plugin_helper.rb +39 -0
- data/lib/fluent/plugin_helper/child_process.rb +298 -0
- data/lib/fluent/plugin_helper/compat_parameters.rb +99 -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/retry_state.rb +177 -0
- data/lib/fluent/plugin_helper/storage.rb +308 -0
- data/lib/fluent/plugin_helper/thread.rb +147 -0
- data/lib/fluent/plugin_helper/timer.rb +85 -0
- data/lib/fluent/plugin_id.rb +63 -0
- data/lib/fluent/process.rb +21 -30
- data/lib/fluent/registry.rb +21 -9
- data/lib/fluent/root_agent.rb +115 -40
- data/lib/fluent/supervisor.rb +330 -320
- data/lib/fluent/system_config.rb +42 -18
- data/lib/fluent/test.rb +6 -1
- data/lib/fluent/test/base.rb +23 -3
- data/lib/fluent/test/driver/base.rb +247 -0
- data/lib/fluent/test/driver/event_feeder.rb +98 -0
- data/lib/fluent/test/driver/filter.rb +35 -0
- data/lib/fluent/test/driver/input.rb +31 -0
- data/lib/fluent/test/driver/output.rb +78 -0
- data/lib/fluent/test/driver/test_event_router.rb +45 -0
- data/lib/fluent/test/filter_test.rb +0 -1
- data/lib/fluent/test/formatter_test.rb +2 -1
- data/lib/fluent/test/input_test.rb +23 -17
- data/lib/fluent/test/output_test.rb +28 -39
- data/lib/fluent/test/parser_test.rb +1 -1
- data/lib/fluent/time.rb +104 -1
- data/lib/fluent/{status.rb → unique_id.rb} +15 -24
- data/lib/fluent/version.rb +1 -1
- data/lib/fluent/winsvc.rb +72 -0
- data/test/compat/test_calls_super.rb +164 -0
- data/test/config/test_config_parser.rb +83 -0
- data/test/config/test_configurable.rb +547 -274
- data/test/config/test_configure_proxy.rb +146 -29
- data/test/config/test_dsl.rb +3 -181
- data/test/config/test_element.rb +274 -0
- data/test/config/test_literal_parser.rb +1 -1
- data/test/config/test_section.rb +79 -7
- data/test/config/test_system_config.rb +21 -0
- data/test/config/test_types.rb +3 -26
- data/test/helper.rb +78 -8
- data/test/plugin/test_bare_output.rb +118 -0
- data/test/plugin/test_base.rb +75 -0
- data/test/plugin/test_buf_file.rb +420 -521
- data/test/plugin/test_buf_memory.rb +32 -194
- data/test/plugin/test_buffer.rb +981 -0
- data/test/plugin/test_buffer_chunk.rb +110 -0
- data/test/plugin/test_buffer_file_chunk.rb +770 -0
- data/test/plugin/test_buffer_memory_chunk.rb +265 -0
- data/test/plugin/test_filter.rb +255 -0
- data/test/plugin/test_filter_grep.rb +2 -73
- data/test/plugin/test_filter_record_transformer.rb +24 -68
- data/test/plugin/test_filter_stdout.rb +6 -6
- data/test/plugin/test_in_debug_agent.rb +2 -0
- data/test/plugin/test_in_dummy.rb +11 -17
- data/test/plugin/test_in_exec.rb +6 -25
- data/test/plugin/test_in_forward.rb +112 -151
- data/test/plugin/test_in_gc_stat.rb +2 -0
- data/test/plugin/test_in_http.rb +106 -157
- data/test/plugin/test_in_object_space.rb +21 -5
- data/test/plugin/test_in_stream.rb +14 -13
- data/test/plugin/test_in_syslog.rb +30 -275
- data/test/plugin/test_in_tail.rb +95 -234
- data/test/plugin/test_in_tcp.rb +14 -0
- data/test/plugin/test_in_udp.rb +21 -13
- 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_copy.rb +15 -2
- data/test/plugin/test_out_exec.rb +75 -25
- data/test/plugin/test_out_exec_filter.rb +74 -8
- data/test/plugin/test_out_file.rb +61 -7
- data/test/plugin/test_out_forward.rb +92 -15
- data/test/plugin/test_out_roundrobin.rb +1 -0
- data/test/plugin/test_out_stdout.rb +22 -13
- data/test/plugin/test_out_stream.rb +18 -0
- data/test/plugin/test_output.rb +515 -0
- data/test/plugin/test_output_as_buffered.rb +1540 -0
- data/test/plugin/test_output_as_buffered_overflow.rb +247 -0
- data/test/plugin/test_output_as_buffered_retries.rb +808 -0
- data/test/plugin/test_output_as_buffered_secondary.rb +776 -0
- data/test/plugin/test_output_as_standard.rb +362 -0
- data/test/plugin/test_owned_by.rb +35 -0
- data/test/plugin/test_storage.rb +167 -0
- data/test/plugin/test_storage_local.rb +8 -0
- data/test/plugin_helper/test_child_process.rb +599 -0
- data/test/plugin_helper/test_compat_parameters.rb +175 -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_retry_state.rb +399 -0
- data/test/plugin_helper/test_storage.rb +411 -0
- data/test/plugin_helper/test_thread.rb +164 -0
- data/test/plugin_helper/test_timer.rb +100 -0
- data/test/scripts/exec_script.rb +0 -6
- data/test/scripts/fluent/plugin/out_test.rb +3 -0
- data/test/test_config.rb +13 -4
- data/test/test_event.rb +24 -13
- data/test/test_event_router.rb +8 -7
- data/test/test_event_time.rb +187 -0
- data/test/test_formatter.rb +13 -51
- data/test/test_input.rb +1 -1
- data/test/test_log.rb +239 -16
- data/test/test_mixin.rb +1 -1
- data/test/test_output.rb +53 -66
- data/test/test_parser.rb +105 -323
- data/test/test_plugin_helper.rb +81 -0
- data/test/test_root_agent.rb +4 -52
- data/test/test_supervisor.rb +272 -0
- data/test/test_unique_id.rb +47 -0
- metadata +180 -54
- data/lib/fluent/buffer.rb +0 -365
- data/lib/fluent/plugin/filter_parser.rb +0 -107
- data/lib/fluent/plugin/in_status.rb +0 -76
- data/lib/fluent/test/helpers.rb +0 -86
- data/test/plugin/data/log/foo/bar2 +0 -0
- data/test/plugin/test_filter_parser.rb +0 -744
- data/test/plugin/test_in_status.rb +0 -38
- data/test/test_buffer.rb +0 -624
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require_relative 'helper'
|
|
2
|
+
require 'fluent/plugin/base'
|
|
3
|
+
require 'fluent/unique_id'
|
|
4
|
+
|
|
5
|
+
module UniqueIdTestEnv
|
|
6
|
+
class Dummy < Fluent::Plugin::Base
|
|
7
|
+
include Fluent::UniqueId::Mixin
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
class UniqueIdTest < Test::Unit::TestCase
|
|
12
|
+
sub_test_case 'module used directly' do
|
|
13
|
+
test '.generate generates 128bit length unique id (16bytes)' do
|
|
14
|
+
assert_equal 16, Fluent::UniqueId.generate.bytesize
|
|
15
|
+
ary = []
|
|
16
|
+
100_000.times do
|
|
17
|
+
ary << Fluent::UniqueId.generate
|
|
18
|
+
end
|
|
19
|
+
assert_equal 100_000, ary.uniq.size
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
test '.hex dumps 16bytes id into 32 chars' do
|
|
23
|
+
assert_equal 32, Fluent::UniqueId.hex(Fluent::UniqueId.generate).size
|
|
24
|
+
assert(Fluent::UniqueId.hex(Fluent::UniqueId.generate) =~ /^[0-9a-z]{32}$/)
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
sub_test_case 'mixin' do
|
|
29
|
+
setup do
|
|
30
|
+
@i = UniqueIdTestEnv::Dummy.new
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
test '#generate_unique_id generates 128bit length id (16bytes)' do
|
|
34
|
+
assert_equal 16, @i.generate_unique_id.bytesize
|
|
35
|
+
ary = []
|
|
36
|
+
100_000.times do
|
|
37
|
+
ary << @i.generate_unique_id
|
|
38
|
+
end
|
|
39
|
+
assert_equal 100_000, ary.uniq.size
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
test '#dump_unique_id_hex dumps 16bytes id into 32 chars' do
|
|
43
|
+
assert_equal 32, @i.dump_unique_id_hex(@i.generate_unique_id).size
|
|
44
|
+
assert(@i.dump_unique_id_hex(@i.generate_unique_id) =~ /^[0-9a-z]{32}$/)
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluentd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: msgpack
|
|
@@ -16,20 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
20
|
-
- - "<"
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: '2'
|
|
19
|
+
version: 0.7.0
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
24
|
- - ">="
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
30
|
-
- - "<"
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: '2'
|
|
26
|
+
version: 0.7.0
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: json
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -64,7 +58,7 @@ dependencies:
|
|
|
64
58
|
requirements:
|
|
65
59
|
- - ">="
|
|
66
60
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 1.
|
|
61
|
+
version: 1.4.3
|
|
68
62
|
- - "<"
|
|
69
63
|
- !ruby/object:Gem::Version
|
|
70
64
|
version: 2.0.0
|
|
@@ -74,10 +68,24 @@ dependencies:
|
|
|
74
68
|
requirements:
|
|
75
69
|
- - ">="
|
|
76
70
|
- !ruby/object:Gem::Version
|
|
77
|
-
version: 1.
|
|
71
|
+
version: 1.4.3
|
|
78
72
|
- - "<"
|
|
79
73
|
- !ruby/object:Gem::Version
|
|
80
74
|
version: 2.0.0
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
name: serverengine
|
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: 1.6.4
|
|
82
|
+
type: :runtime
|
|
83
|
+
prerelease: false
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: 1.6.4
|
|
81
89
|
- !ruby/object:Gem::Dependency
|
|
82
90
|
name: http_parser.rb
|
|
83
91
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -141,25 +149,19 @@ dependencies:
|
|
|
141
149
|
- !ruby/object:Gem::Version
|
|
142
150
|
version: 1.0.0
|
|
143
151
|
- !ruby/object:Gem::Dependency
|
|
144
|
-
name:
|
|
152
|
+
name: strptime
|
|
145
153
|
requirement: !ruby/object:Gem::Requirement
|
|
146
154
|
requirements:
|
|
147
155
|
- - ">="
|
|
148
156
|
- !ruby/object:Gem::Version
|
|
149
|
-
version: 0.
|
|
150
|
-
- - "<="
|
|
151
|
-
- !ruby/object:Gem::Version
|
|
152
|
-
version: 0.0.5
|
|
157
|
+
version: 0.1.7
|
|
153
158
|
type: :runtime
|
|
154
159
|
prerelease: false
|
|
155
160
|
version_requirements: !ruby/object:Gem::Requirement
|
|
156
161
|
requirements:
|
|
157
162
|
- - ">="
|
|
158
163
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 0.
|
|
160
|
-
- - "<="
|
|
161
|
-
- !ruby/object:Gem::Version
|
|
162
|
-
version: 0.0.5
|
|
164
|
+
version: 0.1.7
|
|
163
165
|
- !ruby/object:Gem::Dependency
|
|
164
166
|
name: rake
|
|
165
167
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -180,26 +182,26 @@ dependencies:
|
|
|
180
182
|
requirements:
|
|
181
183
|
- - "~>"
|
|
182
184
|
- !ruby/object:Gem::Version
|
|
183
|
-
version:
|
|
185
|
+
version: 2.0.5
|
|
184
186
|
type: :development
|
|
185
187
|
prerelease: false
|
|
186
188
|
version_requirements: !ruby/object:Gem::Requirement
|
|
187
189
|
requirements:
|
|
188
190
|
- - "~>"
|
|
189
191
|
- !ruby/object:Gem::Version
|
|
190
|
-
version:
|
|
192
|
+
version: 2.0.5
|
|
191
193
|
- !ruby/object:Gem::Dependency
|
|
192
194
|
name: parallel_tests
|
|
193
195
|
requirement: !ruby/object:Gem::Requirement
|
|
194
196
|
requirements:
|
|
195
|
-
- - "
|
|
197
|
+
- - ">="
|
|
196
198
|
- !ruby/object:Gem::Version
|
|
197
199
|
version: 0.15.3
|
|
198
200
|
type: :development
|
|
199
201
|
prerelease: false
|
|
200
202
|
version_requirements: !ruby/object:Gem::Requirement
|
|
201
203
|
requirements:
|
|
202
|
-
- - "
|
|
204
|
+
- - ">="
|
|
203
205
|
- !ruby/object:Gem::Version
|
|
204
206
|
version: 0.15.3
|
|
205
207
|
- !ruby/object:Gem::Dependency
|
|
@@ -208,70 +210,70 @@ dependencies:
|
|
|
208
210
|
requirements:
|
|
209
211
|
- - "~>"
|
|
210
212
|
- !ruby/object:Gem::Version
|
|
211
|
-
version:
|
|
213
|
+
version: 0.6.4
|
|
212
214
|
type: :development
|
|
213
215
|
prerelease: false
|
|
214
216
|
version_requirements: !ruby/object:Gem::Requirement
|
|
215
217
|
requirements:
|
|
216
218
|
- - "~>"
|
|
217
219
|
- !ruby/object:Gem::Version
|
|
218
|
-
version:
|
|
220
|
+
version: 0.6.4
|
|
219
221
|
- !ruby/object:Gem::Dependency
|
|
220
222
|
name: rr
|
|
221
223
|
requirement: !ruby/object:Gem::Requirement
|
|
222
224
|
requirements:
|
|
223
|
-
- - "
|
|
225
|
+
- - ">="
|
|
224
226
|
- !ruby/object:Gem::Version
|
|
225
|
-
version:
|
|
227
|
+
version: 1.0.0
|
|
226
228
|
type: :development
|
|
227
229
|
prerelease: false
|
|
228
230
|
version_requirements: !ruby/object:Gem::Requirement
|
|
229
231
|
requirements:
|
|
230
|
-
- - "
|
|
232
|
+
- - ">="
|
|
231
233
|
- !ruby/object:Gem::Version
|
|
232
|
-
version:
|
|
234
|
+
version: 1.0.0
|
|
233
235
|
- !ruby/object:Gem::Dependency
|
|
234
236
|
name: timecop
|
|
235
237
|
requirement: !ruby/object:Gem::Requirement
|
|
236
238
|
requirements:
|
|
237
|
-
- - "
|
|
239
|
+
- - ">="
|
|
238
240
|
- !ruby/object:Gem::Version
|
|
239
|
-
version:
|
|
241
|
+
version: 0.3.0
|
|
240
242
|
type: :development
|
|
241
243
|
prerelease: false
|
|
242
244
|
version_requirements: !ruby/object:Gem::Requirement
|
|
243
245
|
requirements:
|
|
244
|
-
- - "
|
|
246
|
+
- - ">="
|
|
245
247
|
- !ruby/object:Gem::Version
|
|
246
|
-
version:
|
|
248
|
+
version: 0.3.0
|
|
247
249
|
- !ruby/object:Gem::Dependency
|
|
248
250
|
name: test-unit
|
|
249
251
|
requirement: !ruby/object:Gem::Requirement
|
|
250
252
|
requirements:
|
|
251
253
|
- - "~>"
|
|
252
254
|
- !ruby/object:Gem::Version
|
|
253
|
-
version:
|
|
255
|
+
version: 3.1.4
|
|
254
256
|
type: :development
|
|
255
257
|
prerelease: false
|
|
256
258
|
version_requirements: !ruby/object:Gem::Requirement
|
|
257
259
|
requirements:
|
|
258
260
|
- - "~>"
|
|
259
261
|
- !ruby/object:Gem::Version
|
|
260
|
-
version:
|
|
262
|
+
version: 3.1.4
|
|
261
263
|
- !ruby/object:Gem::Dependency
|
|
262
264
|
name: test-unit-rr
|
|
263
265
|
requirement: !ruby/object:Gem::Requirement
|
|
264
266
|
requirements:
|
|
265
267
|
- - "~>"
|
|
266
268
|
- !ruby/object:Gem::Version
|
|
267
|
-
version:
|
|
269
|
+
version: 1.0.3
|
|
268
270
|
type: :development
|
|
269
271
|
prerelease: false
|
|
270
272
|
version_requirements: !ruby/object:Gem::Requirement
|
|
271
273
|
requirements:
|
|
272
274
|
- - "~>"
|
|
273
275
|
- !ruby/object:Gem::Version
|
|
274
|
-
version:
|
|
276
|
+
version: 1.0.3
|
|
275
277
|
- !ruby/object:Gem::Dependency
|
|
276
278
|
name: oj
|
|
277
279
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -298,6 +300,7 @@ executables:
|
|
|
298
300
|
extensions: []
|
|
299
301
|
extra_rdoc_files: []
|
|
300
302
|
files:
|
|
303
|
+
- ".github/ISSUE_TEMPLATE.md"
|
|
301
304
|
- ".gitignore"
|
|
302
305
|
- ".travis.yml"
|
|
303
306
|
- AUTHORS
|
|
@@ -307,6 +310,8 @@ files:
|
|
|
307
310
|
- Gemfile
|
|
308
311
|
- README.md
|
|
309
312
|
- Rakefile
|
|
313
|
+
- Vagrantfile
|
|
314
|
+
- appveyor.yml
|
|
310
315
|
- bin/fluent-cat
|
|
311
316
|
- bin/fluent-debug
|
|
312
317
|
- bin/fluent-gem
|
|
@@ -314,6 +319,7 @@ files:
|
|
|
314
319
|
- example/filter_stdout.conf
|
|
315
320
|
- example/in_forward.conf
|
|
316
321
|
- example/in_http.conf
|
|
322
|
+
- example/in_out_forward.conf
|
|
317
323
|
- example/in_syslog.conf
|
|
318
324
|
- example/in_tail.conf
|
|
319
325
|
- example/in_tcp.conf
|
|
@@ -321,16 +327,24 @@ files:
|
|
|
321
327
|
- example/out_copy.conf
|
|
322
328
|
- example/out_file.conf
|
|
323
329
|
- example/out_forward.conf
|
|
330
|
+
- example/out_forward_buf_file.conf
|
|
324
331
|
- example/v0_12_filter.conf
|
|
325
332
|
- example/v1_literal_example.conf
|
|
326
333
|
- fluent.conf
|
|
327
334
|
- fluentd.gemspec
|
|
328
335
|
- lib/fluent/agent.rb
|
|
329
|
-
- lib/fluent/buffer.rb
|
|
330
336
|
- lib/fluent/command/bundler_injection.rb
|
|
331
337
|
- lib/fluent/command/cat.rb
|
|
332
338
|
- lib/fluent/command/debug.rb
|
|
333
339
|
- lib/fluent/command/fluentd.rb
|
|
340
|
+
- lib/fluent/compat/call_super_mixin.rb
|
|
341
|
+
- lib/fluent/compat/filter.rb
|
|
342
|
+
- lib/fluent/compat/formatter.rb
|
|
343
|
+
- lib/fluent/compat/input.rb
|
|
344
|
+
- lib/fluent/compat/output.rb
|
|
345
|
+
- lib/fluent/compat/output_chain.rb
|
|
346
|
+
- lib/fluent/compat/parser.rb
|
|
347
|
+
- lib/fluent/compat/propagate_default.rb
|
|
334
348
|
- lib/fluent/config.rb
|
|
335
349
|
- lib/fluent/config/basic_parser.rb
|
|
336
350
|
- lib/fluent/config/configure_proxy.rb
|
|
@@ -343,6 +357,7 @@ files:
|
|
|
343
357
|
- lib/fluent/config/types.rb
|
|
344
358
|
- lib/fluent/config/v1_parser.rb
|
|
345
359
|
- lib/fluent/configurable.rb
|
|
360
|
+
- lib/fluent/daemon.rb
|
|
346
361
|
- lib/fluent/engine.rb
|
|
347
362
|
- lib/fluent/env.rb
|
|
348
363
|
- lib/fluent/event.rb
|
|
@@ -355,17 +370,35 @@ files:
|
|
|
355
370
|
- lib/fluent/log.rb
|
|
356
371
|
- lib/fluent/match.rb
|
|
357
372
|
- lib/fluent/mixin.rb
|
|
373
|
+
- lib/fluent/msgpack_factory.rb
|
|
358
374
|
- lib/fluent/output.rb
|
|
375
|
+
- lib/fluent/output_chain.rb
|
|
359
376
|
- lib/fluent/parser.rb
|
|
360
377
|
- lib/fluent/plugin.rb
|
|
378
|
+
- lib/fluent/plugin/bare_output.rb
|
|
379
|
+
- lib/fluent/plugin/base.rb
|
|
361
380
|
- lib/fluent/plugin/buf_file.rb
|
|
362
381
|
- lib/fluent/plugin/buf_memory.rb
|
|
382
|
+
- lib/fluent/plugin/buffer.rb
|
|
383
|
+
- lib/fluent/plugin/buffer/chunk.rb
|
|
384
|
+
- lib/fluent/plugin/buffer/file_chunk.rb
|
|
385
|
+
- lib/fluent/plugin/buffer/memory_chunk.rb
|
|
363
386
|
- lib/fluent/plugin/exec_util.rb
|
|
364
387
|
- lib/fluent/plugin/file_util.rb
|
|
388
|
+
- lib/fluent/plugin/file_wrapper.rb
|
|
389
|
+
- lib/fluent/plugin/filter.rb
|
|
365
390
|
- lib/fluent/plugin/filter_grep.rb
|
|
366
|
-
- lib/fluent/plugin/filter_parser.rb
|
|
367
391
|
- lib/fluent/plugin/filter_record_transformer.rb
|
|
368
392
|
- lib/fluent/plugin/filter_stdout.rb
|
|
393
|
+
- lib/fluent/plugin/formatter.rb
|
|
394
|
+
- lib/fluent/plugin/formatter_csv.rb
|
|
395
|
+
- lib/fluent/plugin/formatter_hash.rb
|
|
396
|
+
- lib/fluent/plugin/formatter_json.rb
|
|
397
|
+
- lib/fluent/plugin/formatter_ltsv.rb
|
|
398
|
+
- lib/fluent/plugin/formatter_msgpack.rb
|
|
399
|
+
- lib/fluent/plugin/formatter_out_file.rb
|
|
400
|
+
- lib/fluent/plugin/formatter_single_value.rb
|
|
401
|
+
- lib/fluent/plugin/formatter_stdout.rb
|
|
369
402
|
- lib/fluent/plugin/in_debug_agent.rb
|
|
370
403
|
- lib/fluent/plugin/in_dummy.rb
|
|
371
404
|
- lib/fluent/plugin/in_exec.rb
|
|
@@ -374,12 +407,14 @@ files:
|
|
|
374
407
|
- lib/fluent/plugin/in_http.rb
|
|
375
408
|
- lib/fluent/plugin/in_monitor_agent.rb
|
|
376
409
|
- lib/fluent/plugin/in_object_space.rb
|
|
377
|
-
- lib/fluent/plugin/in_status.rb
|
|
378
410
|
- lib/fluent/plugin/in_stream.rb
|
|
379
411
|
- lib/fluent/plugin/in_syslog.rb
|
|
380
412
|
- lib/fluent/plugin/in_tail.rb
|
|
381
413
|
- lib/fluent/plugin/in_tcp.rb
|
|
382
414
|
- lib/fluent/plugin/in_udp.rb
|
|
415
|
+
- lib/fluent/plugin/input.rb
|
|
416
|
+
- lib/fluent/plugin/multi_output.rb
|
|
417
|
+
- lib/fluent/plugin/out_buffered_null.rb
|
|
383
418
|
- lib/fluent/plugin/out_copy.rb
|
|
384
419
|
- lib/fluent/plugin/out_exec.rb
|
|
385
420
|
- lib/fluent/plugin/out_exec_filter.rb
|
|
@@ -390,31 +425,65 @@ files:
|
|
|
390
425
|
- lib/fluent/plugin/out_roundrobin.rb
|
|
391
426
|
- lib/fluent/plugin/out_stdout.rb
|
|
392
427
|
- lib/fluent/plugin/out_stream.rb
|
|
428
|
+
- lib/fluent/plugin/output.rb
|
|
429
|
+
- lib/fluent/plugin/owned_by_mixin.rb
|
|
430
|
+
- lib/fluent/plugin/parser.rb
|
|
431
|
+
- lib/fluent/plugin/parser_apache.rb
|
|
432
|
+
- lib/fluent/plugin/parser_apache2.rb
|
|
433
|
+
- lib/fluent/plugin/parser_apache_error.rb
|
|
434
|
+
- lib/fluent/plugin/parser_csv.rb
|
|
435
|
+
- lib/fluent/plugin/parser_json.rb
|
|
436
|
+
- lib/fluent/plugin/parser_ltsv.rb
|
|
437
|
+
- lib/fluent/plugin/parser_multiline.rb
|
|
438
|
+
- lib/fluent/plugin/parser_nginx.rb
|
|
439
|
+
- lib/fluent/plugin/parser_none.rb
|
|
440
|
+
- lib/fluent/plugin/parser_syslog.rb
|
|
441
|
+
- lib/fluent/plugin/parser_tsv.rb
|
|
393
442
|
- lib/fluent/plugin/socket_util.rb
|
|
443
|
+
- lib/fluent/plugin/storage.rb
|
|
444
|
+
- lib/fluent/plugin/storage_local.rb
|
|
394
445
|
- lib/fluent/plugin/string_util.rb
|
|
446
|
+
- lib/fluent/plugin_helper.rb
|
|
447
|
+
- lib/fluent/plugin_helper/child_process.rb
|
|
448
|
+
- lib/fluent/plugin_helper/compat_parameters.rb
|
|
449
|
+
- lib/fluent/plugin_helper/event_emitter.rb
|
|
450
|
+
- lib/fluent/plugin_helper/event_loop.rb
|
|
451
|
+
- lib/fluent/plugin_helper/retry_state.rb
|
|
452
|
+
- lib/fluent/plugin_helper/storage.rb
|
|
453
|
+
- lib/fluent/plugin_helper/thread.rb
|
|
454
|
+
- lib/fluent/plugin_helper/timer.rb
|
|
455
|
+
- lib/fluent/plugin_id.rb
|
|
395
456
|
- lib/fluent/process.rb
|
|
396
457
|
- lib/fluent/registry.rb
|
|
397
458
|
- lib/fluent/root_agent.rb
|
|
398
459
|
- lib/fluent/rpc.rb
|
|
399
|
-
- lib/fluent/status.rb
|
|
400
460
|
- lib/fluent/supervisor.rb
|
|
401
461
|
- lib/fluent/system_config.rb
|
|
402
462
|
- lib/fluent/test.rb
|
|
403
463
|
- lib/fluent/test/base.rb
|
|
464
|
+
- lib/fluent/test/driver/base.rb
|
|
465
|
+
- lib/fluent/test/driver/event_feeder.rb
|
|
466
|
+
- lib/fluent/test/driver/filter.rb
|
|
467
|
+
- lib/fluent/test/driver/input.rb
|
|
468
|
+
- lib/fluent/test/driver/output.rb
|
|
469
|
+
- lib/fluent/test/driver/test_event_router.rb
|
|
404
470
|
- lib/fluent/test/filter_test.rb
|
|
405
471
|
- lib/fluent/test/formatter_test.rb
|
|
406
|
-
- lib/fluent/test/helpers.rb
|
|
407
472
|
- lib/fluent/test/input_test.rb
|
|
408
473
|
- lib/fluent/test/output_test.rb
|
|
409
474
|
- lib/fluent/test/parser_test.rb
|
|
410
475
|
- lib/fluent/time.rb
|
|
411
476
|
- lib/fluent/timezone.rb
|
|
477
|
+
- lib/fluent/unique_id.rb
|
|
412
478
|
- lib/fluent/version.rb
|
|
479
|
+
- lib/fluent/winsvc.rb
|
|
480
|
+
- test/compat/test_calls_super.rb
|
|
413
481
|
- test/config/assertions.rb
|
|
414
482
|
- test/config/test_config_parser.rb
|
|
415
483
|
- test/config/test_configurable.rb
|
|
416
484
|
- test/config/test_configure_proxy.rb
|
|
417
485
|
- test/config/test_dsl.rb
|
|
486
|
+
- test/config/test_element.rb
|
|
418
487
|
- test/config/test_literal_parser.rb
|
|
419
488
|
- test/config/test_section.rb
|
|
420
489
|
- test/config/test_system_config.rb
|
|
@@ -425,13 +494,18 @@ files:
|
|
|
425
494
|
- test/plugin/data/2010/01/20100102.log
|
|
426
495
|
- test/plugin/data/log/bar
|
|
427
496
|
- test/plugin/data/log/foo/bar.log
|
|
428
|
-
- test/plugin/data/log/foo/bar2
|
|
429
497
|
- test/plugin/data/log/test.log
|
|
498
|
+
- test/plugin/test_bare_output.rb
|
|
499
|
+
- test/plugin/test_base.rb
|
|
430
500
|
- test/plugin/test_buf_file.rb
|
|
431
501
|
- test/plugin/test_buf_memory.rb
|
|
502
|
+
- test/plugin/test_buffer.rb
|
|
503
|
+
- test/plugin/test_buffer_chunk.rb
|
|
504
|
+
- test/plugin/test_buffer_file_chunk.rb
|
|
505
|
+
- test/plugin/test_buffer_memory_chunk.rb
|
|
432
506
|
- test/plugin/test_file_util.rb
|
|
507
|
+
- test/plugin/test_filter.rb
|
|
433
508
|
- test/plugin/test_filter_grep.rb
|
|
434
|
-
- test/plugin/test_filter_parser.rb
|
|
435
509
|
- test/plugin/test_filter_record_transformer.rb
|
|
436
510
|
- test/plugin/test_filter_stdout.rb
|
|
437
511
|
- test/plugin/test_in_debug_agent.rb
|
|
@@ -441,12 +515,14 @@ files:
|
|
|
441
515
|
- test/plugin/test_in_gc_stat.rb
|
|
442
516
|
- test/plugin/test_in_http.rb
|
|
443
517
|
- test/plugin/test_in_object_space.rb
|
|
444
|
-
- test/plugin/test_in_status.rb
|
|
445
518
|
- test/plugin/test_in_stream.rb
|
|
446
519
|
- test/plugin/test_in_syslog.rb
|
|
447
520
|
- test/plugin/test_in_tail.rb
|
|
448
521
|
- test/plugin/test_in_tcp.rb
|
|
449
522
|
- test/plugin/test_in_udp.rb
|
|
523
|
+
- test/plugin/test_input.rb
|
|
524
|
+
- test/plugin/test_multi_output.rb
|
|
525
|
+
- test/plugin/test_out_buffered_null.rb
|
|
450
526
|
- test/plugin/test_out_copy.rb
|
|
451
527
|
- test/plugin/test_out_exec.rb
|
|
452
528
|
- test/plugin/test_out_exec_filter.rb
|
|
@@ -455,16 +531,33 @@ files:
|
|
|
455
531
|
- test/plugin/test_out_roundrobin.rb
|
|
456
532
|
- test/plugin/test_out_stdout.rb
|
|
457
533
|
- test/plugin/test_out_stream.rb
|
|
534
|
+
- test/plugin/test_output.rb
|
|
535
|
+
- test/plugin/test_output_as_buffered.rb
|
|
536
|
+
- test/plugin/test_output_as_buffered_overflow.rb
|
|
537
|
+
- test/plugin/test_output_as_buffered_retries.rb
|
|
538
|
+
- test/plugin/test_output_as_buffered_secondary.rb
|
|
539
|
+
- test/plugin/test_output_as_standard.rb
|
|
540
|
+
- test/plugin/test_owned_by.rb
|
|
541
|
+
- test/plugin/test_storage.rb
|
|
542
|
+
- test/plugin/test_storage_local.rb
|
|
458
543
|
- test/plugin/test_string_util.rb
|
|
544
|
+
- test/plugin_helper/test_child_process.rb
|
|
545
|
+
- test/plugin_helper/test_compat_parameters.rb
|
|
546
|
+
- test/plugin_helper/test_event_emitter.rb
|
|
547
|
+
- test/plugin_helper/test_event_loop.rb
|
|
548
|
+
- test/plugin_helper/test_retry_state.rb
|
|
549
|
+
- test/plugin_helper/test_storage.rb
|
|
550
|
+
- test/plugin_helper/test_thread.rb
|
|
551
|
+
- test/plugin_helper/test_timer.rb
|
|
459
552
|
- test/scripts/exec_script.rb
|
|
460
553
|
- test/scripts/fluent/plugin/formatter_known.rb
|
|
461
554
|
- test/scripts/fluent/plugin/out_test.rb
|
|
462
555
|
- test/scripts/fluent/plugin/parser_known.rb
|
|
463
|
-
- test/test_buffer.rb
|
|
464
556
|
- test/test_config.rb
|
|
465
557
|
- test/test_configdsl.rb
|
|
466
558
|
- test/test_event.rb
|
|
467
559
|
- test/test_event_router.rb
|
|
560
|
+
- test/test_event_time.rb
|
|
468
561
|
- test/test_filter.rb
|
|
469
562
|
- test/test_formatter.rb
|
|
470
563
|
- test/test_input.rb
|
|
@@ -474,8 +567,11 @@ files:
|
|
|
474
567
|
- test/test_output.rb
|
|
475
568
|
- test/test_parser.rb
|
|
476
569
|
- test/test_plugin_classes.rb
|
|
570
|
+
- test/test_plugin_helper.rb
|
|
477
571
|
- test/test_process.rb
|
|
478
572
|
- test/test_root_agent.rb
|
|
573
|
+
- test/test_supervisor.rb
|
|
574
|
+
- test/test_unique_id.rb
|
|
479
575
|
homepage: http://fluentd.org/
|
|
480
576
|
licenses:
|
|
481
577
|
- Apache-2.0
|
|
@@ -488,7 +584,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
488
584
|
requirements:
|
|
489
585
|
- - ">="
|
|
490
586
|
- !ruby/object:Gem::Version
|
|
491
|
-
version: 1
|
|
587
|
+
version: '2.1'
|
|
492
588
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
493
589
|
requirements:
|
|
494
590
|
- - ">="
|
|
@@ -496,16 +592,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
496
592
|
version: '0'
|
|
497
593
|
requirements: []
|
|
498
594
|
rubyforge_project:
|
|
499
|
-
rubygems_version: 2.
|
|
595
|
+
rubygems_version: 2.5.1
|
|
500
596
|
signing_key:
|
|
501
597
|
specification_version: 4
|
|
502
598
|
summary: Fluentd event collector
|
|
503
599
|
test_files:
|
|
600
|
+
- test/compat/test_calls_super.rb
|
|
504
601
|
- test/config/assertions.rb
|
|
505
602
|
- test/config/test_config_parser.rb
|
|
506
603
|
- test/config/test_configurable.rb
|
|
507
604
|
- test/config/test_configure_proxy.rb
|
|
508
605
|
- test/config/test_dsl.rb
|
|
606
|
+
- test/config/test_element.rb
|
|
509
607
|
- test/config/test_literal_parser.rb
|
|
510
608
|
- test/config/test_section.rb
|
|
511
609
|
- test/config/test_system_config.rb
|
|
@@ -516,13 +614,18 @@ test_files:
|
|
|
516
614
|
- test/plugin/data/2010/01/20100102.log
|
|
517
615
|
- test/plugin/data/log/bar
|
|
518
616
|
- test/plugin/data/log/foo/bar.log
|
|
519
|
-
- test/plugin/data/log/foo/bar2
|
|
520
617
|
- test/plugin/data/log/test.log
|
|
618
|
+
- test/plugin/test_bare_output.rb
|
|
619
|
+
- test/plugin/test_base.rb
|
|
521
620
|
- test/plugin/test_buf_file.rb
|
|
522
621
|
- test/plugin/test_buf_memory.rb
|
|
622
|
+
- test/plugin/test_buffer.rb
|
|
623
|
+
- test/plugin/test_buffer_chunk.rb
|
|
624
|
+
- test/plugin/test_buffer_file_chunk.rb
|
|
625
|
+
- test/plugin/test_buffer_memory_chunk.rb
|
|
523
626
|
- test/plugin/test_file_util.rb
|
|
627
|
+
- test/plugin/test_filter.rb
|
|
524
628
|
- test/plugin/test_filter_grep.rb
|
|
525
|
-
- test/plugin/test_filter_parser.rb
|
|
526
629
|
- test/plugin/test_filter_record_transformer.rb
|
|
527
630
|
- test/plugin/test_filter_stdout.rb
|
|
528
631
|
- test/plugin/test_in_debug_agent.rb
|
|
@@ -532,12 +635,14 @@ test_files:
|
|
|
532
635
|
- test/plugin/test_in_gc_stat.rb
|
|
533
636
|
- test/plugin/test_in_http.rb
|
|
534
637
|
- test/plugin/test_in_object_space.rb
|
|
535
|
-
- test/plugin/test_in_status.rb
|
|
536
638
|
- test/plugin/test_in_stream.rb
|
|
537
639
|
- test/plugin/test_in_syslog.rb
|
|
538
640
|
- test/plugin/test_in_tail.rb
|
|
539
641
|
- test/plugin/test_in_tcp.rb
|
|
540
642
|
- test/plugin/test_in_udp.rb
|
|
643
|
+
- test/plugin/test_input.rb
|
|
644
|
+
- test/plugin/test_multi_output.rb
|
|
645
|
+
- test/plugin/test_out_buffered_null.rb
|
|
541
646
|
- test/plugin/test_out_copy.rb
|
|
542
647
|
- test/plugin/test_out_exec.rb
|
|
543
648
|
- test/plugin/test_out_exec_filter.rb
|
|
@@ -546,16 +651,33 @@ test_files:
|
|
|
546
651
|
- test/plugin/test_out_roundrobin.rb
|
|
547
652
|
- test/plugin/test_out_stdout.rb
|
|
548
653
|
- test/plugin/test_out_stream.rb
|
|
654
|
+
- test/plugin/test_output.rb
|
|
655
|
+
- test/plugin/test_output_as_buffered.rb
|
|
656
|
+
- test/plugin/test_output_as_buffered_overflow.rb
|
|
657
|
+
- test/plugin/test_output_as_buffered_retries.rb
|
|
658
|
+
- test/plugin/test_output_as_buffered_secondary.rb
|
|
659
|
+
- test/plugin/test_output_as_standard.rb
|
|
660
|
+
- test/plugin/test_owned_by.rb
|
|
661
|
+
- test/plugin/test_storage.rb
|
|
662
|
+
- test/plugin/test_storage_local.rb
|
|
549
663
|
- test/plugin/test_string_util.rb
|
|
664
|
+
- test/plugin_helper/test_child_process.rb
|
|
665
|
+
- test/plugin_helper/test_compat_parameters.rb
|
|
666
|
+
- test/plugin_helper/test_event_emitter.rb
|
|
667
|
+
- test/plugin_helper/test_event_loop.rb
|
|
668
|
+
- test/plugin_helper/test_retry_state.rb
|
|
669
|
+
- test/plugin_helper/test_storage.rb
|
|
670
|
+
- test/plugin_helper/test_thread.rb
|
|
671
|
+
- test/plugin_helper/test_timer.rb
|
|
550
672
|
- test/scripts/exec_script.rb
|
|
551
673
|
- test/scripts/fluent/plugin/formatter_known.rb
|
|
552
674
|
- test/scripts/fluent/plugin/out_test.rb
|
|
553
675
|
- test/scripts/fluent/plugin/parser_known.rb
|
|
554
|
-
- test/test_buffer.rb
|
|
555
676
|
- test/test_config.rb
|
|
556
677
|
- test/test_configdsl.rb
|
|
557
678
|
- test/test_event.rb
|
|
558
679
|
- test/test_event_router.rb
|
|
680
|
+
- test/test_event_time.rb
|
|
559
681
|
- test/test_filter.rb
|
|
560
682
|
- test/test_formatter.rb
|
|
561
683
|
- test/test_input.rb
|
|
@@ -565,5 +687,9 @@ test_files:
|
|
|
565
687
|
- test/test_output.rb
|
|
566
688
|
- test/test_parser.rb
|
|
567
689
|
- test/test_plugin_classes.rb
|
|
690
|
+
- test/test_plugin_helper.rb
|
|
568
691
|
- test/test_process.rb
|
|
569
692
|
- test/test_root_agent.rb
|
|
693
|
+
- test/test_supervisor.rb
|
|
694
|
+
- test/test_unique_id.rb
|
|
695
|
+
has_rdoc: false
|