fluentd 1.11.0 → 1.11.5
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.
Potentially problematic release.
This version of fluentd might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +92 -1
- data/example/copy_roundrobin.conf +3 -3
- data/example/counter.conf +1 -1
- data/example/filter_stdout.conf +2 -2
- data/example/{in_dummy_blocks.conf → in_sample_blocks.conf} +4 -4
- data/example/{in_dummy_with_compression.conf → in_sample_with_compression.conf} +3 -3
- data/example/logevents.conf +5 -5
- data/example/multi_filters.conf +1 -1
- data/example/out_exec_filter.conf +2 -2
- data/example/out_forward.conf +1 -1
- data/example/out_forward_buf_file.conf +1 -1
- data/example/out_forward_client.conf +5 -5
- data/example/out_forward_heartbeat_none.conf +1 -1
- data/example/out_forward_sd.conf +1 -1
- data/example/out_forward_shared_key.conf +2 -2
- data/example/out_forward_tls.conf +1 -1
- data/example/out_forward_users.conf +3 -3
- data/example/out_null.conf +4 -4
- data/example/secondary_file.conf +1 -1
- data/fluentd.gemspec +6 -6
- data/lib/fluent/command/fluentd.rb +11 -0
- data/lib/fluent/log.rb +33 -3
- data/lib/fluent/match.rb +9 -0
- data/lib/fluent/plugin/buffer.rb +49 -40
- data/lib/fluent/plugin/buffer/chunk.rb +2 -1
- data/lib/fluent/plugin/formatter.rb +24 -0
- data/lib/fluent/plugin/formatter_hash.rb +3 -1
- data/lib/fluent/plugin/formatter_json.rb +3 -1
- data/lib/fluent/plugin/formatter_ltsv.rb +3 -1
- data/lib/fluent/plugin/formatter_out_file.rb +3 -1
- data/lib/fluent/plugin/formatter_single_value.rb +3 -1
- data/lib/fluent/plugin/formatter_tsv.rb +3 -1
- data/lib/fluent/plugin/in_dummy.rb +2 -123
- data/lib/fluent/plugin/in_exec.rb +4 -2
- data/lib/fluent/plugin/in_http.rb +148 -77
- data/lib/fluent/plugin/in_sample.rb +141 -0
- data/lib/fluent/plugin/in_tail.rb +2 -2
- data/lib/fluent/plugin/out_http.rb +20 -2
- data/lib/fluent/plugin/output.rb +8 -5
- data/lib/fluent/plugin/parser_json.rb +5 -2
- data/lib/fluent/plugin_helper/cert_option.rb +5 -8
- data/lib/fluent/plugin_helper/child_process.rb +3 -2
- data/lib/fluent/plugin_helper/inject.rb +2 -1
- data/lib/fluent/plugin_helper/socket.rb +1 -1
- data/lib/fluent/supervisor.rb +11 -6
- data/lib/fluent/system_config.rb +2 -1
- data/lib/fluent/version.rb +1 -1
- data/test/command/test_binlog_reader.rb +22 -6
- data/test/plugin/test_buffer.rb +4 -0
- data/test/plugin/test_filter_stdout.rb +6 -1
- data/test/plugin/test_formatter_hash.rb +6 -3
- data/test/plugin/test_formatter_json.rb +14 -4
- data/test/plugin/test_formatter_ltsv.rb +13 -5
- data/test/plugin/test_formatter_out_file.rb +35 -14
- data/test/plugin/test_formatter_single_value.rb +12 -6
- data/test/plugin/test_formatter_tsv.rb +12 -4
- data/test/plugin/test_in_exec.rb +18 -0
- data/test/plugin/test_in_http.rb +57 -0
- data/test/plugin/{test_in_dummy.rb → test_in_sample.rb} +25 -25
- data/test/plugin/test_in_tail.rb +3 -0
- data/test/plugin/test_out_file.rb +23 -18
- data/test/plugin/test_output.rb +12 -0
- data/test/plugin_helper/data/cert/empty.pem +0 -0
- data/test/plugin_helper/test_cert_option.rb +7 -0
- data/test/plugin_helper/test_child_process.rb +15 -0
- data/test/plugin_helper/test_compat_parameters.rb +7 -2
- data/test/plugin_helper/test_http_server_helper.rb +5 -0
- data/test/plugin_helper/test_inject.rb +13 -0
- data/test/plugin_helper/test_server.rb +34 -0
- data/test/plugin_helper/test_socket.rb +8 -0
- data/test/test_formatter.rb +34 -10
- data/test/test_log.rb +44 -0
- data/test/test_match.rb +11 -0
- data/test/test_output.rb +6 -1
- data/test/test_static_config_analysis.rb +2 -2
- data/test/test_supervisor.rb +26 -0
- metadata +11 -8
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: 1.11.
|
4
|
+
version: 1.11.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sadayuki Furuhashi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06
|
11
|
+
date: 2020-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: msgpack
|
@@ -70,7 +70,7 @@ dependencies:
|
|
70
70
|
requirements:
|
71
71
|
- - ">="
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version: 2.
|
73
|
+
version: 2.2.2
|
74
74
|
- - "<"
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: 3.0.0
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
requirements:
|
81
81
|
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: 2.
|
83
|
+
version: 2.2.2
|
84
84
|
- - "<"
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: 3.0.0
|
@@ -388,8 +388,6 @@ files:
|
|
388
388
|
- example/copy_roundrobin.conf
|
389
389
|
- example/counter.conf
|
390
390
|
- example/filter_stdout.conf
|
391
|
-
- example/in_dummy_blocks.conf
|
392
|
-
- example/in_dummy_with_compression.conf
|
393
391
|
- example/in_forward.conf
|
394
392
|
- example/in_forward_client.conf
|
395
393
|
- example/in_forward_shared_key.conf
|
@@ -398,6 +396,8 @@ files:
|
|
398
396
|
- example/in_forward_workers.conf
|
399
397
|
- example/in_http.conf
|
400
398
|
- example/in_out_forward.conf
|
399
|
+
- example/in_sample_blocks.conf
|
400
|
+
- example/in_sample_with_compression.conf
|
401
401
|
- example/in_syslog.conf
|
402
402
|
- example/in_tail.conf
|
403
403
|
- example/in_tcp.conf
|
@@ -535,6 +535,7 @@ files:
|
|
535
535
|
- lib/fluent/plugin/in_http.rb
|
536
536
|
- lib/fluent/plugin/in_monitor_agent.rb
|
537
537
|
- lib/fluent/plugin/in_object_space.rb
|
538
|
+
- lib/fluent/plugin/in_sample.rb
|
538
539
|
- lib/fluent/plugin/in_syslog.rb
|
539
540
|
- lib/fluent/plugin/in_tail.rb
|
540
541
|
- lib/fluent/plugin/in_tail/position_file.rb
|
@@ -745,13 +746,13 @@ files:
|
|
745
746
|
- test/plugin/test_formatter_single_value.rb
|
746
747
|
- test/plugin/test_formatter_tsv.rb
|
747
748
|
- test/plugin/test_in_debug_agent.rb
|
748
|
-
- test/plugin/test_in_dummy.rb
|
749
749
|
- test/plugin/test_in_exec.rb
|
750
750
|
- test/plugin/test_in_forward.rb
|
751
751
|
- test/plugin/test_in_gc_stat.rb
|
752
752
|
- test/plugin/test_in_http.rb
|
753
753
|
- test/plugin/test_in_monitor_agent.rb
|
754
754
|
- test/plugin/test_in_object_space.rb
|
755
|
+
- test/plugin/test_in_sample.rb
|
755
756
|
- test/plugin/test_in_syslog.rb
|
756
757
|
- test/plugin/test_in_tail.rb
|
757
758
|
- test/plugin/test_in_tcp.rb
|
@@ -807,6 +808,7 @@ files:
|
|
807
808
|
- test/plugin_helper/data/cert/cert_chains/ca-cert.pem
|
808
809
|
- test/plugin_helper/data/cert/cert_chains/cert-key.pem
|
809
810
|
- test/plugin_helper/data/cert/cert_chains/cert.pem
|
811
|
+
- test/plugin_helper/data/cert/empty.pem
|
810
812
|
- test/plugin_helper/data/cert/generate_cert.rb
|
811
813
|
- test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem
|
812
814
|
- test/plugin_helper/data/cert/with_ca/ca-cert-key.pem
|
@@ -978,13 +980,13 @@ test_files:
|
|
978
980
|
- test/plugin/test_formatter_single_value.rb
|
979
981
|
- test/plugin/test_formatter_tsv.rb
|
980
982
|
- test/plugin/test_in_debug_agent.rb
|
981
|
-
- test/plugin/test_in_dummy.rb
|
982
983
|
- test/plugin/test_in_exec.rb
|
983
984
|
- test/plugin/test_in_forward.rb
|
984
985
|
- test/plugin/test_in_gc_stat.rb
|
985
986
|
- test/plugin/test_in_http.rb
|
986
987
|
- test/plugin/test_in_monitor_agent.rb
|
987
988
|
- test/plugin/test_in_object_space.rb
|
989
|
+
- test/plugin/test_in_sample.rb
|
988
990
|
- test/plugin/test_in_syslog.rb
|
989
991
|
- test/plugin/test_in_tail.rb
|
990
992
|
- test/plugin/test_in_tcp.rb
|
@@ -1040,6 +1042,7 @@ test_files:
|
|
1040
1042
|
- test/plugin_helper/data/cert/cert_chains/ca-cert.pem
|
1041
1043
|
- test/plugin_helper/data/cert/cert_chains/cert-key.pem
|
1042
1044
|
- test/plugin_helper/data/cert/cert_chains/cert.pem
|
1045
|
+
- test/plugin_helper/data/cert/empty.pem
|
1043
1046
|
- test/plugin_helper/data/cert/generate_cert.rb
|
1044
1047
|
- test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem
|
1045
1048
|
- test/plugin_helper/data/cert/with_ca/ca-cert-key.pem
|