fluentd 1.4.0 → 1.12.0

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.

Files changed (332) hide show
  1. checksums.yaml +5 -5
  2. data/.drone.yml +35 -0
  3. data/.github/ISSUE_TEMPLATE.md +15 -6
  4. data/.github/ISSUE_TEMPLATE/bug_report.md +40 -0
  5. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  6. data/.github/ISSUE_TEMPLATE/feature_request.md +23 -0
  7. data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
  8. data/.github/workflows/issue-auto-closer.yml +12 -0
  9. data/.github/workflows/stale-actions.yml +22 -0
  10. data/.gitignore +3 -1
  11. data/.gitlab-ci.yml +103 -0
  12. data/.travis.yml +39 -25
  13. data/CHANGELOG.md +813 -9
  14. data/CONTRIBUTING.md +1 -1
  15. data/GithubWorkflow.md +78 -0
  16. data/MAINTAINERS.md +1 -0
  17. data/README.md +18 -9
  18. data/Rakefile +6 -1
  19. data/appveyor.yml +10 -17
  20. data/bin/fluent-cap-ctl +7 -0
  21. data/bin/fluent-ctl +7 -0
  22. data/docs/SECURITY_AUDIT.pdf +0 -0
  23. data/example/copy_roundrobin.conf +3 -3
  24. data/example/counter.conf +1 -1
  25. data/example/filter_stdout.conf +2 -2
  26. data/example/in_http.conf +3 -1
  27. data/example/{in_dummy_blocks.conf → in_sample_blocks.conf} +4 -4
  28. data/example/{in_dummy_with_compression.conf → in_sample_with_compression.conf} +3 -3
  29. data/example/logevents.conf +5 -5
  30. data/example/multi_filters.conf +1 -1
  31. data/example/out_exec_filter.conf +2 -2
  32. data/example/out_forward.conf +1 -1
  33. data/example/out_forward_buf_file.conf +1 -1
  34. data/example/out_forward_client.conf +5 -5
  35. data/example/out_forward_heartbeat_none.conf +1 -1
  36. data/example/out_forward_sd.conf +17 -0
  37. data/example/out_forward_shared_key.conf +2 -2
  38. data/example/out_forward_tls.conf +1 -1
  39. data/example/out_forward_users.conf +3 -3
  40. data/example/out_null.conf +4 -4
  41. data/example/sd.yaml +8 -0
  42. data/example/secondary_file.conf +1 -1
  43. data/fluentd.gemspec +15 -12
  44. data/lib/fluent/agent.rb +3 -1
  45. data/lib/fluent/capability.rb +87 -0
  46. data/lib/fluent/clock.rb +4 -0
  47. data/lib/fluent/command/ca_generate.rb +1 -1
  48. data/lib/fluent/command/cap_ctl.rb +174 -0
  49. data/lib/fluent/command/cat.rb +2 -5
  50. data/lib/fluent/command/ctl.rb +177 -0
  51. data/lib/fluent/command/debug.rb +1 -0
  52. data/lib/fluent/command/fluentd.rb +57 -11
  53. data/lib/fluent/command/plugin_config_formatter.rb +20 -6
  54. data/lib/fluent/command/plugin_generator.rb +8 -2
  55. data/lib/fluent/compat/call_super_mixin.rb +9 -0
  56. data/lib/fluent/compat/exec_util.rb +1 -1
  57. data/lib/fluent/compat/output.rb +3 -3
  58. data/lib/fluent/compat/socket_util.rb +2 -2
  59. data/lib/fluent/config.rb +20 -0
  60. data/lib/fluent/config/configure_proxy.rb +4 -4
  61. data/lib/fluent/config/element.rb +31 -18
  62. data/lib/fluent/config/error.rb +6 -0
  63. data/lib/fluent/config/literal_parser.rb +40 -13
  64. data/lib/fluent/config/section.rb +51 -7
  65. data/lib/fluent/config/types.rb +98 -26
  66. data/lib/fluent/config/v1_parser.rb +5 -3
  67. data/lib/fluent/configurable.rb +2 -2
  68. data/lib/fluent/counter/base_socket.rb +2 -4
  69. data/lib/fluent/counter/client.rb +1 -1
  70. data/lib/fluent/daemonizer.rb +88 -0
  71. data/lib/fluent/engine.rb +97 -127
  72. data/lib/fluent/env.rb +6 -0
  73. data/lib/fluent/error.rb +4 -0
  74. data/lib/fluent/event.rb +28 -26
  75. data/lib/fluent/event_router.rb +2 -1
  76. data/lib/fluent/ext_monitor_require.rb +28 -0
  77. data/lib/fluent/fluent_log_event_router.rb +141 -0
  78. data/lib/fluent/load.rb +1 -1
  79. data/lib/fluent/log.rb +87 -11
  80. data/lib/fluent/match.rb +10 -1
  81. data/lib/fluent/msgpack_factory.rb +50 -6
  82. data/lib/fluent/plugin.rb +15 -1
  83. data/lib/fluent/plugin/bare_output.rb +4 -4
  84. data/lib/fluent/plugin/base.rb +8 -2
  85. data/lib/fluent/plugin/buf_file.rb +51 -22
  86. data/lib/fluent/plugin/buf_file_single.rb +225 -0
  87. data/lib/fluent/plugin/buffer.rb +151 -64
  88. data/lib/fluent/plugin/buffer/chunk.rb +24 -5
  89. data/lib/fluent/plugin/buffer/file_chunk.rb +48 -18
  90. data/lib/fluent/plugin/buffer/file_single_chunk.rb +311 -0
  91. data/lib/fluent/plugin/buffer/memory_chunk.rb +2 -1
  92. data/lib/fluent/plugin/compressable.rb +11 -7
  93. data/lib/fluent/plugin/filter_grep.rb +2 -2
  94. data/lib/fluent/plugin/filter_parser.rb +1 -1
  95. data/lib/fluent/plugin/formatter.rb +24 -0
  96. data/lib/fluent/plugin/formatter_csv.rb +33 -7
  97. data/lib/fluent/plugin/formatter_hash.rb +3 -1
  98. data/lib/fluent/plugin/formatter_json.rb +3 -1
  99. data/lib/fluent/plugin/formatter_ltsv.rb +5 -3
  100. data/lib/fluent/plugin/formatter_out_file.rb +6 -4
  101. data/lib/fluent/plugin/formatter_single_value.rb +4 -2
  102. data/lib/fluent/plugin/formatter_stdout.rb +1 -1
  103. data/lib/fluent/plugin/formatter_tsv.rb +4 -2
  104. data/lib/fluent/plugin/in_dummy.rb +2 -123
  105. data/lib/fluent/plugin/in_exec.rb +4 -2
  106. data/lib/fluent/plugin/in_forward.rb +23 -5
  107. data/lib/fluent/plugin/in_gc_stat.rb +16 -0
  108. data/lib/fluent/plugin/in_http.rb +239 -118
  109. data/lib/fluent/plugin/in_monitor_agent.rb +118 -162
  110. data/lib/fluent/plugin/in_sample.rb +141 -0
  111. data/lib/fluent/plugin/in_syslog.rb +50 -16
  112. data/lib/fluent/plugin/in_tail.rb +378 -348
  113. data/lib/fluent/plugin/in_tail/position_file.rb +253 -0
  114. data/lib/fluent/plugin/in_tcp.rb +101 -8
  115. data/lib/fluent/plugin/in_udp.rb +4 -1
  116. data/lib/fluent/plugin/in_unix.rb +73 -79
  117. data/lib/fluent/plugin/multi_output.rb +5 -5
  118. data/lib/fluent/plugin/out_copy.rb +41 -3
  119. data/lib/fluent/plugin/out_exec_filter.rb +3 -1
  120. data/lib/fluent/plugin/out_file.rb +24 -33
  121. data/lib/fluent/plugin/out_forward.rb +242 -401
  122. data/lib/fluent/plugin/out_forward/ack_handler.rb +161 -0
  123. data/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
  124. data/lib/fluent/plugin/out_forward/error.rb +28 -0
  125. data/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
  126. data/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
  127. data/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
  128. data/lib/fluent/plugin/out_forward/socket_cache.rb +140 -0
  129. data/lib/fluent/plugin/out_http.rb +268 -0
  130. data/lib/fluent/plugin/out_secondary_file.rb +2 -4
  131. data/lib/fluent/plugin/out_stream.rb +1 -1
  132. data/lib/fluent/plugin/output.rb +95 -45
  133. data/lib/fluent/plugin/parser.rb +84 -0
  134. data/lib/fluent/plugin/parser_csv.rb +75 -0
  135. data/lib/fluent/plugin/parser_json.rb +12 -3
  136. data/lib/fluent/plugin/parser_ltsv.rb +4 -2
  137. data/lib/fluent/plugin/parser_multiline.rb +49 -3
  138. data/lib/fluent/plugin/parser_none.rb +1 -2
  139. data/lib/fluent/plugin/parser_regexp.rb +4 -0
  140. data/lib/fluent/plugin/parser_syslog.rb +402 -48
  141. data/lib/fluent/plugin/sd_file.rb +156 -0
  142. data/lib/fluent/plugin/sd_srv.rb +135 -0
  143. data/lib/fluent/plugin/sd_static.rb +58 -0
  144. data/lib/fluent/plugin/service_discovery.rb +80 -0
  145. data/lib/fluent/plugin/storage_local.rb +7 -2
  146. data/lib/fluent/plugin_helper.rb +2 -0
  147. data/lib/fluent/plugin_helper/cert_option.rb +26 -13
  148. data/lib/fluent/plugin_helper/child_process.rb +9 -7
  149. data/lib/fluent/plugin_helper/compat_parameters.rb +11 -1
  150. data/lib/fluent/plugin_helper/extract.rb +1 -1
  151. data/lib/fluent/plugin_helper/formatter.rb +1 -1
  152. data/lib/fluent/plugin_helper/http_server.rb +135 -0
  153. data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
  154. data/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
  155. data/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
  156. data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
  157. data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
  158. data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
  159. data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
  160. data/lib/fluent/plugin_helper/http_server/server.rb +93 -0
  161. data/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
  162. data/lib/fluent/plugin_helper/inject.rb +5 -2
  163. data/lib/fluent/plugin_helper/parser.rb +1 -1
  164. data/lib/fluent/plugin_helper/record_accessor.rb +22 -25
  165. data/lib/fluent/plugin_helper/retry_state.rb +4 -0
  166. data/lib/fluent/plugin_helper/server.rb +32 -35
  167. data/lib/fluent/plugin_helper/service_discovery.rb +87 -0
  168. data/lib/fluent/plugin_helper/service_discovery/manager.rb +140 -0
  169. data/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
  170. data/lib/fluent/plugin_helper/socket.rb +47 -14
  171. data/lib/fluent/plugin_helper/socket_option.rb +31 -5
  172. data/lib/fluent/plugin_helper/storage.rb +1 -1
  173. data/lib/fluent/plugin_helper/thread.rb +1 -0
  174. data/lib/fluent/plugin_id.rb +16 -4
  175. data/lib/fluent/root_agent.rb +12 -44
  176. data/lib/fluent/static_config_analysis.rb +194 -0
  177. data/lib/fluent/supervisor.rb +483 -256
  178. data/lib/fluent/system_config.rb +31 -54
  179. data/lib/fluent/test/driver/base.rb +4 -3
  180. data/lib/fluent/test/driver/base_owned.rb +15 -2
  181. data/lib/fluent/test/filter_test.rb +2 -2
  182. data/lib/fluent/test/output_test.rb +3 -3
  183. data/lib/fluent/time.rb +44 -10
  184. data/lib/fluent/timezone.rb +21 -7
  185. data/lib/fluent/tls.rb +81 -0
  186. data/lib/fluent/variable_store.rb +40 -0
  187. data/lib/fluent/version.rb +1 -1
  188. data/lib/fluent/winsvc.rb +22 -4
  189. data/test/command/test_binlog_reader.rb +22 -6
  190. data/test/command/test_cap_ctl.rb +100 -0
  191. data/test/command/test_ctl.rb +57 -0
  192. data/test/command/test_fluentd.rb +228 -27
  193. data/test/command/test_plugin_config_formatter.rb +63 -8
  194. data/test/command/test_plugin_generator.rb +18 -2
  195. data/test/compat/test_parser.rb +1 -1
  196. data/test/config/test_config_parser.rb +19 -16
  197. data/test/config/test_configurable.rb +232 -40
  198. data/test/config/test_element.rb +18 -0
  199. data/test/config/test_literal_parser.rb +4 -0
  200. data/test/config/test_section.rb +0 -2
  201. data/test/config/test_system_config.rb +52 -91
  202. data/test/config/test_types.rb +293 -120
  203. data/test/counter/test_client.rb +8 -4
  204. data/test/counter/test_store.rb +1 -1
  205. data/test/helper.rb +2 -0
  206. data/test/helpers/fuzzy_assert.rb +89 -0
  207. data/test/helpers/process_extenstion.rb +33 -0
  208. data/test/plugin/data/sd_file/config +11 -0
  209. data/test/plugin/data/sd_file/config.json +17 -0
  210. data/test/plugin/data/sd_file/config.yaml +11 -0
  211. data/test/plugin/data/sd_file/config.yml +11 -0
  212. data/test/plugin/data/sd_file/invalid_config.yml +7 -0
  213. data/test/plugin/in_tail/test_fifo.rb +121 -0
  214. data/test/plugin/in_tail/test_io_handler.rb +132 -0
  215. data/test/plugin/in_tail/test_position_file.rb +285 -0
  216. data/test/plugin/out_forward/test_ack_handler.rb +101 -0
  217. data/test/plugin/out_forward/test_connection_manager.rb +145 -0
  218. data/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
  219. data/test/plugin/out_forward/test_load_balancer.rb +106 -0
  220. data/test/plugin/out_forward/test_socket_cache.rb +149 -0
  221. data/test/plugin/test_buf_file.rb +327 -19
  222. data/test/plugin/test_buf_file_single.rb +833 -0
  223. data/test/plugin/test_buffer.rb +57 -49
  224. data/test/plugin/test_buffer_file_chunk.rb +51 -24
  225. data/test/plugin/test_buffer_file_single_chunk.rb +611 -0
  226. data/test/plugin/test_buffer_memory_chunk.rb +1 -0
  227. data/test/plugin/test_compressable.rb +7 -4
  228. data/test/plugin/test_filter_parser.rb +1 -1
  229. data/test/plugin/test_filter_stdout.rb +6 -1
  230. data/test/plugin/test_formatter_csv.rb +25 -0
  231. data/test/plugin/test_formatter_hash.rb +6 -3
  232. data/test/plugin/test_formatter_json.rb +14 -4
  233. data/test/plugin/test_formatter_ltsv.rb +13 -5
  234. data/test/plugin/test_formatter_out_file.rb +35 -14
  235. data/test/plugin/test_formatter_single_value.rb +12 -6
  236. data/test/plugin/test_formatter_tsv.rb +12 -4
  237. data/test/plugin/test_in_exec.rb +27 -9
  238. data/test/plugin/test_in_forward.rb +106 -22
  239. data/test/plugin/test_in_gc_stat.rb +24 -1
  240. data/test/plugin/test_in_http.rb +232 -8
  241. data/test/plugin/test_in_monitor_agent.rb +177 -30
  242. data/test/plugin/test_in_object_space.rb +3 -7
  243. data/test/plugin/{test_in_dummy.rb → test_in_sample.rb} +35 -37
  244. data/test/plugin/test_in_syslog.rb +135 -10
  245. data/test/plugin/test_in_tail.rb +579 -66
  246. data/test/plugin/test_in_tcp.rb +85 -0
  247. data/test/plugin/test_in_udp.rb +19 -1
  248. data/test/plugin/test_in_unix.rb +128 -73
  249. data/test/plugin/test_out_copy.rb +51 -21
  250. data/test/plugin/test_out_exec_filter.rb +34 -45
  251. data/test/plugin/test_out_file.rb +40 -32
  252. data/test/plugin/test_out_forward.rb +389 -71
  253. data/test/plugin/test_out_http.rb +409 -0
  254. data/test/plugin/test_out_null.rb +1 -1
  255. data/test/plugin/test_out_secondary_file.rb +6 -4
  256. data/test/plugin/test_out_stdout.rb +36 -1
  257. data/test/plugin/test_out_stream.rb +3 -3
  258. data/test/plugin/test_output.rb +56 -3
  259. data/test/plugin/test_output_as_buffered.rb +32 -25
  260. data/test/plugin/test_output_as_buffered_backup.rb +50 -1
  261. data/test/plugin/test_output_as_buffered_overflow.rb +1 -1
  262. data/test/plugin/test_output_as_buffered_retries.rb +12 -6
  263. data/test/plugin/test_output_as_buffered_secondary.rb +11 -6
  264. data/test/plugin/test_parser.rb +40 -0
  265. data/test/plugin/test_parser_csv.rb +83 -0
  266. data/test/plugin/test_parser_json.rb +24 -0
  267. data/test/plugin/test_parser_labeled_tsv.rb +15 -0
  268. data/test/plugin/test_parser_multiline.rb +11 -0
  269. data/test/plugin/test_parser_regexp.rb +9 -0
  270. data/test/plugin/test_parser_syslog.rb +258 -63
  271. data/test/plugin/test_sd_file.rb +228 -0
  272. data/test/plugin/test_sd_srv.rb +230 -0
  273. data/test/plugin_helper/data/cert/cert-key.pem +27 -0
  274. data/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
  275. data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
  276. data/test/plugin_helper/data/cert/cert.pem +19 -0
  277. data/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
  278. data/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
  279. data/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
  280. data/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
  281. data/test/plugin_helper/data/cert/empty.pem +0 -0
  282. data/test/plugin_helper/data/cert/generate_cert.rb +125 -0
  283. data/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
  284. data/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
  285. data/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
  286. data/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
  287. data/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
  288. data/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
  289. data/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
  290. data/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
  291. data/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
  292. data/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
  293. data/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
  294. data/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
  295. data/test/plugin_helper/http_server/test_app.rb +65 -0
  296. data/test/plugin_helper/http_server/test_route.rb +32 -0
  297. data/test/plugin_helper/service_discovery/test_manager.rb +93 -0
  298. data/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
  299. data/test/plugin_helper/test_cert_option.rb +25 -0
  300. data/test/plugin_helper/test_child_process.rb +101 -58
  301. data/test/plugin_helper/test_compat_parameters.rb +7 -2
  302. data/test/plugin_helper/test_http_server_helper.rb +363 -0
  303. data/test/plugin_helper/test_inject.rb +42 -0
  304. data/test/plugin_helper/test_record_accessor.rb +42 -1
  305. data/test/plugin_helper/test_server.rb +106 -12
  306. data/test/plugin_helper/test_service_discovery.rb +105 -0
  307. data/test/plugin_helper/test_socket.rb +139 -0
  308. data/test/plugin_helper/test_timer.rb +11 -13
  309. data/test/test_capability.rb +74 -0
  310. data/test/test_config.rb +27 -5
  311. data/test/test_daemonizer.rb +91 -0
  312. data/test/test_engine.rb +203 -0
  313. data/test/test_event.rb +15 -15
  314. data/test/test_event_time.rb +13 -0
  315. data/test/test_fluent_log_event_router.rb +99 -0
  316. data/test/test_formatter.rb +34 -10
  317. data/test/test_log.rb +122 -8
  318. data/test/test_logger_initializer.rb +46 -0
  319. data/test/test_match.rb +11 -0
  320. data/test/test_msgpack_factory.rb +18 -0
  321. data/test/test_output.rb +8 -3
  322. data/test/test_plugin_id.rb +18 -0
  323. data/test/test_root_agent.rb +1 -3
  324. data/test/test_static_config_analysis.rb +177 -0
  325. data/test/test_supervisor.rb +193 -136
  326. data/test/test_test_drivers.rb +4 -3
  327. data/test/test_time_formatter.rb +140 -121
  328. data/test/test_time_parser.rb +8 -0
  329. data/test/test_tls.rb +65 -0
  330. data/test/test_variable_store.rb +65 -0
  331. metadata +250 -36
  332. data/Vagrantfile +0 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ca1f6da9527b76b4421c1507ec0e2702687e196d
4
- data.tar.gz: 8ae3c1fbac074dbc699bb36cb0975c78e94e3769
2
+ SHA256:
3
+ metadata.gz: e1d896832b5f3e1f9de589d63240f7e181d95d3c1b6f425bb200ba28f6eb837a
4
+ data.tar.gz: b5298a76eb700a0a717d474f9b2cd55a063be27dec4ce7117d60fee2c8c17bb2
5
5
  SHA512:
6
- metadata.gz: 4a2298e9e76277c4ce41c7b43e239643a0b3ad8a953ab47bc242a9e22645e0d517853f73f8e37699ad5bbc57dc36e9d5cfb0504da155fb575c36eebf1893cfb7
7
- data.tar.gz: 783fb04e180adc4711a6ebf83b91d6fa2d318300ca31ba0c49c8d247c2eceed4992b22be98765f7b30e316cd7815cf9aac7e81873b221c480f4df80f51a3fccb
6
+ metadata.gz: c5f1df166ee4dd7b53913f8e042a82ed001f414f841442d683ad9db74b990923a9fdb0886a3858357b8e9be278aa335974d8dd4aaffeba5531b97c179eea0117
7
+ data.tar.gz: 2338b8ec10282dd47a5641f003a49bfce19184fb10d5df949993828b8ba1d19f6c21028ed0afab3c997c95b1a3c01fea49b231438ee29e3b6424f908a9acf227
@@ -0,0 +1,35 @@
1
+ kind: pipeline
2
+ name: fluentd-test-arm64-2-6-3
3
+
4
+ platform:
5
+ os: linux
6
+ arch: arm64
7
+
8
+ steps:
9
+ - name: fluentd-test-arm64-2-6-3
10
+ image: arm64v8/ruby:2.6.3
11
+ commands:
12
+ - apt update
13
+ - apt -y install libgmp3-dev
14
+ - export BUNDLE_GEMFILE=$PWD/Gemfile
15
+ - gem update --system
16
+ - bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
17
+ - bundle exec rake test
18
+ ---
19
+ kind: pipeline
20
+ name: fluentd-test-arm64-latest
21
+
22
+ platform:
23
+ os: linux
24
+ arch: arm64
25
+
26
+ steps:
27
+ - name: fluentd-test-arm64-latest
28
+ image: arm64v8/ruby:latest
29
+ commands:
30
+ - apt update
31
+ - apt -y install libgmp3-dev
32
+ - export BUNDLE_GEMFILE=$PWD/Gemfile
33
+ - gem update --system
34
+ - bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
35
+ - bundle exec rake test
@@ -1,8 +1,17 @@
1
1
  Check [CONTRIBUTING guideline](https://github.com/fluent/fluentd/blob/master/CONTRIBUTING.md) first and here is the list to help us investigate the problem.
2
2
 
3
- - fluentd or td-agent version.
4
- - Environment information:
5
- - Operating system: `cat /etc/os-release`
6
- - Kernel version: `uname -r`
7
- - Your configuration
8
- - Your problem explanation. If you have an error logs, write it together.
3
+ **Got a question or problem?**
4
+
5
+ RESOURCES of [Official site](https://www.fluentd.org/) and [Fluentd documentation](https://docs.fluentd.org/) may help you.
6
+
7
+ If you have further questions about Fluentd and plugins, please direct these to [Mailing List](https://groups.google.com/forum/#!forum/fluentd).
8
+ Don't use Github issue for asking questions. Here are examples:
9
+
10
+ - I installed xxx plugin but it doesn't work. Why?
11
+ - Fluentd starts but logs are not sent to xxx. Am I wrong?
12
+ - I want to do xxx. How to realize it with plugins?
13
+
14
+ We may close such questions to keep clear repository for developers and users.
15
+ Github issue is mainly for submitting a bug report or feature request. See below.
16
+
17
+ If you can't judge your case is a bug or not, use mailing list or slack first.
@@ -0,0 +1,40 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Create a report with a procedure for reproducing the bug
4
+
5
+ ---
6
+
7
+ Check [CONTRIBUTING guideline](https://github.com/fluent/fluentd/blob/master/CONTRIBUTING.md) first and here is the list to help us investigate the problem.
8
+
9
+ **Describe the bug**
10
+ <!-- A clear and concise description of what the bug is. -->
11
+
12
+ **To Reproduce**
13
+ <!-- Steps to reproduce the behavior: -->
14
+
15
+ **Expected behavior**
16
+ <!-- A clear and concise description of what you expected to happen. -->
17
+
18
+ **Your Environment**
19
+
20
+ - Fluentd or td-agent version: `fluentd --version` or `td-agent --version`
21
+ - Operating system: `cat /etc/os-release`
22
+ - Kernel version: `uname -r`
23
+
24
+ If you hit the problem with older fluentd version, try latest version first.
25
+
26
+ **Your Configuration**
27
+
28
+ ```
29
+ <!-- Write your configuration here -->
30
+ ```
31
+
32
+ **Your Error Log**
33
+
34
+ ```
35
+ <!-- Write your **ALL** error log here -->
36
+ ```
37
+
38
+ **Additional context**
39
+
40
+ <!-- Add any other context about the problem here. -->
@@ -0,0 +1,5 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: Ask a Question
4
+ url: https://groups.google.com/forum/#!forum/fluentd
5
+ about: I have questions about Fluentd and plugins. Please ask and answer questions here
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+
5
+ ---
6
+
7
+ Check [CONTRIBUTING guideline](https://github.com/fluent/fluentd/blob/master/CONTRIBUTING.md) first and here is the list to help us investigate the problem.
8
+
9
+ **Is your feature request related to a problem? Please describe.**
10
+
11
+ <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
12
+
13
+ **Describe the solution you'd like**
14
+
15
+ <!-- A clear and concise description of what you want to happen. -->
16
+
17
+ **Describe alternatives you've considered**
18
+
19
+ <!-- A clear and concise description of any alternative solutions or features you've considered. -->
20
+
21
+ **Additional context**
22
+
23
+ <!-- Add any other context or screenshots about the feature request here. -->
@@ -0,0 +1,14 @@
1
+ <!--
2
+ Thank you for contributing to Fluentd!
3
+ Your commits need to follow DCO: https://probot.github.io/apps/dco/
4
+ And please provide the following information to help us make the most of your pull request:
5
+ -->
6
+
7
+ **Which issue(s) this PR fixes**:
8
+ Fixes #
9
+
10
+ **What this PR does / why we need it**:
11
+
12
+ **Docs Changes**:
13
+
14
+ **Release Note**:
@@ -0,0 +1,12 @@
1
+ name: Autocloser
2
+ on: [issues]
3
+ jobs:
4
+ autoclose:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Autoclose issues that did not follow issue template
8
+ uses: roots/issue-closer-action@v1.1
9
+ with:
10
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
11
+ issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the issue template"
12
+ issue-pattern: "(.*Describe the bug.*)|(.*Is your feature request related to a problem.*)"
@@ -0,0 +1,22 @@
1
+ name: "Mark or close stale issues and PRs"
2
+ on:
3
+ schedule:
4
+ - cron: "00 10 * * *"
5
+
6
+ jobs:
7
+ stale:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/stale@v3
11
+ with:
12
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
13
+ days-before-stale: 90
14
+ days-before-close: 30
15
+ stale-issue-message: "This issue has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this issue will be closed in 30 days"
16
+ stale-pr-message: "This PR has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this PR will be closed in 30 days"
17
+ close-issue-message: "This issue was automatically closed because of stale in 30 days"
18
+ close-pr-message: "This PR was automatically closed because of stale in 30 days"
19
+ stale-pr-label: "stale"
20
+ stale-issue-label: "stale"
21
+ exempt-issue-labels: "bug,enhancement,feature request,pending,work_in_progress,v1,v2"
22
+ exempt-pr-labels: "bug,enhancement,feature request,pending,work_in_progress,v1,v2"
data/.gitignore CHANGED
@@ -25,4 +25,6 @@ Gemfile.local
25
25
  coverage/*
26
26
  .vagrant/
27
27
  cov-int/
28
- cov-fluentd.tar.gz
28
+ cov-fluentd.tar.gz
29
+ .vscode
30
+ .idea/
@@ -0,0 +1,103 @@
1
+ .install-template:
2
+ before_script:
3
+ - gem update --system=2.7.8
4
+ - ruby -v
5
+
6
+ .test-template:
7
+ before_script:
8
+ - gem install rake
9
+ - bundle install
10
+ - chmod 777 -R ./test
11
+
12
+ stages:
13
+ - build
14
+ - tests
15
+
16
+ 2-4-5:
17
+ image: "ruby:2.4.5"
18
+ stage: build
19
+ extends: .install-template
20
+ script:
21
+ - bundle install --jobs=3 --retry=3
22
+ cache:
23
+ key: "$CI_COMMIT_REF_SLUG 2-4-5"
24
+ paths:
25
+
26
+ 2-5-5:
27
+ image: "ruby:2.5.5"
28
+ stage: build
29
+ extends: .install-template
30
+ script:
31
+ - bundle install --jobs=3 --retry=3
32
+ cache:
33
+ key: "$CI_COMMIT_REF_SLUG 2-5-5"
34
+ paths:
35
+
36
+ 2-6-3:
37
+ image: "ruby:2.6.3"
38
+ stage: build
39
+ extends: .install-template
40
+ script:
41
+ - bundle install --jobs=3 --retry=3
42
+ cache:
43
+ key: "$CI_COMMIT_REF_SLUG 2-6-3"
44
+ paths:
45
+
46
+ rubyhead:
47
+ image: "ruby:latest"
48
+ stage: build
49
+ extends: .install-template
50
+ script:
51
+ - bundle install --jobs=3 --retry=3
52
+ cache:
53
+ key: "$CI_COMMIT_REF_SLUG latest"
54
+ paths:
55
+ - ./*
56
+
57
+ 2-4-5-test:
58
+ image: "ruby:2.4.5"
59
+ stage: tests
60
+ allow_failure: true
61
+ extends: .test-template
62
+ script:
63
+ - bundle exec rake test
64
+ cache:
65
+ key: "$CI_COMMIT_REF_SLUG 2-4-5"
66
+ paths:
67
+ - ./*
68
+
69
+ 2-5-5-test:
70
+ image: "ruby:2.5.5"
71
+ stage: tests
72
+ allow_failure: true
73
+ extends: .test-template
74
+ script:
75
+ - bundle exec rake test
76
+ cache:
77
+ key: "$CI_COMMIT_REF_SLUG 2-5-5"
78
+ paths:
79
+ - ./*
80
+
81
+ 2-6-3-test:
82
+ image: "ruby:2.6.3"
83
+ stage: tests
84
+ allow_failure: true
85
+ extends: .test-template
86
+ script:
87
+ - bundle exec rake test
88
+ cache:
89
+ key: "$CI_COMMIT_REF_SLUG 2-6-3"
90
+ paths:
91
+ - ./*
92
+
93
+ rubyhead-test:
94
+ image: "ruby:latest"
95
+ stage: tests
96
+ allow_failure: true
97
+ extends: .test-template
98
+ script:
99
+ - bundle exec rake test
100
+ cache:
101
+ key: "$CI_COMMIT_REF_SLUG latest"
102
+ paths:
103
+ - ./*
@@ -7,52 +7,65 @@ cache: bundler
7
7
  # See here for osx_image -> OSX versions: https://docs.travis-ci.com/user/languages/objective-c
8
8
  matrix:
9
9
  include:
10
- - rvm: 2.1.10
10
+ - rvm: 2.4.9
11
11
  os: linux
12
- - rvm: 2.2.10
12
+ env: USE_CAPNG=false
13
+ - rvm: 2.4.9
14
+ os: linux-ppc64le
15
+ env: USE_CAPNG=false
16
+ - rvm: 2.5.7
13
17
  os: linux
14
- - rvm: 2.4.5
18
+ env: USE_CAPNG=false
19
+ - rvm: 2.5.7
15
20
  os: linux
16
- - rvm: 2.5.3
21
+ arch: s390x
22
+ dist: xenial
23
+ env: USE_CAPNG=false
24
+ - rvm: 2.6.5
17
25
  os: linux
18
- - rvm: 2.6.0
26
+ env: USE_CAPNG=false
27
+ - rvm: 2.6.6
19
28
  os: linux
29
+ env: USE_CAPNG=true
30
+ - rvm: 2.7.0
31
+ os: linux
32
+ env: USE_CAPNG=false
20
33
  - rvm: ruby-head
21
34
  os: linux
22
- - rvm: 2.1.10
23
- os: osx
24
- osx_image: xcode8.3 # OSX 10.12
25
- # - rvm: 2.2.6
26
- # os: osx
27
- # osx_image: xcode8.2 # OSX 10.12
28
- # - rvm: 2.3.3
29
- # os: osx
30
- # osx_image: xcode8.2 # OSX 10.12
31
- - rvm: 2.4.1
35
+ env: USE_CAPNG=false
36
+ - rvm: ruby-head
37
+ os: linux-ppc64le
38
+ env: USE_CAPNG=false
39
+ - rvm: 2.4.6
32
40
  os: osx
33
41
  osx_image: xcode8.3 # OSX 10.12
42
+ env: USE_CAPNG=false
34
43
  - rvm: ruby-head
35
44
  os: osx
36
45
  osx_image: xcode8.3 # OSX 10.12
46
+ env: USE_CAPNG=false
37
47
  allow_failures:
38
- - rvm: 2.3.8
39
- os: linux
40
- - rvm: 2.1.10
41
- os: osx
42
- osx_image: xcode8.3
43
- - rvm: 2.4.1
48
+ - rvm: 2.4.6
44
49
  os: osx
45
50
  osx_image: xcode8.3
51
+ env: USE_CAPNG=false
52
+ - rvm: 2.5.7
53
+ os: linux
54
+ arch: s390x
55
+ dist: xenial
56
+ env: USE_CAPNG=false
46
57
  - rvm: ruby-head
58
+ env: USE_CAPNG=false
47
59
 
48
60
  branches:
49
61
  only:
50
62
  - master
51
- - v0.12
52
- - v0.14
53
63
 
54
- before_install:
55
- - gem update --system=2.7.8
64
+ before_install: |
65
+ gem update --system=3.1.2
66
+ if [[ x"${USE_CAPNG}" == "xtrue" ]]; then
67
+ echo 'gem "capng_c"' >> Gemfile.local
68
+ fi
56
69
 
57
70
  sudo: false
58
71
  dist: trusty # for TLSv1.2 support
@@ -61,3 +74,4 @@ addons:
61
74
  apt:
62
75
  packages:
63
76
  - libgmp3-dev
77
+ - libcap-ng-dev
@@ -1,4 +1,806 @@
1
- # v1.3
1
+ # v1.12
2
+
3
+ ## Release v1.12.0 - 2020/01/05
4
+
5
+ ### New feature
6
+
7
+ * in_tail: Add `follow_inode` to support log rotation with wild card
8
+ https://github.com/fluent/fluentd/pull/2992
9
+ * in_tail: Handle linux capability
10
+ https://github.com/fluent/fluentd/pull/3155
11
+ https://github.com/fluent/fluentd/pull/3162
12
+ * windows: Add win32 events alternative to unix signals
13
+ https://github.com/fluent/fluentd/pull/3131
14
+
15
+ ### Enhancement
16
+
17
+ * buffer: Enable metadata comparison optimization on all platform
18
+ https://github.com/fluent/fluentd/pull/3095
19
+ * fluent-plugin-config-formatter: Handle `service_discovery` type
20
+ https://github.com/fluent/fluentd/pull/3178
21
+ * in_http: Add `add_query_params` parameter to add query params to event record
22
+ https://github.com/fluent/fluentd/pull/3197
23
+ * inject: Support `unixtime_micros` and `unixtime_nanos` in `time_type`
24
+ https://github.com/fluent/fluentd/pull/3220
25
+ * Refactoring code
26
+ https://github.com/fluent/fluentd/pull/3167
27
+ https://github.com/fluent/fluentd/pull/3170
28
+ https://github.com/fluent/fluentd/pull/3180
29
+ https://github.com/fluent/fluentd/pull/3196
30
+ https://github.com/fluent/fluentd/pull/3213
31
+ https://github.com/fluent/fluentd/pull/3222
32
+
33
+ ### Bug fix
34
+
35
+ * output: Prevent retry.step from being called too many times in a short time
36
+ https://github.com/fluent/fluentd/pull/3203
37
+
38
+ # v1.11
39
+
40
+ ## Release v1.11.5 - 2020/11/06
41
+
42
+ ### Enhancement
43
+
44
+ * formatter: Provide `newline` parameter to support `CRLF`
45
+ https://github.com/fluent/fluentd/pull/3152
46
+ * out_http: adding support for intermediate certificates
47
+ https://github.com/fluent/fluentd/pull/3146
48
+ * Update serverengine dependency to 2.2.2 or later
49
+
50
+ ### Bug fix
51
+
52
+ * Fix a bug that windows service isn't stopped gracefuly
53
+ https://github.com/fluent/fluentd/pull/3156
54
+
55
+ ## Release v1.11.4 - 2020/10/13
56
+
57
+ ### Enhancement
58
+
59
+ * inject: Support `unixtime_millis` in `time_type` parameter
60
+ https://github.com/fluent/fluentd/pull/3145
61
+
62
+ ### Bug fix
63
+
64
+ * out_http: Fix broken data with `json_array true`
65
+ https://github.com/fluent/fluentd/pull/3144
66
+ * output: Fix wrong logging issue for `${chunk_id}`
67
+ https://github.com/fluent/fluentd/pull/3134
68
+
69
+ ## Release v1.11.3 - 2020/09/30
70
+
71
+ ### Enhancement
72
+
73
+ * in_exec: Add `connect_mode` parameter to read stderr
74
+ https://github.com/fluent/fluentd/pull/3108
75
+ * parser_json: Improve the performance
76
+ https://github.com/fluent/fluentd/pull/3109
77
+ * log: Add `ignore_same_log_interval` parameter
78
+ https://github.com/fluent/fluentd/pull/3119
79
+ * Upgrade win32 gems
80
+ https://github.com/fluent/fluentd/pull/3100
81
+ * Refactoring code
82
+ https://github.com/fluent/fluentd/pull/3094
83
+ https://github.com/fluent/fluentd/pull/3118
84
+
85
+ ### Bug fix
86
+
87
+ * buffer: Fix calculation of timekey stats
88
+ https://github.com/fluent/fluentd/pull/3018
89
+ * buffer: fix binmode usage for prevent gc
90
+ https://github.com/fluent/fluentd/pull/3138
91
+
92
+ ## Release v1.11.2 - 2020/08/04
93
+
94
+ ### Enhancement
95
+
96
+ * `in_dummy` renamed to `in_sample`
97
+ https://github.com/fluent/fluentd/pull/3065
98
+ * Allow regular expression in filter/match directive
99
+ https://github.com/fluent/fluentd/pull/3071
100
+ * Refactoring code
101
+ https://github.com/fluent/fluentd/pull/3051
102
+
103
+ ### Bug fix
104
+
105
+ * buffer: Fix log message for `chunk_limit_records` case
106
+ https://github.com/fluent/fluentd/pull/3079
107
+ * buffer: Fix timekey optimization for non-windows platform
108
+ https://github.com/fluent/fluentd/pull/3092
109
+ * cert: Raise an error for broken certificate file
110
+ https://github.com/fluent/fluentd/pull/3086
111
+ * cert: Set TLS ciphers list correcty on older OpenSSL
112
+ https://github.com/fluent/fluentd/pull/3093
113
+
114
+ ## Release v1.11.1 - 2020/06/22
115
+
116
+ ### Enhancement
117
+
118
+ * in_http: Add `dump_error_log` parameter
119
+ https://github.com/fluent/fluentd/pull/3035
120
+ * in_http: Improve time field handling
121
+ https://github.com/fluent/fluentd/pull/3046
122
+ * Refactoring code
123
+ https://github.com/fluent/fluentd/pull/3047
124
+
125
+ ### Bug fix
126
+
127
+ * in_tail: Use actual path instead of based pattern for ignore list
128
+ https://github.com/fluent/fluentd/pull/3042
129
+ * child_process helper: Fix child process failure due to SIGPIPE if the command uses stdout
130
+ https://github.com/fluent/fluentd/pull/3044
131
+
132
+ ## Release v1.11.0 - 2020/06/04
133
+
134
+ ### New feature
135
+
136
+ * in_unix: Use v1 API
137
+ https://github.com/fluent/fluentd/pull/2992
138
+
139
+ ### Enhancement
140
+
141
+ * parser_syslog: Support any `time_format` for RFC3164 string parser
142
+ https://github.com/fluent/fluentd/pull/3014
143
+ * parser_syslog: Add new parser for RFC5424
144
+ https://github.com/fluent/fluentd/pull/3015
145
+ * Refactoring code
146
+ https://github.com/fluent/fluentd/pull/3019
147
+
148
+ ### Bug fix
149
+
150
+ * in_gc_stat: Add `use_symbol_keys` parameter to emit string key record
151
+ https://github.com/fluent/fluentd/pull/3008
152
+
153
+ # v1.10
154
+
155
+ ## Release v1.10.4 - 2020/05/12
156
+
157
+ ### Enhancement
158
+
159
+ * out_http: Support single json array payload
160
+ https://github.com/fluent/fluentd/pull/2973
161
+ * Refactoring
162
+ https://github.com/fluent/fluentd/pull/2988
163
+
164
+ ### Bug fix
165
+
166
+ * supervisor: Call `File.umask(0)` for standalone worker
167
+ https://github.com/fluent/fluentd/pull/2987
168
+ * out_forward: Fix ZeroDivisionError issue with `weight 0`
169
+ https://github.com/fluent/fluentd/pull/2989
170
+
171
+ ## Release v1.10.3 - 2020/05/01
172
+
173
+ ### Enhancement
174
+
175
+ * record_accessor: Add `set` method
176
+ https://github.com/fluent/fluentd/pull/2977
177
+ * config: Ruby DSL format is deprecated
178
+ https://github.com/fluent/fluentd/pull/2958
179
+ * Refactor code
180
+ https://github.com/fluent/fluentd/pull/2961
181
+ https://github.com/fluent/fluentd/pull/2962
182
+ https://github.com/fluent/fluentd/pull/2965
183
+ https://github.com/fluent/fluentd/pull/2966
184
+ https://github.com/fluent/fluentd/pull/2978
185
+
186
+ ### Bug fix
187
+
188
+ * out_forward: Disable `linger_timeout` setting on Windows
189
+ https://github.com/fluent/fluentd/pull/2959
190
+ * out_forward: Fix warning of service discovery manager when fluentd stops
191
+ https://github.com/fluent/fluentd/pull/2974
192
+
193
+ ## Release v1.10.2 - 2020/04/15
194
+
195
+ ### Enhancement
196
+
197
+ * out_copy: Add plugin_id to log message
198
+ https://github.com/fluent/fluentd/pull/2934
199
+ * socket: Allow cert chains in mutual auth
200
+ https://github.com/fluent/fluentd/pull/2930
201
+ * system: Add ignore_repeated_log_interval parameter
202
+ https://github.com/fluent/fluentd/pull/2937
203
+ * windows: Allow to launch fluentd from whitespace included path
204
+ https://github.com/fluent/fluentd/pull/2920
205
+ * Refactor code
206
+ https://github.com/fluent/fluentd/pull/2935
207
+ https://github.com/fluent/fluentd/pull/2936
208
+ https://github.com/fluent/fluentd/pull/2938
209
+ https://github.com/fluent/fluentd/pull/2939
210
+ https://github.com/fluent/fluentd/pull/2946
211
+
212
+ ### Bug fix
213
+
214
+ * in_syslog: Fix octet-counting mode bug
215
+ https://github.com/fluent/fluentd/pull/2942
216
+ * out_forward: Create timer for purging obsolete sockets when keepalive_timeout is not set
217
+ https://github.com/fluent/fluentd/pull/2943
218
+ * out_forward: Need authentication when sending tcp heartbeat with keepalive
219
+ https://github.com/fluent/fluentd/pull/2945
220
+ * command: Fix fluent-debug start failure
221
+ https://github.com/fluent/fluentd/pull/2948
222
+ * command: Fix regression of supervisor's worker and `--daemon` combo
223
+ https://github.com/fluent/fluentd/pull/2950
224
+
225
+ ## Release v1.10.1 - 2020/04/02
226
+
227
+ ### Enhancement
228
+
229
+ * command: `--daemon` and `--no-supervisor` now work together
230
+ https://github.com/fluent/fluentd/pull/2912
231
+ * Refactor code
232
+ https://github.com/fluent/fluentd/pull/2913
233
+
234
+ ### Bug fix
235
+
236
+ * in_tail: `Fix pos_file_compaction_interval` parameter type
237
+ https://github.com/fluent/fluentd/pull/2921
238
+ * in_tail: Fix seek position update after compaction
239
+ https://github.com/fluent/fluentd/pull/2922
240
+ * parser_syslog: Fix regression in the `with_priority` and RFC5424 case
241
+ https://github.com/fluent/fluentd/pull/2923
242
+
243
+ ### Misc
244
+
245
+ * Add document for security audit
246
+ https://github.com/fluent/fluentd/pull/2911
247
+
248
+ ## Release v1.10.0 - 2020/03/24
249
+
250
+ ### New feature
251
+
252
+ * sd plugin: Add SRV record plugin
253
+ https://github.com/fluent/fluentd/pull/2876
254
+
255
+ ### Enhancement
256
+
257
+ * server: Add `cert_verifier` parameter for TLS transport
258
+ https://github.com/fluent/fluentd/pull/2888
259
+ * parser_syslog: Support customized time format
260
+ https://github.com/fluent/fluentd/pull/2886
261
+ * in_dummy: Delete `suspend` parameter
262
+ https://github.com/fluent/fluentd/pull/2897
263
+ * Refactor code
264
+ https://github.com/fluent/fluentd/pull/2858
265
+ https://github.com/fluent/fluentd/pull/2862
266
+ https://github.com/fluent/fluentd/pull/2864
267
+ https://github.com/fluent/fluentd/pull/2869
268
+ https://github.com/fluent/fluentd/pull/2870
269
+ https://github.com/fluent/fluentd/pull/2874
270
+ https://github.com/fluent/fluentd/pull/2881
271
+ https://github.com/fluent/fluentd/pull/2885
272
+ https://github.com/fluent/fluentd/pull/2894
273
+ https://github.com/fluent/fluentd/pull/2896
274
+ https://github.com/fluent/fluentd/pull/2898
275
+ https://github.com/fluent/fluentd/pull/2899
276
+ https://github.com/fluent/fluentd/pull/2900
277
+ https://github.com/fluent/fluentd/pull/2901
278
+ https://github.com/fluent/fluentd/pull/2906
279
+
280
+ ### Bug fix
281
+
282
+ * out_forward: windows: Permit to specify `linger_timeout`
283
+ https://github.com/fluent/fluentd/pull/2868
284
+ * parser_syslog: Fix syslog format detection
285
+ https://github.com/fluent/fluentd/pull/2879
286
+ * buffer: Fix `available_buffer_space_ratio` calculation
287
+ https://github.com/fluent/fluentd/pull/2882
288
+ * tls: Support CRLF based X.509 certificates
289
+ https://github.com/fluent/fluentd/pull/2890
290
+ * msgpack_factory mixin: Fix performance penalty for deprecation log
291
+ https://github.com/fluent/fluentd/pull/2903
292
+
293
+
294
+ # v1.9
295
+
296
+ ## Release v1.9.3 - 2020/03/05
297
+
298
+ ### Enhancement
299
+
300
+ * in_tail: Emit buffered lines as `unmatched_line` at shutdown phase when `emit_unmatched_lines true`
301
+ https://github.com/fluent/fluentd/pull/2837
302
+ * Specify directory mode explicitly
303
+ https://github.com/fluent/fluentd/pull/2827
304
+ * server helper: Change SSLError log level to warn in accept
305
+ https://github.com/fluent/fluentd/pull/2861
306
+ * Refactor code
307
+ https://github.com/fluent/fluentd/pull/2829
308
+ https://github.com/fluent/fluentd/pull/2830
309
+ https://github.com/fluent/fluentd/pull/2832
310
+ https://github.com/fluent/fluentd/pull/2836
311
+ https://github.com/fluent/fluentd/pull/2838
312
+ https://github.com/fluent/fluentd/pull/2842
313
+ https://github.com/fluent/fluentd/pull/2843
314
+
315
+ ### Bug fix
316
+
317
+ * buffer: Add seq to metadata that it can be unique
318
+ https://github.com/fluent/fluentd/pull/2824
319
+ https://github.com/fluent/fluentd/pull/2853
320
+ * buffer: Use `Tempfile` as binmode for decompression
321
+ https://github.com/fluent/fluentd/pull/2847
322
+
323
+ ### Misc
324
+
325
+ * Add `.idea` to git ignore file
326
+ https://github.com/fluent/fluentd/pull/2834
327
+ * appveyor: Fix tests
328
+ https://github.com/fluent/fluentd/pull/2853
329
+ https://github.com/fluent/fluentd/pull/2855
330
+ * Update pem for test
331
+ https://github.com/fluent/fluentd/pull/2839
332
+
333
+ ## Release v1.9.2 - 2020/02/13
334
+
335
+ ### Enhancement
336
+
337
+ * in_tail: Add `pos_file_compaction_interval` parameter for auto compaction
338
+ https://github.com/fluent/fluentd/pull/2805
339
+ * command: Use given encoding when RUBYOPT has `-E`
340
+ https://github.com/fluent/fluentd/pull/2814
341
+
342
+ ### Bug fix
343
+
344
+ * command: Accept RUBYOPT with two or more options
345
+ https://github.com/fluent/fluentd/pull/2807
346
+ * command: Fix infinite loop bug when RUBYOPT is invalid
347
+ https://github.com/fluent/fluentd/pull/2813
348
+ * log: serverengine's log should be formatted with the same format of fluentd
349
+ https://github.com/fluent/fluentd/pull/2812
350
+ * in_http: Fix `NoMethodError` when `OPTIONS` request doesn't have 'Origin' header
351
+ https://github.com/fluent/fluentd/pull/2823
352
+ * parser_syslog: Improved for parsing RFC5424 structured data in `parser_syslog`
353
+ https://github.com/fluent/fluentd/pull/2816
354
+
355
+ ## Release v1.9.1 - 2020/01/31
356
+
357
+ ### Enhancement
358
+
359
+ * http_server helper: Support HTTPS
360
+ https://github.com/fluent/fluentd/pull/2787
361
+ * in_tail: Add `path_delimiter` to split with any char
362
+ https://github.com/fluent/fluentd/pull/2796
363
+ * in_tail: Remove an entry from PositionaFile when it is unwatched
364
+ https://github.com/fluent/fluentd/pull/2803
365
+ * out_http: Add warning for `retryable_response_code`
366
+ https://github.com/fluent/fluentd/pull/2809
367
+ * parser_syslog: Add multiline RFC5424 support
368
+ https://github.com/fluent/fluentd/pull/2767
369
+ * Add TLS module to unify TLS related code
370
+ https://github.com/fluent/fluentd/pull/2802
371
+
372
+ ### Bug fix
373
+
374
+ * output: Add `EncodingError` to unrecoverable errors
375
+ https://github.com/fluent/fluentd/pull/2808
376
+ * tls: Fix TLS version handling in secure mode
377
+ https://github.com/fluent/fluentd/pull/2802
378
+
379
+ ## Release v1.9.0 - 2020/01/22
380
+
381
+ ### New feature
382
+
383
+ * New light-weight config reload mechanizm
384
+ https://github.com/fluent/fluentd/pull/2716
385
+ * Drop ruby 2.1/2.2/2.3 support
386
+ https://github.com/fluent/fluentd/pull/2750
387
+
388
+ ### Enhancement
389
+
390
+ * output: Show better message for secondary warning
391
+ https://github.com/fluent/fluentd/pull/2751
392
+ * Use `ext_monitor` gem if it is installed. For ruby 2.6 or earlier
393
+ https://github.com/fluent/fluentd/pull/2670
394
+ * Support Ruby's Time class in msgpack serde
395
+ https://github.com/fluent/fluentd/pull/2775
396
+ * Clean up code/test
397
+ https://github.com/fluent/fluentd/pull/2753
398
+ https://github.com/fluent/fluentd/pull/2763
399
+ https://github.com/fluent/fluentd/pull/2764
400
+ https://github.com/fluent/fluentd/pull/2780
401
+
402
+ ### Bug fix
403
+
404
+ * buffer: Disable the optimization of Metadata instance comparison on Windows
405
+ https://github.com/fluent/fluentd/pull/2778
406
+ * outut/buffer: Fix stage size computation
407
+ https://github.com/fluent/fluentd/pull/2734
408
+ * server: Ignore Errno::EHOSTUNREACH in TLS accept to avoid fluentd restart
409
+ https://github.com/fluent/fluentd/pull/2773
410
+ * server: Fix IPv6 dual stack mode issue for udp socket
411
+ https://github.com/fluent/fluentd/pull/2781
412
+ * config: Support @include/include directive for spaces included path
413
+ https://github.com/fluent/fluentd/pull/2780
414
+
415
+
416
+ # v1.8
417
+
418
+ ## Release v1.8.1 - 2019/12/26
419
+
420
+ ### Enhancement
421
+
422
+ * in_tail: Add `path_timezone` parameter to format `path` with the specified timezone
423
+ https://github.com/fluent/fluentd/pull/2719
424
+ * out_copy: Add `copy_mode` parameter. `deep_copy` parameter is now deprecated.
425
+ https://github.com/fluent/fluentd/pull/2747
426
+ * supervisor: Add deprecated log for `inline_config`
427
+ https://github.com/fluent/fluentd/pull/2746
428
+
429
+ ### Bug fixes
430
+
431
+ * parser_ltsv: Prevent garbage result by checking `label_delimiter`
432
+ https://github.com/fluent/fluentd/pull/2748
433
+
434
+ ## Release v1.8.0 - 2019/12/11
435
+
436
+ ### New feature
437
+
438
+ * Add service discovery plugin and `out_forward` use it
439
+ https://github.com/fluent/fluentd/pull/2541
440
+ * config: Add strict mode and support `default`/`nil` value in ruby embedded mode
441
+ https://github.com/fluent/fluentd/pull/2685
442
+
443
+ ### Enhancement
444
+
445
+ * formatter_csv: Support nested fields
446
+ https://github.com/fluent/fluentd/pull/2643
447
+ * record_accessor helper: Make code simple and bit faster
448
+ https://github.com/fluent/fluentd/pull/2660
449
+ * Relax tzinfo dependency to accept v1
450
+ https://github.com/fluent/fluentd/pull/2673
451
+ * log: Deprecate top-level match for capturing fluentd logs
452
+ https://github.com/fluent/fluentd/pull/2689
453
+ * in_monitor_agent: Expose Fluentd verion in REST API
454
+ https://github.com/fluent/fluentd/pull/2706
455
+ * time: Accept localtime xor utc
456
+ https://github.com/fluent/fluentd/pull/2720
457
+ https://github.com/fluent/fluentd/pull/2731
458
+ * formatter_stdout: Make time_format configurable in stdout format
459
+ https://github.com/fluent/fluentd/pull/2721
460
+ * supervisor: create log directory when it doesn't exists
461
+ https://github.com/fluent/fluentd/pull/2732
462
+ * clean up internal classes / methods / code
463
+ https://github.com/fluent/fluentd/pull/2647
464
+ https://github.com/fluent/fluentd/pull/2648
465
+ https://github.com/fluent/fluentd/pull/2653
466
+ https://github.com/fluent/fluentd/pull/2654
467
+ https://github.com/fluent/fluentd/pull/2657
468
+ https://github.com/fluent/fluentd/pull/2667
469
+ https://github.com/fluent/fluentd/pull/2674
470
+ https://github.com/fluent/fluentd/pull/2677
471
+ https://github.com/fluent/fluentd/pull/2680
472
+ https://github.com/fluent/fluentd/pull/2709
473
+ https://github.com/fluent/fluentd/pull/2730
474
+
475
+ ### Bug fixes
476
+
477
+ * output: Fix warning printed when chunk key placeholder not replaced
478
+ https://github.com/fluent/fluentd/pull/2523
479
+ https://github.com/fluent/fluentd/pull/2733
480
+ * Fix dry-run mode
481
+ https://github.com/fluent/fluentd/pull/2651
482
+ * suppress warning
483
+ https://github.com/fluent/fluentd/pull/2652
484
+ * suppress keyword argument warning for ruby2.7
485
+ https://github.com/fluent/fluentd/pull/2664
486
+ * RPC: Fix debug log text
487
+ https://github.com/fluent/fluentd/pull/2666
488
+ * time: Properly show class names in error message
489
+ https://github.com/fluent/fluentd/pull/2671
490
+ * Fix a potential bug that ThreadError may occur on SIGUSR1
491
+ https://github.com/fluent/fluentd/pull/2678
492
+ * server helper: Ignore ECONNREFUSED in TLS accept to avoid fluentd restart
493
+ https://github.com/fluent/fluentd/pull/2695
494
+ * server helper: Fix IPv6 dual stack mode issue for tcp socket.
495
+ https://github.com/fluent/fluentd/pull/2697
496
+ * supervisor: Fix inline config handling
497
+ https://github.com/fluent/fluentd/pull/2708
498
+ * Fix typo
499
+ https://github.com/fluent/fluentd/pull/2710
500
+ https://github.com/fluent/fluentd/pull/2714
501
+
502
+ # v1.7
503
+
504
+ ## Release v1.7.4 - 2019/10/24
505
+
506
+ ### Enhancement
507
+
508
+ * in_http: Add `use_204_response` parameter to return proper 204 response instead of 200.
509
+ fluentd v2 will change this parameter to `true`.
510
+ https://github.com/fluent/fluentd/pull/2640
511
+
512
+ ### Bug fixes
513
+
514
+ * child_process helper: fix stderr blocking for discard case
515
+ https://github.com/fluent/fluentd/pull/2649
516
+ * log: Fix log rotation handling on Windows
517
+ https://github.com/fluent/fluentd/pull/2663
518
+
519
+ ## Release v1.7.3 - 2019/10/01
520
+
521
+ ### Enhancement
522
+
523
+ * in_syslog: Replace priority_key with severity_key
524
+ https://github.com/fluent/fluentd/pull/2636
525
+
526
+ ### Bug fixes
527
+
528
+ * out_forward: Fix nil error after purge obsoleted sockets in socket cache
529
+ https://github.com/fluent/fluentd/pull/2635
530
+ * fix typo in ChangeLog
531
+ https://github.com/fluent/fluentd/pull/2633
532
+
533
+ ## Release v1.7.2 - 2019/09/19
534
+
535
+ ### Enhancement
536
+
537
+ * in_tcp: Add security/client to restrict access
538
+ https://github.com/fluent/fluentd/pull/2622
539
+
540
+ ### Bug fixes
541
+
542
+ * buf_file/buf_file_single: fix to handle compress data during restart
543
+ https://github.com/fluent/fluentd/pull/2620
544
+ * plugin: Use `__send__` to avoid conflict with user defined `send`
545
+ https://github.com/fluent/fluentd/pull/2614
546
+ * buffer: reject invalid timekey at configure phase
547
+ https://github.com/fluent/fluentd/pull/2615
548
+
549
+
550
+ ## Release v1.7.1 - 2019/09/08
551
+
552
+ ### Enhancement
553
+
554
+ * socket helper/out_forward: Support Windows certstore to load certificates
555
+ https://github.com/fluent/fluentd/pull/2601
556
+ * parser_syslog: Add faster parser for rfc3164 message
557
+ https://github.com/fluent/fluentd/pull/2599
558
+
559
+ ### Bug fixes
560
+
561
+ * buf_file/buf_file_single: fix to ignore placeholder based path.
562
+ https://github.com/fluent/fluentd/pull/2594
563
+ * server helper: Ignore ETIMEDOUT error in SSL_accept
564
+ https://github.com/fluent/fluentd/pull/2595
565
+ * buf_file: ensure to remove metadata after buffer creation failure
566
+ https://github.com/fluent/fluentd/pull/2598
567
+ * buf_file_single: fix duplicated path setting check
568
+ https://github.com/fluent/fluentd/pull/2600
569
+ * fix msgpack-ruby dependency to use recent feature
570
+ https://github.com/fluent/fluentd/pull/2606
571
+
572
+
573
+ ## Release v1.7.0 - 2019/08/20
574
+
575
+ ### New feature
576
+
577
+ * buffer: Add file_single buffer plugin
578
+ https://github.com/fluent/fluentd/pull/2579
579
+ * output: Add http output plugin
580
+ https://github.com/fluent/fluentd/pull/2488
581
+
582
+ ### Enhancement
583
+
584
+ * buffer: Improve the performance of buffer routine
585
+ https://github.com/fluent/fluentd/pull/2560
586
+ https://github.com/fluent/fluentd/pull/2563
587
+ https://github.com/fluent/fluentd/pull/2564
588
+ * output: Use Mutex instead of Monitor
589
+ https://github.com/fluent/fluentd/pull/2561
590
+ * event: Add `OneEventStrea#empty?` method
591
+ https://github.com/fluent/fluentd/pull/2565
592
+ * thread: Set thread name for ruby 2.3 or later
593
+ https://github.com/fluent/fluentd/pull/2574
594
+ * core: Cache msgpack packer/unpacker to avoid the object allocation
595
+ https://github.com/fluent/fluentd/pull/2559
596
+ * time: Use faster way to get sec and nsec
597
+ https://github.com/fluent/fluentd/pull/2557
598
+ * buf_file: Reduce IO flush by removing `IO#truncate`
599
+ https://github.com/fluent/fluentd/pull/2551
600
+ * in_tcp: Improve the performance for multiple event case
601
+ https://github.com/fluent/fluentd/pull/2567
602
+ * in_syslog: support `source_hostname_key` and `source_address_key` for unmatched event
603
+ https://github.com/fluent/fluentd/pull/2553
604
+ * formatter_csv: Improve the format performance.
605
+ https://github.com/fluent/fluentd/pull/2529
606
+ * parser_csv: Add fast parser for typical cases
607
+ https://github.com/fluent/fluentd/pull/2535
608
+ * out_forward: Refactor code
609
+ https://github.com/fluent/fluentd/pull/2516
610
+ https://github.com/fluent/fluentd/pull/2532
611
+
612
+ ### Bug fixes
613
+
614
+ * output: fix data lost on decompression
615
+ https://github.com/fluent/fluentd/pull/2547
616
+ * out_exec_filter: fix non-ascii encoding issue
617
+ https://github.com/fluent/fluentd/pull/2539
618
+ * in_tail: Don't call parser's configure twice
619
+ https://github.com/fluent/fluentd/pull/2569
620
+ * Fix unused message handling for <section> parameters
621
+ https://github.com/fluent/fluentd/pull/2578
622
+ * Fix comment/message typos
623
+ https://github.com/fluent/fluentd/pull/2549
624
+ https://github.com/fluent/fluentd/pull/2554
625
+ https://github.com/fluent/fluentd/pull/2556
626
+ https://github.com/fluent/fluentd/pull/2566
627
+ https://github.com/fluent/fluentd/pull/2573
628
+ https://github.com/fluent/fluentd/pull/2576
629
+ https://github.com/fluent/fluentd/pull/2583
630
+
631
+ # v1.6
632
+
633
+ ## Release v1.6.3 - 2019/07/29
634
+
635
+ ### Enhancement
636
+
637
+ * in_syslog: Add `emit_unmatched_lines` parameter
638
+ https://github.com/fluent/fluentd/pull/2499
639
+ * buf_file: Add `path_suffix` parameter
640
+ https://github.com/fluent/fluentd/pull/2524
641
+ * in_tail: Improve the performance of split lines
642
+ https://github.com/fluent/fluentd/pull/2527
643
+
644
+ ### Bug fixes
645
+
646
+ * http_server: Fix re-define render_json method
647
+ https://github.com/fluent/fluentd/pull/2517
648
+
649
+ ## Release v1.6.2 - 2019/07/11
650
+
651
+ ### Bug fixes
652
+
653
+ * http_server helper: Add title argument to support multiple servers
654
+ https://github.com/fluent/fluentd/pull/2493
655
+
656
+ ## Release v1.6.1 - 2019/07/10
657
+
658
+ ### Enhancement
659
+
660
+ * socket/cert: Support all private keys OpenSSL supports, not only RSA.
661
+ https://github.com/fluent/fluentd/pull/2487
662
+ * output/buffer: Improve statistics method performance
663
+ https://github.com/fluent/fluentd/pull/2491
664
+
665
+ ### Bug fixes
666
+
667
+ * plugin_config_formatter: update new doc URL
668
+ https://github.com/fluent/fluentd/pull/2481
669
+ * out_forward: Avoid zero division error when there are no available nodes
670
+ https://github.com/fluent/fluentd/pull/2482
671
+
672
+ ## Release v1.6.0 - 2019/07/01
673
+
674
+ ### New feature
675
+
676
+ * plugin: Add http_server helper and in_monitor_agent use it
677
+ https://github.com/fluent/fluentd/pull/2447
678
+
679
+ ### Enhancement
680
+
681
+ * in_monitor_agent: Add more metrics for buffer/output
682
+ https://github.com/fluent/fluentd/pull/2450
683
+ * time/plugin: Add `EventTime#to_time` method for fast conversion
684
+ https://github.com/fluent/fluentd/pull/2469
685
+ * socket helper/out_forward: Add connect_timeout parameter
686
+ https://github.com/fluent/fluentd/pull/2467
687
+ * command: Add `--conf-encoding` option
688
+ https://github.com/fluent/fluentd/pull/2453
689
+ * parser_none: Small performance optimization
690
+ https://github.com/fluent/fluentd/pull/2455
691
+
692
+ ### Bug fixes
693
+
694
+ * cert: Fix cert match pattern
695
+ https://github.com/fluent/fluentd/pull/2466
696
+ * output: Fix forget to increment rollback count
697
+ https://github.com/fluent/fluentd/pull/2462
698
+
699
+ # v1.5
700
+
701
+ ## Release v1.5.2 - 2019/06/13
702
+
703
+ ### Bug fixes
704
+
705
+ * out_forward: Fix duplicated handshake bug in keepalive
706
+ https://github.com/fluent/fluentd/pull/2456
707
+
708
+ ## Release v1.5.1 - 2019/06/05
709
+
710
+ ### Enhancement
711
+
712
+ * in_tail: Increase read block size to reduce IO call
713
+ https://github.com/fluent/fluentd/pull/2418
714
+ * in_monitor_agent: Refactor code
715
+ https://github.com/fluent/fluentd/pull/2422
716
+
717
+ ### Bug fixes
718
+
719
+ * out_forward: Fix socket handling of keepalive
720
+ https://github.com/fluent/fluentd/pull/2434
721
+ * parser: Fix the use of name based timezone
722
+ https://github.com/fluent/fluentd/pull/2421
723
+ * in_monitor_agent: Fix debug parameter handling
724
+ https://github.com/fluent/fluentd/pull/2423
725
+ * command: Fix error handling of log rotation age option
726
+ https://github.com/fluent/fluentd/pull/2427
727
+ * command: Fix ERB warning for ruby 2.6 or later
728
+ https://github.com/fluent/fluentd/pull/2430
729
+
730
+ ## Release v1.5.0 - 2019/05/18
731
+
732
+ ### New feature
733
+
734
+ * out_forward: Support keepalive feature
735
+ https://github.com/fluent/fluentd/pull/2393
736
+ * in_http: Support TLS via server helper
737
+ https://github.com/fluent/fluentd/pull/2395
738
+ * in_syslog: Support TLS via server helper
739
+ https://github.com/fluent/fluentd/pull/2399
740
+
741
+ ### Enhancement
742
+
743
+ * in_syslog: Add delimiter parameter
744
+ https://github.com/fluent/fluentd/pull/2378
745
+ * in_forward: Add tag/add_tag_prefix parameters
746
+ https://github.com/fluent/fluentd/pull/2396
747
+ * parser_json: Add stream_buffer_size parameter for yajl
748
+ https://github.com/fluent/fluentd/pull/2381
749
+ * command: Add deprecated message to show-plugin-config option
750
+ https://github.com/fluent/fluentd/pull/2401
751
+ * storage_local: Ignore empty file. Call sync after write for XFS.
752
+ https://github.com/fluent/fluentd/pull/2409
753
+
754
+ ### Bug fixes
755
+
756
+ * out_forward: Don't use SO_LINGER on SSL/TLS WinSock
757
+ https://github.com/fluent/fluentd/pull/2398
758
+ * server helper: Fix recursive lock issue in TLSServer
759
+ https://github.com/fluent/fluentd/pull/2341
760
+ * Fix typo
761
+ https://github.com/fluent/fluentd/pull/2369
762
+
763
+ # v1.4
764
+
765
+ ## Release v1.4.2 - 2019/04/02
766
+
767
+ ### Enhancements
768
+
769
+ * in_http: subdomain support in CORS domain
770
+ https://github.com/fluent/fluentd/pull/2337
771
+ * in_monitor_agent: Expose current timekey list as a buffer metrics
772
+ https://github.com/fluent/fluentd/pull/2343
773
+ * in_tcp/in_udp: Add source_address_key parameter
774
+ https://github.com/fluent/fluentd/pull/2347
775
+ * in_forward: Add send_keepalive_packet parameter to check the remote connection is available or not
776
+ https://github.com/fluent/fluentd/pull/2352
777
+
778
+ ### Bug fixes
779
+
780
+ * out_exec_filter: Fix typo of child_respawn description
781
+ https://github.com/fluent/fluentd/pull/2341
782
+ * in_tail: Create parent directories for symlink
783
+ https://github.com/fluent/fluentd/pull/2353
784
+ * in_tail: Fix encoding duplication check for non-specified case
785
+ https://github.com/fluent/fluentd/pull/2361
786
+ * log: Fix time format handling of plugin logger when log format is JSON
787
+ https://github.com/fluent/fluentd/pull/2356
788
+
789
+ ## Release v1.4.1 - 2019/03/18
790
+
791
+ ### Enhancements
792
+
793
+ * system: Add worker_id to process_name when workers is larger than 1
794
+ https://github.com/fluent/fluentd/pull/2321
795
+ * parser_regexp: Check named captures. When no named captures, configuration error is raised
796
+ https://github.com/fluent/fluentd/pull/2331
797
+
798
+ ### Bug fixes
799
+
800
+ * out_forward: Make tls_client_private_key_passphrase secret
801
+ https://github.com/fluent/fluentd/pull/2324
802
+ * in_syslog: Check message length when read from buffer in octet counting
803
+ https://github.com/fluent/fluentd/pull/2323
2
804
 
3
805
  ## Release v1.4.0 - 2019/02/24
4
806
 
@@ -15,10 +817,10 @@
15
817
 
16
818
  * output: Add MessagePack unpacker error to unrecoverable error list
17
819
  https://github.com/fluent/fluentd/pull/2301
18
- * output: Reduce flush deley when large timekey and small timekey_wait are specified
820
+ * output: Reduce flush delay when large timekey and small timekey_wait are specified
19
821
  https://github.com/fluent/fluentd/pull/2291
20
822
  * config: Support embedded ruby code in section argument.
21
- https://github.com/fluent/fluentd/pull/2291
823
+ https://github.com/fluent/fluentd/pull/2295
22
824
  * in_tail: Improve encoding parameter handling
23
825
  https://github.com/fluent/fluentd/pull/2305
24
826
  * in_tcp/in_udp: Add <parse> section check
@@ -31,6 +833,8 @@
31
833
  * server: Ignore EPIPE in TLS accept to avoid fluentd restart
32
834
  https://github.com/fluent/fluentd/pull/2253
33
835
 
836
+ # v1.3
837
+
34
838
  ## Release v1.3.3 - 2019/01/06
35
839
 
36
840
  ### Enhancements
@@ -366,7 +1170,7 @@
366
1170
 
367
1171
  ## Release v1.0.0 - 2017/12/6
368
1172
 
369
- See [CNCF announcment](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
1173
+ See [CNCF announcement](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
370
1174
 
371
1175
  ### New features / Enhancements
372
1176
 
@@ -636,7 +1440,7 @@ See [CNCF announcment](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
636
1440
  https://github.com/fluent/fluentd/pull/1492
637
1441
  * parser: Allow escape sequence in Apache access log
638
1442
  https://github.com/fluent/fluentd/pull/1479
639
- * config: Add actual value in the placholder error message
1443
+ * config: Add actual value in the placeholder error message
640
1444
  https://github.com/fluent/fluentd/pull/1497
641
1445
  * log: Add Fluent::Log#<< to support some SDKs
642
1446
  https://github.com/fluent/fluentd/pull/1478
@@ -673,12 +1477,12 @@ See [CNCF announcment](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
673
1477
 
674
1478
  * output: Secondary calculation should consider 'retry_max_times'
675
1479
  https://github.com/fluent/fluentd/pull/1452
676
- * Fix regression of deprecatd 'process' module
1480
+ * Fix regression of deprecated 'process' module
677
1481
  https://github.com/fluent/fluentd/pull/1443
678
1482
  * Fix missing parser_regex require
679
1483
  https://github.com/fluent/fluentd/issues/1458
680
1484
  https://github.com/fluent/fluentd/pull/1453
681
- * Keep 'Fluent::BufferQueueLimitError' for exsting plugins
1485
+ * Keep 'Fluent::BufferQueueLimitError' for existing plugins
682
1486
  https://github.com/fluent/fluentd/pull/1456
683
1487
  * in_tail: Untracked files should be removed from watching list to avoid memory bloat
684
1488
  https://github.com/fluent/fluentd/pull/1467
@@ -930,7 +1734,7 @@ See [CNCF announcment](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
930
1734
 
931
1735
  ### Bug fixes
932
1736
 
933
- * Raise configuration errors to clearify what's wrong when "@type" is missing
1737
+ * Raise configuration errors to clarify what's wrong when "@type" is missing
934
1738
  https://github.com/fluent/fluentd/pull/1202
935
1739
  * Fix the bug not to launch Fluentd when v0.12 MultiOutput plugin is configured
936
1740
  https://github.com/fluent/fluentd/pull/1206
@@ -953,7 +1757,7 @@ See [CNCF announcment](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
953
1757
  https://github.com/fluent/fluentd/pull/1067
954
1758
  * filter_record_transformer: Fix to prevent overwriting reserved placeholder keys
955
1759
  https://github.com/fluent/fluentd/pull/1176
956
- * Migrate some build-in plugins into v0.14 API
1760
+ * Migrate some built-in plugins into v0.14 API
957
1761
  https://github.com/fluent/fluentd/pull/1149
958
1762
  https://github.com/fluent/fluentd/pull/1151
959
1763
  * Update dependencies