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.

Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +92 -1
  3. data/example/copy_roundrobin.conf +3 -3
  4. data/example/counter.conf +1 -1
  5. data/example/filter_stdout.conf +2 -2
  6. data/example/{in_dummy_blocks.conf → in_sample_blocks.conf} +4 -4
  7. data/example/{in_dummy_with_compression.conf → in_sample_with_compression.conf} +3 -3
  8. data/example/logevents.conf +5 -5
  9. data/example/multi_filters.conf +1 -1
  10. data/example/out_exec_filter.conf +2 -2
  11. data/example/out_forward.conf +1 -1
  12. data/example/out_forward_buf_file.conf +1 -1
  13. data/example/out_forward_client.conf +5 -5
  14. data/example/out_forward_heartbeat_none.conf +1 -1
  15. data/example/out_forward_sd.conf +1 -1
  16. data/example/out_forward_shared_key.conf +2 -2
  17. data/example/out_forward_tls.conf +1 -1
  18. data/example/out_forward_users.conf +3 -3
  19. data/example/out_null.conf +4 -4
  20. data/example/secondary_file.conf +1 -1
  21. data/fluentd.gemspec +6 -6
  22. data/lib/fluent/command/fluentd.rb +11 -0
  23. data/lib/fluent/log.rb +33 -3
  24. data/lib/fluent/match.rb +9 -0
  25. data/lib/fluent/plugin/buffer.rb +49 -40
  26. data/lib/fluent/plugin/buffer/chunk.rb +2 -1
  27. data/lib/fluent/plugin/formatter.rb +24 -0
  28. data/lib/fluent/plugin/formatter_hash.rb +3 -1
  29. data/lib/fluent/plugin/formatter_json.rb +3 -1
  30. data/lib/fluent/plugin/formatter_ltsv.rb +3 -1
  31. data/lib/fluent/plugin/formatter_out_file.rb +3 -1
  32. data/lib/fluent/plugin/formatter_single_value.rb +3 -1
  33. data/lib/fluent/plugin/formatter_tsv.rb +3 -1
  34. data/lib/fluent/plugin/in_dummy.rb +2 -123
  35. data/lib/fluent/plugin/in_exec.rb +4 -2
  36. data/lib/fluent/plugin/in_http.rb +148 -77
  37. data/lib/fluent/plugin/in_sample.rb +141 -0
  38. data/lib/fluent/plugin/in_tail.rb +2 -2
  39. data/lib/fluent/plugin/out_http.rb +20 -2
  40. data/lib/fluent/plugin/output.rb +8 -5
  41. data/lib/fluent/plugin/parser_json.rb +5 -2
  42. data/lib/fluent/plugin_helper/cert_option.rb +5 -8
  43. data/lib/fluent/plugin_helper/child_process.rb +3 -2
  44. data/lib/fluent/plugin_helper/inject.rb +2 -1
  45. data/lib/fluent/plugin_helper/socket.rb +1 -1
  46. data/lib/fluent/supervisor.rb +11 -6
  47. data/lib/fluent/system_config.rb +2 -1
  48. data/lib/fluent/version.rb +1 -1
  49. data/test/command/test_binlog_reader.rb +22 -6
  50. data/test/plugin/test_buffer.rb +4 -0
  51. data/test/plugin/test_filter_stdout.rb +6 -1
  52. data/test/plugin/test_formatter_hash.rb +6 -3
  53. data/test/plugin/test_formatter_json.rb +14 -4
  54. data/test/plugin/test_formatter_ltsv.rb +13 -5
  55. data/test/plugin/test_formatter_out_file.rb +35 -14
  56. data/test/plugin/test_formatter_single_value.rb +12 -6
  57. data/test/plugin/test_formatter_tsv.rb +12 -4
  58. data/test/plugin/test_in_exec.rb +18 -0
  59. data/test/plugin/test_in_http.rb +57 -0
  60. data/test/plugin/{test_in_dummy.rb → test_in_sample.rb} +25 -25
  61. data/test/plugin/test_in_tail.rb +3 -0
  62. data/test/plugin/test_out_file.rb +23 -18
  63. data/test/plugin/test_output.rb +12 -0
  64. data/test/plugin_helper/data/cert/empty.pem +0 -0
  65. data/test/plugin_helper/test_cert_option.rb +7 -0
  66. data/test/plugin_helper/test_child_process.rb +15 -0
  67. data/test/plugin_helper/test_compat_parameters.rb +7 -2
  68. data/test/plugin_helper/test_http_server_helper.rb +5 -0
  69. data/test/plugin_helper/test_inject.rb +13 -0
  70. data/test/plugin_helper/test_server.rb +34 -0
  71. data/test/plugin_helper/test_socket.rb +8 -0
  72. data/test/test_formatter.rb +34 -10
  73. data/test/test_log.rb +44 -0
  74. data/test/test_match.rb +11 -0
  75. data/test/test_output.rb +6 -1
  76. data/test/test_static_config_analysis.rb +2 -2
  77. data/test/test_supervisor.rb +26 -0
  78. 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.0
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-04 00:00:00.000000000 Z
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.0.4
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.0.4
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