fluentd222 1.16.2-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (562) hide show
  1. checksums.yaml +7 -0
  2. data/.deepsource.toml +13 -0
  3. data/.github/ISSUE_TEMPLATE/bug_report.yaml +71 -0
  4. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  5. data/.github/ISSUE_TEMPLATE/feature_request.yaml +39 -0
  6. data/.github/ISSUE_TEMPLATE.md +17 -0
  7. data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
  8. data/.github/workflows/stale-actions.yml +24 -0
  9. data/.github/workflows/test-ruby-head.yaml +31 -0
  10. data/.github/workflows/test.yaml +32 -0
  11. data/.gitignore +30 -0
  12. data/ADOPTERS.md +5 -0
  13. data/AUTHORS +2 -0
  14. data/CHANGELOG.md +2720 -0
  15. data/CONTRIBUTING.md +45 -0
  16. data/GOVERNANCE.md +55 -0
  17. data/Gemfile +9 -0
  18. data/GithubWorkflow.md +78 -0
  19. data/LICENSE +202 -0
  20. data/MAINTAINERS.md +13 -0
  21. data/README.md +75 -0
  22. data/Rakefile +79 -0
  23. data/SECURITY.md +14 -0
  24. data/bin/fluent-binlog-reader +7 -0
  25. data/bin/fluent-ca-generate +6 -0
  26. data/bin/fluent-cap-ctl +7 -0
  27. data/bin/fluent-cat +5 -0
  28. data/bin/fluent-ctl +7 -0
  29. data/bin/fluent-debug +5 -0
  30. data/bin/fluent-gem +9 -0
  31. data/bin/fluent-plugin-config-format +5 -0
  32. data/bin/fluent-plugin-generate +5 -0
  33. data/bin/fluentd +15 -0
  34. data/code-of-conduct.md +3 -0
  35. data/docs/SECURITY_AUDIT.pdf +0 -0
  36. data/example/copy_roundrobin.conf +39 -0
  37. data/example/counter.conf +18 -0
  38. data/example/filter_stdout.conf +22 -0
  39. data/example/in_forward.conf +14 -0
  40. data/example/in_forward_client.conf +37 -0
  41. data/example/in_forward_shared_key.conf +15 -0
  42. data/example/in_forward_tls.conf +14 -0
  43. data/example/in_forward_users.conf +24 -0
  44. data/example/in_forward_workers.conf +21 -0
  45. data/example/in_http.conf +16 -0
  46. data/example/in_out_forward.conf +17 -0
  47. data/example/in_sample_blocks.conf +17 -0
  48. data/example/in_sample_with_compression.conf +23 -0
  49. data/example/in_syslog.conf +15 -0
  50. data/example/in_tail.conf +14 -0
  51. data/example/in_tcp.conf +13 -0
  52. data/example/in_udp.conf +13 -0
  53. data/example/logevents.conf +25 -0
  54. data/example/multi_filters.conf +61 -0
  55. data/example/out_copy.conf +20 -0
  56. data/example/out_exec_filter.conf +42 -0
  57. data/example/out_file.conf +13 -0
  58. data/example/out_forward.conf +35 -0
  59. data/example/out_forward_buf_file.conf +23 -0
  60. data/example/out_forward_client.conf +109 -0
  61. data/example/out_forward_heartbeat_none.conf +16 -0
  62. data/example/out_forward_sd.conf +17 -0
  63. data/example/out_forward_shared_key.conf +36 -0
  64. data/example/out_forward_tls.conf +18 -0
  65. data/example/out_forward_users.conf +65 -0
  66. data/example/out_null.conf +36 -0
  67. data/example/sd.yaml +8 -0
  68. data/example/secondary_file.conf +42 -0
  69. data/example/suppress_config_dump.conf +7 -0
  70. data/example/v0_12_filter.conf +78 -0
  71. data/example/v1_literal_example.conf +36 -0
  72. data/example/worker_section.conf +36 -0
  73. data/fluent.conf +139 -0
  74. data/fluentd.gemspec +54 -0
  75. data/lib/fluent/agent.rb +168 -0
  76. data/lib/fluent/capability.rb +87 -0
  77. data/lib/fluent/clock.rb +66 -0
  78. data/lib/fluent/command/binlog_reader.rb +244 -0
  79. data/lib/fluent/command/bundler_injection.rb +45 -0
  80. data/lib/fluent/command/ca_generate.rb +184 -0
  81. data/lib/fluent/command/cap_ctl.rb +174 -0
  82. data/lib/fluent/command/cat.rb +365 -0
  83. data/lib/fluent/command/ctl.rb +180 -0
  84. data/lib/fluent/command/debug.rb +103 -0
  85. data/lib/fluent/command/fluentd.rb +374 -0
  86. data/lib/fluent/command/plugin_config_formatter.rb +308 -0
  87. data/lib/fluent/command/plugin_generator.rb +365 -0
  88. data/lib/fluent/compat/call_super_mixin.rb +76 -0
  89. data/lib/fluent/compat/detach_process_mixin.rb +33 -0
  90. data/lib/fluent/compat/exec_util.rb +129 -0
  91. data/lib/fluent/compat/file_util.rb +54 -0
  92. data/lib/fluent/compat/filter.rb +68 -0
  93. data/lib/fluent/compat/formatter.rb +111 -0
  94. data/lib/fluent/compat/formatter_utils.rb +85 -0
  95. data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
  96. data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
  97. data/lib/fluent/compat/input.rb +49 -0
  98. data/lib/fluent/compat/output.rb +721 -0
  99. data/lib/fluent/compat/output_chain.rb +60 -0
  100. data/lib/fluent/compat/parser.rb +310 -0
  101. data/lib/fluent/compat/parser_utils.rb +40 -0
  102. data/lib/fluent/compat/propagate_default.rb +62 -0
  103. data/lib/fluent/compat/record_filter_mixin.rb +34 -0
  104. data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
  105. data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
  106. data/lib/fluent/compat/socket_util.rb +165 -0
  107. data/lib/fluent/compat/string_util.rb +34 -0
  108. data/lib/fluent/compat/structured_format_mixin.rb +26 -0
  109. data/lib/fluent/compat/type_converter.rb +90 -0
  110. data/lib/fluent/config/basic_parser.rb +123 -0
  111. data/lib/fluent/config/configure_proxy.rb +424 -0
  112. data/lib/fluent/config/dsl.rb +152 -0
  113. data/lib/fluent/config/element.rb +265 -0
  114. data/lib/fluent/config/error.rb +44 -0
  115. data/lib/fluent/config/literal_parser.rb +286 -0
  116. data/lib/fluent/config/parser.rb +107 -0
  117. data/lib/fluent/config/section.rb +272 -0
  118. data/lib/fluent/config/types.rb +249 -0
  119. data/lib/fluent/config/v1_parser.rb +192 -0
  120. data/lib/fluent/config/yaml_parser/fluent_value.rb +47 -0
  121. data/lib/fluent/config/yaml_parser/loader.rb +108 -0
  122. data/lib/fluent/config/yaml_parser/parser.rb +166 -0
  123. data/lib/fluent/config/yaml_parser/section_builder.rb +107 -0
  124. data/lib/fluent/config/yaml_parser.rb +56 -0
  125. data/lib/fluent/config.rb +89 -0
  126. data/lib/fluent/configurable.rb +201 -0
  127. data/lib/fluent/counter/base_socket.rb +44 -0
  128. data/lib/fluent/counter/client.rb +297 -0
  129. data/lib/fluent/counter/error.rb +86 -0
  130. data/lib/fluent/counter/mutex_hash.rb +163 -0
  131. data/lib/fluent/counter/server.rb +273 -0
  132. data/lib/fluent/counter/store.rb +205 -0
  133. data/lib/fluent/counter/validator.rb +145 -0
  134. data/lib/fluent/counter.rb +23 -0
  135. data/lib/fluent/daemon.rb +13 -0
  136. data/lib/fluent/daemonizer.rb +88 -0
  137. data/lib/fluent/engine.rb +253 -0
  138. data/lib/fluent/env.rb +40 -0
  139. data/lib/fluent/error.rb +37 -0
  140. data/lib/fluent/event.rb +330 -0
  141. data/lib/fluent/event_router.rb +315 -0
  142. data/lib/fluent/ext_monitor_require.rb +28 -0
  143. data/lib/fluent/file_wrapper.rb +137 -0
  144. data/lib/fluent/filter.rb +21 -0
  145. data/lib/fluent/fluent_log_event_router.rb +139 -0
  146. data/lib/fluent/formatter.rb +23 -0
  147. data/lib/fluent/input.rb +21 -0
  148. data/lib/fluent/label.rb +46 -0
  149. data/lib/fluent/load.rb +34 -0
  150. data/lib/fluent/log/console_adapter.rb +66 -0
  151. data/lib/fluent/log.rb +752 -0
  152. data/lib/fluent/match.rb +187 -0
  153. data/lib/fluent/mixin.rb +31 -0
  154. data/lib/fluent/msgpack_factory.rb +111 -0
  155. data/lib/fluent/oj_options.rb +61 -0
  156. data/lib/fluent/output.rb +29 -0
  157. data/lib/fluent/output_chain.rb +23 -0
  158. data/lib/fluent/parser.rb +23 -0
  159. data/lib/fluent/plugin/bare_output.rb +104 -0
  160. data/lib/fluent/plugin/base.rb +214 -0
  161. data/lib/fluent/plugin/buf_file.rb +242 -0
  162. data/lib/fluent/plugin/buf_file_single.rb +254 -0
  163. data/lib/fluent/plugin/buf_memory.rb +34 -0
  164. data/lib/fluent/plugin/buffer/chunk.rb +240 -0
  165. data/lib/fluent/plugin/buffer/file_chunk.rb +413 -0
  166. data/lib/fluent/plugin/buffer/file_single_chunk.rb +310 -0
  167. data/lib/fluent/plugin/buffer/memory_chunk.rb +91 -0
  168. data/lib/fluent/plugin/buffer.rb +941 -0
  169. data/lib/fluent/plugin/compressable.rb +96 -0
  170. data/lib/fluent/plugin/exec_util.rb +22 -0
  171. data/lib/fluent/plugin/file_util.rb +22 -0
  172. data/lib/fluent/plugin/filter.rb +127 -0
  173. data/lib/fluent/plugin/filter_grep.rb +189 -0
  174. data/lib/fluent/plugin/filter_parser.rb +130 -0
  175. data/lib/fluent/plugin/filter_record_transformer.rb +324 -0
  176. data/lib/fluent/plugin/filter_stdout.rb +53 -0
  177. data/lib/fluent/plugin/formatter.rb +75 -0
  178. data/lib/fluent/plugin/formatter_csv.rb +78 -0
  179. data/lib/fluent/plugin/formatter_hash.rb +35 -0
  180. data/lib/fluent/plugin/formatter_json.rb +59 -0
  181. data/lib/fluent/plugin/formatter_ltsv.rb +44 -0
  182. data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
  183. data/lib/fluent/plugin/formatter_out_file.rb +53 -0
  184. data/lib/fluent/plugin/formatter_single_value.rb +36 -0
  185. data/lib/fluent/plugin/formatter_stdout.rb +76 -0
  186. data/lib/fluent/plugin/formatter_tsv.rb +40 -0
  187. data/lib/fluent/plugin/in_debug_agent.rb +71 -0
  188. data/lib/fluent/plugin/in_dummy.rb +18 -0
  189. data/lib/fluent/plugin/in_exec.rb +110 -0
  190. data/lib/fluent/plugin/in_forward.rb +473 -0
  191. data/lib/fluent/plugin/in_gc_stat.rb +72 -0
  192. data/lib/fluent/plugin/in_http.rb +677 -0
  193. data/lib/fluent/plugin/in_monitor_agent.rb +412 -0
  194. data/lib/fluent/plugin/in_object_space.rb +93 -0
  195. data/lib/fluent/plugin/in_sample.rb +141 -0
  196. data/lib/fluent/plugin/in_syslog.rb +276 -0
  197. data/lib/fluent/plugin/in_tail/group_watch.rb +204 -0
  198. data/lib/fluent/plugin/in_tail/position_file.rb +269 -0
  199. data/lib/fluent/plugin/in_tail.rb +1299 -0
  200. data/lib/fluent/plugin/in_tcp.rb +226 -0
  201. data/lib/fluent/plugin/in_udp.rb +92 -0
  202. data/lib/fluent/plugin/in_unix.rb +195 -0
  203. data/lib/fluent/plugin/input.rb +75 -0
  204. data/lib/fluent/plugin/metrics.rb +119 -0
  205. data/lib/fluent/plugin/metrics_local.rb +96 -0
  206. data/lib/fluent/plugin/multi_output.rb +195 -0
  207. data/lib/fluent/plugin/out_copy.rb +120 -0
  208. data/lib/fluent/plugin/out_exec.rb +105 -0
  209. data/lib/fluent/plugin/out_exec_filter.rb +319 -0
  210. data/lib/fluent/plugin/out_file.rb +340 -0
  211. data/lib/fluent/plugin/out_forward/ack_handler.rb +176 -0
  212. data/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
  213. data/lib/fluent/plugin/out_forward/error.rb +28 -0
  214. data/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
  215. data/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
  216. data/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
  217. data/lib/fluent/plugin/out_forward/socket_cache.rb +142 -0
  218. data/lib/fluent/plugin/out_forward.rb +826 -0
  219. data/lib/fluent/plugin/out_http.rb +275 -0
  220. data/lib/fluent/plugin/out_null.rb +74 -0
  221. data/lib/fluent/plugin/out_relabel.rb +32 -0
  222. data/lib/fluent/plugin/out_roundrobin.rb +84 -0
  223. data/lib/fluent/plugin/out_secondary_file.rb +148 -0
  224. data/lib/fluent/plugin/out_stdout.rb +74 -0
  225. data/lib/fluent/plugin/out_stream.rb +130 -0
  226. data/lib/fluent/plugin/output.rb +1603 -0
  227. data/lib/fluent/plugin/owned_by_mixin.rb +41 -0
  228. data/lib/fluent/plugin/parser.rb +274 -0
  229. data/lib/fluent/plugin/parser_apache.rb +28 -0
  230. data/lib/fluent/plugin/parser_apache2.rb +88 -0
  231. data/lib/fluent/plugin/parser_apache_error.rb +26 -0
  232. data/lib/fluent/plugin/parser_csv.rb +114 -0
  233. data/lib/fluent/plugin/parser_json.rb +96 -0
  234. data/lib/fluent/plugin/parser_ltsv.rb +51 -0
  235. data/lib/fluent/plugin/parser_msgpack.rb +50 -0
  236. data/lib/fluent/plugin/parser_multiline.rb +152 -0
  237. data/lib/fluent/plugin/parser_nginx.rb +28 -0
  238. data/lib/fluent/plugin/parser_none.rb +36 -0
  239. data/lib/fluent/plugin/parser_regexp.rb +68 -0
  240. data/lib/fluent/plugin/parser_syslog.rb +496 -0
  241. data/lib/fluent/plugin/parser_tsv.rb +42 -0
  242. data/lib/fluent/plugin/sd_file.rb +156 -0
  243. data/lib/fluent/plugin/sd_srv.rb +135 -0
  244. data/lib/fluent/plugin/sd_static.rb +58 -0
  245. data/lib/fluent/plugin/service_discovery.rb +65 -0
  246. data/lib/fluent/plugin/socket_util.rb +22 -0
  247. data/lib/fluent/plugin/storage.rb +84 -0
  248. data/lib/fluent/plugin/storage_local.rb +162 -0
  249. data/lib/fluent/plugin/string_util.rb +22 -0
  250. data/lib/fluent/plugin.rb +206 -0
  251. data/lib/fluent/plugin_helper/cert_option.rb +191 -0
  252. data/lib/fluent/plugin_helper/child_process.rb +369 -0
  253. data/lib/fluent/plugin_helper/compat_parameters.rb +343 -0
  254. data/lib/fluent/plugin_helper/counter.rb +51 -0
  255. data/lib/fluent/plugin_helper/event_emitter.rb +100 -0
  256. data/lib/fluent/plugin_helper/event_loop.rb +170 -0
  257. data/lib/fluent/plugin_helper/extract.rb +104 -0
  258. data/lib/fluent/plugin_helper/formatter.rb +147 -0
  259. data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
  260. data/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
  261. data/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
  262. data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
  263. data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
  264. data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
  265. data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
  266. data/lib/fluent/plugin_helper/http_server/server.rb +94 -0
  267. data/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
  268. data/lib/fluent/plugin_helper/http_server.rb +135 -0
  269. data/lib/fluent/plugin_helper/inject.rb +154 -0
  270. data/lib/fluent/plugin_helper/metrics.rb +129 -0
  271. data/lib/fluent/plugin_helper/parser.rb +147 -0
  272. data/lib/fluent/plugin_helper/record_accessor.rb +207 -0
  273. data/lib/fluent/plugin_helper/retry_state.rb +219 -0
  274. data/lib/fluent/plugin_helper/server.rb +828 -0
  275. data/lib/fluent/plugin_helper/service_discovery/manager.rb +146 -0
  276. data/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
  277. data/lib/fluent/plugin_helper/service_discovery.rb +125 -0
  278. data/lib/fluent/plugin_helper/socket.rb +288 -0
  279. data/lib/fluent/plugin_helper/socket_option.rb +98 -0
  280. data/lib/fluent/plugin_helper/storage.rb +349 -0
  281. data/lib/fluent/plugin_helper/thread.rb +180 -0
  282. data/lib/fluent/plugin_helper/timer.rb +92 -0
  283. data/lib/fluent/plugin_helper.rb +75 -0
  284. data/lib/fluent/plugin_id.rb +93 -0
  285. data/lib/fluent/process.rb +22 -0
  286. data/lib/fluent/registry.rb +117 -0
  287. data/lib/fluent/root_agent.rb +372 -0
  288. data/lib/fluent/rpc.rb +95 -0
  289. data/lib/fluent/static_config_analysis.rb +194 -0
  290. data/lib/fluent/supervisor.rb +1076 -0
  291. data/lib/fluent/system_config.rb +189 -0
  292. data/lib/fluent/test/base.rb +78 -0
  293. data/lib/fluent/test/driver/base.rb +231 -0
  294. data/lib/fluent/test/driver/base_owned.rb +83 -0
  295. data/lib/fluent/test/driver/base_owner.rb +135 -0
  296. data/lib/fluent/test/driver/event_feeder.rb +98 -0
  297. data/lib/fluent/test/driver/filter.rb +61 -0
  298. data/lib/fluent/test/driver/formatter.rb +30 -0
  299. data/lib/fluent/test/driver/input.rb +31 -0
  300. data/lib/fluent/test/driver/multi_output.rb +53 -0
  301. data/lib/fluent/test/driver/output.rb +102 -0
  302. data/lib/fluent/test/driver/parser.rb +30 -0
  303. data/lib/fluent/test/driver/storage.rb +30 -0
  304. data/lib/fluent/test/driver/test_event_router.rb +45 -0
  305. data/lib/fluent/test/filter_test.rb +77 -0
  306. data/lib/fluent/test/formatter_test.rb +65 -0
  307. data/lib/fluent/test/helpers.rb +134 -0
  308. data/lib/fluent/test/input_test.rb +174 -0
  309. data/lib/fluent/test/log.rb +79 -0
  310. data/lib/fluent/test/output_test.rb +156 -0
  311. data/lib/fluent/test/parser_test.rb +70 -0
  312. data/lib/fluent/test/startup_shutdown.rb +44 -0
  313. data/lib/fluent/test.rb +58 -0
  314. data/lib/fluent/time.rb +512 -0
  315. data/lib/fluent/timezone.rb +171 -0
  316. data/lib/fluent/tls.rb +81 -0
  317. data/lib/fluent/unique_id.rb +39 -0
  318. data/lib/fluent/variable_store.rb +40 -0
  319. data/lib/fluent/version.rb +21 -0
  320. data/lib/fluent/win32api.rb +38 -0
  321. data/lib/fluent/winsvc.rb +100 -0
  322. data/templates/new_gem/Gemfile +3 -0
  323. data/templates/new_gem/README.md.erb +43 -0
  324. data/templates/new_gem/Rakefile +13 -0
  325. data/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
  326. data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
  327. data/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
  328. data/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
  329. data/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
  330. data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
  331. data/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
  332. data/templates/new_gem/test/helper.rb.erb +7 -0
  333. data/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
  334. data/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
  335. data/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
  336. data/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
  337. data/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
  338. data/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
  339. data/templates/plugin_config_formatter/param.md-compact.erb +25 -0
  340. data/templates/plugin_config_formatter/param.md-table.erb +10 -0
  341. data/templates/plugin_config_formatter/param.md.erb +34 -0
  342. data/templates/plugin_config_formatter/section.md.erb +12 -0
  343. data/test/command/test_binlog_reader.rb +362 -0
  344. data/test/command/test_ca_generate.rb +70 -0
  345. data/test/command/test_cap_ctl.rb +100 -0
  346. data/test/command/test_cat.rb +128 -0
  347. data/test/command/test_ctl.rb +56 -0
  348. data/test/command/test_fluentd.rb +1291 -0
  349. data/test/command/test_plugin_config_formatter.rb +397 -0
  350. data/test/command/test_plugin_generator.rb +109 -0
  351. data/test/compat/test_calls_super.rb +166 -0
  352. data/test/compat/test_parser.rb +92 -0
  353. data/test/config/assertions.rb +42 -0
  354. data/test/config/test_config_parser.rb +551 -0
  355. data/test/config/test_configurable.rb +1784 -0
  356. data/test/config/test_configure_proxy.rb +604 -0
  357. data/test/config/test_dsl.rb +415 -0
  358. data/test/config/test_element.rb +518 -0
  359. data/test/config/test_literal_parser.rb +309 -0
  360. data/test/config/test_plugin_configuration.rb +56 -0
  361. data/test/config/test_section.rb +191 -0
  362. data/test/config/test_system_config.rb +195 -0
  363. data/test/config/test_types.rb +408 -0
  364. data/test/counter/test_client.rb +563 -0
  365. data/test/counter/test_error.rb +44 -0
  366. data/test/counter/test_mutex_hash.rb +179 -0
  367. data/test/counter/test_server.rb +589 -0
  368. data/test/counter/test_store.rb +258 -0
  369. data/test/counter/test_validator.rb +137 -0
  370. data/test/helper.rb +155 -0
  371. data/test/helpers/fuzzy_assert.rb +89 -0
  372. data/test/helpers/process_extenstion.rb +33 -0
  373. data/test/log/test_console_adapter.rb +110 -0
  374. data/test/plugin/data/2010/01/20100102-030405.log +0 -0
  375. data/test/plugin/data/2010/01/20100102-030406.log +0 -0
  376. data/test/plugin/data/2010/01/20100102.log +0 -0
  377. data/test/plugin/data/log/bar +0 -0
  378. data/test/plugin/data/log/foo/bar.log +0 -0
  379. data/test/plugin/data/log/foo/bar2 +0 -0
  380. data/test/plugin/data/log/test.log +0 -0
  381. data/test/plugin/data/sd_file/config +11 -0
  382. data/test/plugin/data/sd_file/config.json +17 -0
  383. data/test/plugin/data/sd_file/config.yaml +11 -0
  384. data/test/plugin/data/sd_file/config.yml +11 -0
  385. data/test/plugin/data/sd_file/invalid_config.yml +7 -0
  386. data/test/plugin/in_tail/test_fifo.rb +121 -0
  387. data/test/plugin/in_tail/test_io_handler.rb +150 -0
  388. data/test/plugin/in_tail/test_position_file.rb +346 -0
  389. data/test/plugin/out_forward/test_ack_handler.rb +140 -0
  390. data/test/plugin/out_forward/test_connection_manager.rb +145 -0
  391. data/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
  392. data/test/plugin/out_forward/test_load_balancer.rb +106 -0
  393. data/test/plugin/out_forward/test_socket_cache.rb +174 -0
  394. data/test/plugin/test_bare_output.rb +131 -0
  395. data/test/plugin/test_base.rb +247 -0
  396. data/test/plugin/test_buf_file.rb +1314 -0
  397. data/test/plugin/test_buf_file_single.rb +898 -0
  398. data/test/plugin/test_buf_memory.rb +42 -0
  399. data/test/plugin/test_buffer.rb +1434 -0
  400. data/test/plugin/test_buffer_chunk.rb +209 -0
  401. data/test/plugin/test_buffer_file_chunk.rb +871 -0
  402. data/test/plugin/test_buffer_file_single_chunk.rb +611 -0
  403. data/test/plugin/test_buffer_memory_chunk.rb +339 -0
  404. data/test/plugin/test_compressable.rb +87 -0
  405. data/test/plugin/test_file_util.rb +96 -0
  406. data/test/plugin/test_filter.rb +368 -0
  407. data/test/plugin/test_filter_grep.rb +697 -0
  408. data/test/plugin/test_filter_parser.rb +731 -0
  409. data/test/plugin/test_filter_record_transformer.rb +577 -0
  410. data/test/plugin/test_filter_stdout.rb +207 -0
  411. data/test/plugin/test_formatter_csv.rb +136 -0
  412. data/test/plugin/test_formatter_hash.rb +38 -0
  413. data/test/plugin/test_formatter_json.rb +61 -0
  414. data/test/plugin/test_formatter_ltsv.rb +70 -0
  415. data/test/plugin/test_formatter_msgpack.rb +28 -0
  416. data/test/plugin/test_formatter_out_file.rb +116 -0
  417. data/test/plugin/test_formatter_single_value.rb +44 -0
  418. data/test/plugin/test_formatter_tsv.rb +76 -0
  419. data/test/plugin/test_in_debug_agent.rb +49 -0
  420. data/test/plugin/test_in_exec.rb +261 -0
  421. data/test/plugin/test_in_forward.rb +1178 -0
  422. data/test/plugin/test_in_gc_stat.rb +62 -0
  423. data/test/plugin/test_in_http.rb +1102 -0
  424. data/test/plugin/test_in_monitor_agent.rb +922 -0
  425. data/test/plugin/test_in_object_space.rb +66 -0
  426. data/test/plugin/test_in_sample.rb +190 -0
  427. data/test/plugin/test_in_syslog.rb +505 -0
  428. data/test/plugin/test_in_tail.rb +3125 -0
  429. data/test/plugin/test_in_tcp.rb +328 -0
  430. data/test/plugin/test_in_udp.rb +296 -0
  431. data/test/plugin/test_in_unix.rb +181 -0
  432. data/test/plugin/test_input.rb +137 -0
  433. data/test/plugin/test_metadata.rb +89 -0
  434. data/test/plugin/test_metrics.rb +294 -0
  435. data/test/plugin/test_metrics_local.rb +96 -0
  436. data/test/plugin/test_multi_output.rb +204 -0
  437. data/test/plugin/test_out_copy.rb +308 -0
  438. data/test/plugin/test_out_exec.rb +312 -0
  439. data/test/plugin/test_out_exec_filter.rb +606 -0
  440. data/test/plugin/test_out_file.rb +1038 -0
  441. data/test/plugin/test_out_forward.rb +1361 -0
  442. data/test/plugin/test_out_http.rb +429 -0
  443. data/test/plugin/test_out_null.rb +105 -0
  444. data/test/plugin/test_out_relabel.rb +28 -0
  445. data/test/plugin/test_out_roundrobin.rb +146 -0
  446. data/test/plugin/test_out_secondary_file.rb +458 -0
  447. data/test/plugin/test_out_stdout.rb +205 -0
  448. data/test/plugin/test_out_stream.rb +103 -0
  449. data/test/plugin/test_output.rb +1334 -0
  450. data/test/plugin/test_output_as_buffered.rb +2024 -0
  451. data/test/plugin/test_output_as_buffered_backup.rb +363 -0
  452. data/test/plugin/test_output_as_buffered_compress.rb +179 -0
  453. data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
  454. data/test/plugin/test_output_as_buffered_retries.rb +966 -0
  455. data/test/plugin/test_output_as_buffered_secondary.rb +882 -0
  456. data/test/plugin/test_output_as_standard.rb +374 -0
  457. data/test/plugin/test_owned_by.rb +34 -0
  458. data/test/plugin/test_parser.rb +399 -0
  459. data/test/plugin/test_parser_apache.rb +42 -0
  460. data/test/plugin/test_parser_apache2.rb +47 -0
  461. data/test/plugin/test_parser_apache_error.rb +45 -0
  462. data/test/plugin/test_parser_csv.rb +200 -0
  463. data/test/plugin/test_parser_json.rb +138 -0
  464. data/test/plugin/test_parser_labeled_tsv.rb +160 -0
  465. data/test/plugin/test_parser_multiline.rb +111 -0
  466. data/test/plugin/test_parser_nginx.rb +88 -0
  467. data/test/plugin/test_parser_none.rb +52 -0
  468. data/test/plugin/test_parser_regexp.rb +284 -0
  469. data/test/plugin/test_parser_syslog.rb +650 -0
  470. data/test/plugin/test_parser_tsv.rb +122 -0
  471. data/test/plugin/test_sd_file.rb +228 -0
  472. data/test/plugin/test_sd_srv.rb +230 -0
  473. data/test/plugin/test_storage.rb +166 -0
  474. data/test/plugin/test_storage_local.rb +335 -0
  475. data/test/plugin/test_string_util.rb +26 -0
  476. data/test/plugin_helper/data/cert/cert-key.pem +27 -0
  477. data/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
  478. data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
  479. data/test/plugin_helper/data/cert/cert.pem +19 -0
  480. data/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
  481. data/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
  482. data/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
  483. data/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
  484. data/test/plugin_helper/data/cert/empty.pem +0 -0
  485. data/test/plugin_helper/data/cert/generate_cert.rb +125 -0
  486. data/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
  487. data/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
  488. data/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
  489. data/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
  490. data/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
  491. data/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
  492. data/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
  493. data/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
  494. data/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
  495. data/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
  496. data/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
  497. data/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
  498. data/test/plugin_helper/http_server/test_app.rb +65 -0
  499. data/test/plugin_helper/http_server/test_route.rb +32 -0
  500. data/test/plugin_helper/service_discovery/test_manager.rb +93 -0
  501. data/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
  502. data/test/plugin_helper/test_cert_option.rb +25 -0
  503. data/test/plugin_helper/test_child_process.rb +862 -0
  504. data/test/plugin_helper/test_compat_parameters.rb +358 -0
  505. data/test/plugin_helper/test_event_emitter.rb +80 -0
  506. data/test/plugin_helper/test_event_loop.rb +52 -0
  507. data/test/plugin_helper/test_extract.rb +194 -0
  508. data/test/plugin_helper/test_formatter.rb +255 -0
  509. data/test/plugin_helper/test_http_server_helper.rb +372 -0
  510. data/test/plugin_helper/test_inject.rb +561 -0
  511. data/test/plugin_helper/test_metrics.rb +137 -0
  512. data/test/plugin_helper/test_parser.rb +264 -0
  513. data/test/plugin_helper/test_record_accessor.rb +238 -0
  514. data/test/plugin_helper/test_retry_state.rb +1006 -0
  515. data/test/plugin_helper/test_server.rb +1895 -0
  516. data/test/plugin_helper/test_service_discovery.rb +165 -0
  517. data/test/plugin_helper/test_socket.rb +146 -0
  518. data/test/plugin_helper/test_storage.rb +542 -0
  519. data/test/plugin_helper/test_thread.rb +164 -0
  520. data/test/plugin_helper/test_timer.rb +130 -0
  521. data/test/scripts/exec_script.rb +32 -0
  522. data/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
  523. data/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
  524. data/test/scripts/fluent/plugin/formatter_known.rb +8 -0
  525. data/test/scripts/fluent/plugin/out_test.rb +81 -0
  526. data/test/scripts/fluent/plugin/out_test2.rb +80 -0
  527. data/test/scripts/fluent/plugin/parser_known.rb +4 -0
  528. data/test/test_capability.rb +74 -0
  529. data/test/test_clock.rb +164 -0
  530. data/test/test_config.rb +369 -0
  531. data/test/test_configdsl.rb +148 -0
  532. data/test/test_daemonizer.rb +91 -0
  533. data/test/test_engine.rb +203 -0
  534. data/test/test_event.rb +531 -0
  535. data/test/test_event_router.rb +348 -0
  536. data/test/test_event_time.rb +199 -0
  537. data/test/test_file_wrapper.rb +53 -0
  538. data/test/test_filter.rb +121 -0
  539. data/test/test_fluent_log_event_router.rb +99 -0
  540. data/test/test_formatter.rb +369 -0
  541. data/test/test_input.rb +31 -0
  542. data/test/test_log.rb +1076 -0
  543. data/test/test_match.rb +148 -0
  544. data/test/test_mixin.rb +351 -0
  545. data/test/test_msgpack_factory.rb +50 -0
  546. data/test/test_oj_options.rb +55 -0
  547. data/test/test_output.rb +278 -0
  548. data/test/test_plugin.rb +251 -0
  549. data/test/test_plugin_classes.rb +370 -0
  550. data/test/test_plugin_helper.rb +81 -0
  551. data/test/test_plugin_id.rb +119 -0
  552. data/test/test_process.rb +14 -0
  553. data/test/test_root_agent.rb +951 -0
  554. data/test/test_static_config_analysis.rb +177 -0
  555. data/test/test_supervisor.rb +821 -0
  556. data/test/test_test_drivers.rb +136 -0
  557. data/test/test_time_formatter.rb +301 -0
  558. data/test/test_time_parser.rb +362 -0
  559. data/test/test_tls.rb +65 -0
  560. data/test/test_unique_id.rb +47 -0
  561. data/test/test_variable_store.rb +65 -0
  562. metadata +1183 -0
data/CHANGELOG.md ADDED
@@ -0,0 +1,2720 @@
1
+ # v1.16
2
+
3
+ ## Release v1.16.3 - 2023/11/14
4
+
5
+ ### Bug Fix
6
+
7
+ * in_tail: Fix a stall bug on !follow_inode case
8
+ https://github.com/fluent/fluentd/pull/4327
9
+ * in_tail: add warning for silent stop on !follow_inodes case
10
+ https://github.com/fluent/fluentd/pull/4339
11
+ * Buffer: Fix NoMethodError with empty unstaged chunk arrays
12
+ https://github.com/fluent/fluentd/pull/4303
13
+ * Fix for rotate_age where Fluentd passes as Symbol
14
+ https://github.com/fluent/fluentd/pull/4311
15
+
16
+ ## Release v1.16.2 - 2023/07/14
17
+
18
+ ### Bug Fix
19
+
20
+ * in_tail: Fix new watcher is wrongly detached on rotation when `follow_inodes`,
21
+ which causes stopping tailing the file
22
+ https://github.com/fluent/fluentd/pull/4208
23
+ * in_tail: Prevent wrongly unwatching when `follow_inodes`, which causes log
24
+ duplication
25
+ https://github.com/fluent/fluentd/pull/4237
26
+ * in_tail: Fix warning log about overwriting entry when `follow_inodes`
27
+ https://github.com/fluent/fluentd/pull/4214
28
+ * in_tail: Ensure to discard TailWatcher with missing target when `follow_inodes`
29
+ https://github.com/fluent/fluentd/pull/4239
30
+ * MessagePackFactory: Make sure to reset local unpacker to prevent received
31
+ broken data from affecting other receiving data
32
+ https://github.com/fluent/fluentd/pull/4178
33
+ * Fix failure to launch Fluentd on Windows when the log path isn't specified in
34
+ the command line
35
+ https://github.com/fluent/fluentd/pull/4188
36
+ * logger: Prevent growing cache size of `ignore_same_log_interval` unlimitedly
37
+ https://github.com/fluent/fluentd/pull/4229
38
+ * Update sigdump to 0.2.5 to fix wrong value of object counts
39
+ https://github.com/fluent/fluentd/pull/4225
40
+
41
+ ### Misc
42
+
43
+ * in_tail: Check detaching inode when `follow_inodes`
44
+ https://github.com/fluent/fluentd/pull/4191
45
+ * in_tail: Add debug log for pos file compaction
46
+ https://github.com/fluent/fluentd/pull/4228
47
+ * Code improvements detected by RuboCop Performance
48
+ https://github.com/fluent/fluentd/pull/4201
49
+ https://github.com/fluent/fluentd/pull/4210
50
+ * Add notice for unused argument `unpacker` of `ChunkMessagePackEventStreamer.each`
51
+ https://github.com/fluent/fluentd/pull/4159
52
+
53
+ ## Release v1.16.1 - 2023/04/17
54
+
55
+ ### Enhancement
56
+
57
+ * in_tcp: Add `message_length_limit` to drop large incoming data
58
+ https://github.com/fluent/fluentd/pull/4137
59
+
60
+ ### Bug Fix
61
+
62
+ * Fix NameError of `SecondaryFileOutput` when setting secondary other than
63
+ `out_secondary_file`
64
+ https://github.com/fluent/fluentd/pull/4124
65
+ * Server helper: Suppress error of `UDPServer` over `max_bytes` on Windows
66
+ https://github.com/fluent/fluentd/pull/4131
67
+ * Buffer: Fix that `compress` setting causes unexpected error when receiving
68
+ already compressed MessagePack
69
+ https://github.com/fluent/fluentd/pull/4147
70
+
71
+ ### Misc
72
+
73
+ * Update MAINTAINERS.md
74
+ https://github.com/fluent/fluentd/pull/4119
75
+ * Update security policy
76
+ https://github.com/fluent/fluentd/pull/4123
77
+ * Plugin template: Remove unnecessary code
78
+ https://github.com/fluent/fluentd/pull/4128
79
+ * Revive issue auto closer
80
+ https://github.com/fluent/fluentd/pull/4116
81
+ * Fix a link for the repository of td-agent
82
+ https://github.com/fluent/fluentd/pull/4145
83
+ * in_udp: add test of message_length_limit
84
+ https://github.com/fluent/fluentd/pull/4117
85
+ * Fix a typo of an argument of `Fluent::EventStream#each`
86
+ https://github.com/fluent/fluentd/pull/4148
87
+ * Test in_tcp: Fix undesirable way to assert logs
88
+ https://github.com/fluent/fluentd/pull/4138
89
+
90
+ ## Release v1.16.0 - 2023/03/29
91
+
92
+ ### Enhancement
93
+
94
+ * in_tcp: Add `send_keepalive_packet` option
95
+ https://github.com/fluent/fluentd/pull/3961
96
+ * buffer: backup broken file chunk
97
+ https://github.com/fluent/fluentd/pull/4025
98
+ * Add warning messages for restoring buffer with `flush_at_shutdown true`
99
+ https://github.com/fluent/fluentd/pull/4027
100
+ * Add logs for time period of restored buffer possibly broken
101
+ https://github.com/fluent/fluentd/pull/4028
102
+
103
+ ### Bug Fix
104
+
105
+ * http_server_helper: Fix format of log messages originating from Async gem
106
+ https://github.com/fluent/fluentd/pull/3987
107
+ * Change to not generate a sigdump file after receiving a `SIGTERM` signal on
108
+ non-Windows
109
+ https://github.com/fluent/fluentd/pull/4034
110
+ https://github.com/fluent/fluentd/pull/4043
111
+ * out_forward: fix error of ack handling conflict on stopping with
112
+ `require_ack_response` enabled
113
+ https://github.com/fluent/fluentd/pull/4030
114
+ * Fix problem that some `system` configs are not reflected
115
+ https://github.com/fluent/fluentd/pull/4064
116
+ https://github.com/fluent/fluentd/pull/4065
117
+ https://github.com/fluent/fluentd/pull/4086
118
+ https://github.com/fluent/fluentd/pull/4090
119
+ https://github.com/fluent/fluentd/pull/4096
120
+ * Fix bug that the logger outputs some initial log messages without applying
121
+ some settings such as `format`
122
+ https://github.com/fluent/fluentd/pull/4091
123
+ * Windows: Fix a bug that the wrong log file is reopened with log rotate setting
124
+ when flushing or graceful reloading
125
+ https://github.com/fluent/fluentd/pull/4054
126
+ * Fix race condition of out_secondary_file
127
+ https://github.com/fluent/fluentd/pull/4081
128
+ * Suppress warning using different secondary for out_secondary_file
129
+ https://github.com/fluent/fluentd/pull/4087
130
+ * Fix value of `system_config.workers` at `run_configure`.
131
+ Change argument type of `Fluent::Plugin::Base::configure()` to
132
+ `Fluent::Config::Element` only.
133
+ https://github.com/fluent/fluentd/pull/4066
134
+ * Fix bug that Fluentd sometimes tries to use an unavailable port and fails to
135
+ start on Windows
136
+ https://github.com/fluent/fluentd/pull/4092
137
+
138
+ ### Misc
139
+
140
+ * Add method for testing `filtered_with_time`
141
+ https://github.com/fluent/fluentd/pull/3899
142
+ * Replace `$$` with `Process.pid`
143
+ https://github.com/fluent/fluentd/pull/4040
144
+ * Relax required webric gem version
145
+ https://github.com/fluent/fluentd/pull/4061
146
+ * CI fixes to support Ruby 3.2
147
+ https://github.com/fluent/fluentd/pull/3968
148
+ https://github.com/fluent/fluentd/pull/3996
149
+ https://github.com/fluent/fluentd/pull/3997
150
+ * Other CI fixes
151
+ https://github.com/fluent/fluentd/pull/3969
152
+ https://github.com/fluent/fluentd/pull/3990
153
+ https://github.com/fluent/fluentd/pull/4013
154
+ https://github.com/fluent/fluentd/pull/4033
155
+ https://github.com/fluent/fluentd/pull/4044
156
+ https://github.com/fluent/fluentd/pull/4050
157
+ https://github.com/fluent/fluentd/pull/4062
158
+ https://github.com/fluent/fluentd/pull/4074
159
+ https://github.com/fluent/fluentd/pull/4082
160
+ https://github.com/fluent/fluentd/pull/4085
161
+ * Update MAINTAINERS.md
162
+ https://github.com/fluent/fluentd/pull/4026
163
+ https://github.com/fluent/fluentd/pull/4069
164
+
165
+ # v1.15
166
+
167
+ ## Release v1.15.3 - 2022/11/02
168
+
169
+ ### Bug Fix
170
+
171
+ * Support glob for `!include` directive in YAML config format
172
+ https://github.com/fluent/fluentd/pull/3917
173
+ * Remove meaningless oj options
174
+ https://github.com/fluent/fluentd/pull/3929
175
+ * Fix log initializer to correctly create per-process files on Windows
176
+ https://github.com/fluent/fluentd/pull/3939
177
+ * out_file: Fix the multi-worker check with `<worker 0-N>` directive
178
+ https://github.com/fluent/fluentd/pull/3942
179
+
180
+ ### Misc
181
+
182
+ * Fix broken tests on Ruby 3.2
183
+ https://github.com/fluent/fluentd/pull/3883
184
+ https://github.com/fluent/fluentd/pull/3922
185
+
186
+ ## Release v1.15.2 - 2022/08/22
187
+
188
+ ### Enhancement
189
+
190
+ * Add a new system configuration `enable_jit`
191
+ https://github.com/fluent/fluentd/pull/3857
192
+
193
+ ### Bug Fix
194
+
195
+ * out_file: Fix append mode with `--daemon` flag
196
+ https://github.com/fluent/fluentd/pull/3864
197
+ * child_process: Plug file descriptor leak
198
+ https://github.com/fluent/fluentd/pull/3844
199
+
200
+ ### Misc
201
+
202
+ * Drop win32-api gem to support Ruby 3.2
203
+ https://github.com/fluent/fluentd/pull/3849
204
+ https://github.com/fluent/fluentd/pull/3866
205
+
206
+ ## Release v1.15.1 - 2022/07/27
207
+
208
+ ### Bug Fix
209
+
210
+ * Add support for concurrent append in out_file
211
+ https://github.com/fluent/fluentd/pull/3808
212
+
213
+ ### Misc
214
+
215
+ * in_tail: Show more information on skipping update_watcher
216
+ https://github.com/fluent/fluentd/pull/3829
217
+
218
+ ## Release v1.15.0 - 2022/06/29
219
+
220
+ ### Enhancement
221
+
222
+ * in_tail: Add log throttling in files based on group rules
223
+ https://github.com/fluent/fluentd/pull/3535
224
+ https://github.com/fluent/fluentd/pull/3771
225
+ * Add `dump` command to fluent-ctl
226
+ https://github.com/fluent/fluentd/pull/3680
227
+ * Handle YAML configuration format on configuration file
228
+ https://github.com/fluent/fluentd/pull/3712
229
+ * Add `restart_worker_interval` parameter in `<system>` directive to set
230
+ interval to restart workers that has stopped for some reason.
231
+ https://github.com/fluent/fluentd/pull/3768
232
+
233
+ ### Bug fixes
234
+
235
+ * out_forward: Fix to update timeout of cached sockets
236
+ https://github.com/fluent/fluentd/pull/3711
237
+ * in_tail: Fix a possible crash on file rotation when `follow_inodes true`
238
+ https://github.com/fluent/fluentd/pull/3754
239
+ * output: Fix a possible crash of flush thread
240
+ https://github.com/fluent/fluentd/pull/3755
241
+ * in_tail: Fix crash bugs on Ruby 3.1 on Windows
242
+ https://github.com/fluent/fluentd/pull/3766
243
+ * in_tail: Fix a bug that in_tail cannot open non-ascii path on Windows
244
+ https://github.com/fluent/fluentd/pull/3774
245
+ * Fix a bug that fluentd doesn't release its own log file even after rotated by
246
+ external tools
247
+ https://github.com/fluent/fluentd/pull/3782
248
+
249
+ ### Misc
250
+
251
+ * in_tail: Simplify TargetInfo related code
252
+ https://github.com/fluent/fluentd/pull/3489
253
+ * Fix a wrong issue number in CHANGELOG
254
+ https://github.com/fluent/fluentd/pull/3700
255
+ * server helper: Add comments to linger_timeout behavior about Windows
256
+ https://github.com/fluent/fluentd/pull/3701
257
+ * service_discovery: Fix typo
258
+ https://github.com/fluent/fluentd/pull/3724
259
+ * test: Fix unstable tests and warnings
260
+ https://github.com/fluent/fluentd/pull/3745
261
+ https://github.com/fluent/fluentd/pull/3753
262
+ https://github.com/fluent/fluentd/pull/3767
263
+ https://github.com/fluent/fluentd/pull/3783
264
+ https://github.com/fluent/fluentd/pull/3784
265
+ https://github.com/fluent/fluentd/pull/3785
266
+ https://github.com/fluent/fluentd/pull/3787
267
+
268
+ # v1.14
269
+
270
+ ## Release v1.14.6 - 2022/03/31
271
+
272
+ ### Enhancement
273
+
274
+ * Enable server plugins to specify socket-option `SO_LINGER`
275
+ https://github.com/fluent/fluentd/pull/3644
276
+ * Add `--umask` command line parameter
277
+ https://github.com/fluent/fluentd/pull/3671
278
+ https://github.com/fluent/fluentd/pull/3679
279
+
280
+ ### Bug fixes
281
+
282
+ * Fix metric name typo
283
+ https://github.com/fluent/fluentd/pull/3630
284
+ https://github.com/fluent/fluentd/pull/3673
285
+ * Apply modifications in pipeline to the records being passed to `@ERROR` label
286
+ https://github.com/fluent/fluentd/pull/3631
287
+ * Fix wrong calculation of retry interval
288
+ https://github.com/fluent/fluentd/pull/3640
289
+ https://github.com/fluent/fluentd/pull/3649
290
+ https://github.com/fluent/fluentd/pull/3685
291
+ https://github.com/fluent/fluentd/pull/3686
292
+ * Support IPv6 address for `rpc_endpoint` in `system` config
293
+ https://github.com/fluent/fluentd/pull/3641
294
+
295
+ ### Misc
296
+
297
+ * CI: Support Ruby 3.1 except Windows
298
+ https://github.com/fluent/fluentd/pull/3619
299
+ * Switch to GitHub Discussions
300
+ https://github.com/fluent/fluentd/pull/3654
301
+ * Fix CHANGELOG.md heading styles
302
+ https://github.com/fluent/fluentd/pull/3648
303
+ * Declare `null_value_pattern` as `regexp`
304
+ https://github.com/fluent/fluentd/pull/3650
305
+
306
+ ## Release v1.14.5 - 2022/02/09
307
+
308
+ ### Enhancement
309
+
310
+ * Add support for "application/x-ndjson" to `in_http`
311
+ https://github.com/fluent/fluentd/pull/3616
312
+ * Add support for ucrt binary for Windows
313
+ https://github.com/fluent/fluentd/pull/3613
314
+
315
+ ### Bug fixes
316
+
317
+ * Don't retry when `retry_max_times == 0`
318
+ https://github.com/fluent/fluentd/pull/3608
319
+ * Fix hang-up issue during TLS handshake in `out_forward`
320
+ https://github.com/fluent/fluentd/pull/3601
321
+ * Bump up required ServerEngine to v2.2.5
322
+ https://github.com/fluent/fluentd/pull/3599
323
+ * Fix "invalid byte sequence is replaced" warning on Kubernetes
324
+ https://github.com/fluent/fluentd/pull/3596
325
+ * Fix "ArgumentError: unknown keyword: :logger" on Windows with Ruby 3.1
326
+ https://github.com/fluent/fluentd/pull/3592
327
+
328
+ ## Release v1.14.4 - 2022/01/06
329
+
330
+ ### Enhancement
331
+
332
+ * `in_tail`: Add option to skip long lines (`max_line_size`)
333
+ https://github.com/fluent/fluentd/pull/3565
334
+
335
+ ### Bug fix
336
+
337
+ * Incorrect BufferChunkOverflowError when each event size is < `chunk_limit_size`
338
+ https://github.com/fluent/fluentd/pull/3560
339
+ * On macOS with Ruby 2.7/3.0, `out_file` fails to write events if `append` is true.
340
+ https://github.com/fluent/fluentd/pull/3579
341
+ * test: Fix unstable test cases
342
+ https://github.com/fluent/fluentd/pull/3574
343
+ https://github.com/fluent/fluentd/pull/3577
344
+
345
+ ## Release v1.14.3 - 2021/11/26
346
+
347
+ ### Enhancement
348
+
349
+ * Changed to accept `http_parser.rb` 0.8.0.
350
+ `http_parser.rb` 0.8.0 is ready for Ractor.
351
+ https://github.com/fluent/fluentd/pull/3544
352
+
353
+ ### Bug fix
354
+
355
+ * in_tail: Fixed a bug that no new logs are read when
356
+ `enable_stat_watcher true` and `enable_watch_timer false` is set.
357
+ https://github.com/fluent/fluentd/pull/3541
358
+ * in_tail: Fixed a bug that the beginning and initial lines are lost
359
+ after startup when `read_from_head false` and path includes wildcard '*'.
360
+ https://github.com/fluent/fluentd/pull/3542
361
+ * Fixed a bug that processing messages were lost when
362
+ BufferChunkOverflowError was thrown even though only a specific
363
+ message size exceeds chunk_limit_size.
364
+ https://github.com/fluent/fluentd/pull/3553
365
+ https://github.com/fluent/fluentd/pull/3562
366
+
367
+ ### Misc
368
+
369
+ * Bump up required version of `win32-service` gem.
370
+ newer version is required to implement additional `fluent-ctl` commands.
371
+ https://github.com/fluent/fluentd/pull/3556
372
+
373
+ ## Release v1.14.2 - 2021/10/29
374
+
375
+ IMPORTANT: This release contain the fix for CVE-2021-41186 -
376
+ ReDoS vulnerability in `parser_apache2`.
377
+ This vulnerability is affected from Fluentd v0.14.14 to v1.14.1.
378
+ We recommend to upgrade Fluentd to v1.14.2 or use patched version of
379
+ `parser_apache2` plugin.
380
+
381
+ ### Enhancement
382
+
383
+ * fluent-cat: Add `--event-time` option to send specified event time for testing.
384
+ https://github.com/fluent/fluentd/pull/3528
385
+
386
+ ### Bug fix
387
+
388
+ * Fixed to generate correct epoch timestamp even after switching Daylight Saving Time
389
+ https://github.com/fluent/fluentd/pull/3524
390
+ * Fixed ReDoS vulnerability in parser_apache2.
391
+ This vulnerability is caused by a certain pattern of a broken apache log.
392
+
393
+ ## Release v1.14.1 - 2021/09/29
394
+
395
+ ### Enhancement
396
+
397
+ * in_tail: Added file related metrics.
398
+ These metrics should be collected same as fluent-bit's in_tail.
399
+ https://github.com/fluent/fluentd/pull/3504
400
+ * out_forward: Changed to use metrics mechanism for node statistics
401
+ https://github.com/fluent/fluentd/pull/3506
402
+
403
+ ### Bug fix
404
+
405
+ * in_tail: Fixed a crash bug that it raise undefined method of eof? error.
406
+ This error may happen only when `read_bytes_limit_per_second` was specified.
407
+ https://github.com/fluent/fluentd/pull/3500
408
+ * out_forward: Fixed a bug that node statistics information is not included correctly.
409
+ https://github.com/fluent/fluentd/pull/3503
410
+ https://github.com/fluent/fluentd/pull/3507
411
+ * Fixed a error when using `@include` directive
412
+ It was occurred when http/https scheme URI is used in `@include` directive with Ruby 3.
413
+ https://github.com/fluent/fluentd/pull/3517
414
+ * out_copy: Fixed to suppress a wrong warning for `ignore_if_prev_success`
415
+ It didn't work even if a user set it.
416
+ https://github.com/fluent/fluentd/pull/3515
417
+ * Fixed not to output nanoseconds field of next retry time in warning log
418
+ Then, inappropriate labels in log are also fixed. (retry_time -> retry_times,
419
+ next_retry_seconds -> next_retry_time)
420
+ https://github.com/fluent/fluentd/pull/3518
421
+
422
+ ## Release v1.14.0 - 2021/08/30
423
+
424
+ ### Enhancement
425
+
426
+ * Added `enable_input_metrics`, `enable_size_metrics` system
427
+ configuration parameter
428
+ This feature might need to pay higher CPU cost, so input event metrics
429
+ features are disabled by default. These features are also enabled by
430
+ `--enable-input-metrics`,`--enable-size-metrics` command line
431
+ option.
432
+ https://github.com/fluent/fluentd/pull/3440
433
+ * Added reserved word `@ROOT` for getting root router.
434
+ This is incompatible change. Do not use `@ROOT` for label name.
435
+ https://github.com/fluent/fluentd/pull/3358
436
+ * in_syslog: Added `send_keepalive_packet` option
437
+ https://github.com/fluent/fluentd/pull/3474
438
+ * in_http: Added `cors_allow_credentials` option.
439
+ This option tells browsers whether to expose the response to
440
+ frontend when the credentials mode is "include".
441
+ https://github.com/fluent/fluentd/pull/3481
442
+ https://github.com/fluent/fluentd/pull/3491
443
+
444
+ ### Bug fix
445
+
446
+ * in_tail: Fixed a bug that deleted paths are not removed
447
+ from pos file by file compaction at start up
448
+ https://github.com/fluent/fluentd/pull/3467
449
+ * in_tail: Revived a warning message of retrying unaccessible file
450
+ https://github.com/fluent/fluentd/pull/3478
451
+ * TLSServer: Fixed a crash bug on logging peer host name errors
452
+ https://github.com/fluent/fluentd/pull/3483
453
+
454
+ ### Misc
455
+
456
+ * Added metrics plugin mechanism
457
+ The implementations is changed to use metrics plugin.
458
+ In the future, 3rd party plugin will be able to handle these metrics.
459
+ https://github.com/fluent/fluentd/pull/3471
460
+ https://github.com/fluent/fluentd/pull/3473
461
+ https://github.com/fluent/fluentd/pull/3479
462
+ https://github.com/fluent/fluentd/pull/3484
463
+
464
+ # v1.13
465
+
466
+ ## Release v1.13.3 - 2021/07/27
467
+
468
+ ### Bug fix
469
+
470
+ * in_tail: Care DeletePending state on Windows
471
+ https://github.com/fluent/fluentd/pull/3457
472
+ https://github.com/fluent/fluentd/pull/3460
473
+ * in_tail: Fix some pos_file bugs.
474
+ Avoid deleting pos_file entries unexpectedly when both
475
+ `pos_file_compaction_interval` and `follow_inode` are enabled.
476
+ Use `bytesize` instead of `size` for path length.
477
+ https://github.com/fluent/fluentd/pull/3459
478
+ * in_tail: Fix detecting rotation twice on `follow_inode`.
479
+ https://github.com/fluent/fluentd/pull/3466
480
+
481
+ ### Misc
482
+
483
+ * Remove needless spaces in a sample config file
484
+ https://github.com/fluent/fluentd/pull/3456
485
+
486
+ ## Release v1.13.2 - 2021/07/12
487
+
488
+ ### Enhancement
489
+
490
+ * fluent-plugin-generate: Storage plugin was supported.
491
+ https://github.com/fluent/fluentd/pull/3426
492
+ * parser_json: Added support to customize configuration of oj options.
493
+ Use `FLUENT_OJ_OPTION_BIGDECIMAL_LOAD`, `FLUENT_OJ_OPTION_MAX_NESTING`,
494
+ `FLUENT_OJ_OPTION_MODE`, and `FLUENT_OJ_OPTION_USE_TO_JSON` environment
495
+ variable to configure it.
496
+ https://github.com/fluent/fluentd/pull/3315
497
+
498
+ ### Bug fix
499
+
500
+ * binlog_reader: Fixed a crash bug by missing "fluent/env" dependency.
501
+ https://github.com/fluent/fluentd/pull/3443
502
+ * Fixed a crash bug on outputting log at the early stage when parsing
503
+ config file. This is a regression since v1.13.0. If you use invalid
504
+ '@' prefix parameter, remove it as a workaround.
505
+ https://github.com/fluent/fluentd/pull/3451
506
+ * in_tail: Fixed a bug that when rotation is occurred, remaining lines
507
+ will be discarded if the throttling feature is enabled.
508
+ https://github.com/fluent/fluentd/pull/3390
509
+ * fluent-plugin-generate: Fixed a crash bug during gemspec generation.
510
+ It was unexpectedly introduced by #3305, thus this bug was a
511
+ regression since 1.12.3.
512
+ https://github.com/fluent/fluentd/pull/3444
513
+
514
+ ### Misc
515
+
516
+ * Fixed the runtime dependency version of http_parse.rb to 0.7.0.
517
+ It was fixed because false positive detection is occurred frequently
518
+ by security scanning tools.
519
+ https://github.com/fluent/fluentd/pull/3450
520
+
521
+ ## Release v1.13.1 - 2021/06/25
522
+
523
+ ### Bug fix
524
+
525
+ * out_forward: Fixed a race condition on handshake
526
+ It's caused by using a same unpacker from multiple threads.
527
+ https://github.com/fluent/fluentd/pull/3405
528
+ https://github.com/fluent/fluentd/pull/3406
529
+ * in_tail: Fixed to remove too much verbose debugging logs
530
+ It was unexpectedly introduced by #3185 log throttling feature.
531
+ https://github.com/fluent/fluentd/pull/3418
532
+ * Fixed not to echo back the provides path as is on a 404 error
533
+ There was a potential cross-site scripting vector even though
534
+ it is quite difficult to exploit.
535
+ https://github.com/fluent/fluentd/pull/3427
536
+
537
+ ### Misc
538
+
539
+ * Pretty print for Fluent::Config::Section has been supported
540
+ for debugging
541
+ https://github.com/fluent/fluentd/pull/3398
542
+ * CI: Dropped to run CI for Ruby 2.5
543
+ https://github.com/fluent/fluentd/pull/3412
544
+
545
+ ## Release v1.13.0 - 2021/05/29
546
+
547
+ ### Enhancement
548
+
549
+ * in_tail: Handle log throttling per file feature
550
+ https://github.com/fluent/fluentd/pull/3185
551
+ https://github.com/fluent/fluentd/pull/3364
552
+ https://github.com/fluent/fluentd/pull/3379
553
+ * Extend to support service discovery manager in simpler way
554
+ https://github.com/fluent/fluentd/pull/3299
555
+ https://github.com/fluent/fluentd/pull/3362
556
+ * in_http: HTTP GET requests has been supported
557
+ https://github.com/fluent/fluentd/pull/3373
558
+ * The log rotate settings in system configuration has been supported
559
+ https://github.com/fluent/fluentd/pull/3352
560
+
561
+ ### Bug fix
562
+
563
+ * Fix to disable `trace_instruction` when
564
+ `RubyVM::InstructionSequence` is available. It improves
565
+ compatibility with `truffleruby` some extent.
566
+ https://github.com/fluent/fluentd/pull/3376
567
+ * in_tail: Safely skip files which are used by another process on
568
+ Windows. It improves exception handling about
569
+ `ERROR_SHARING_VIOLATION` on Windows.
570
+ https://github.com/fluent/fluentd/pull/3378
571
+ * fluent-cat: the issue resending secondary file in specific format
572
+ has been fixed
573
+ https://github.com/fluent/fluentd/pull/3368
574
+ * in_tail: Shutdown immediately & safely even if reading huge files
575
+ Note that `skip_refresh_on_startup` must be enabled.
576
+ https://github.com/fluent/fluentd/pull/3380
577
+
578
+ ### Misc
579
+
580
+ * example: Change a path to backup_path in counter_server correctly
581
+ https://github.com/fluent/fluentd/pull/3359
582
+ * README: Update link to community forum to discuss.fluentd.org
583
+ https://github.com/fluent/fluentd/pull/3360
584
+
585
+ # v1.12
586
+
587
+ ## Release v1.12.4 - 2021/05/26
588
+
589
+ ### Bug fix
590
+
591
+ * in_tail: Fix a bug that refresh_watcher fails to handle file rotations
592
+ https://github.com/fluent/fluentd/pull/3393
593
+
594
+ ## Release v1.12.3 - 2021/04/23
595
+
596
+ ### Enhancement
597
+
598
+ * plugin_helper: Allow TLS to use keep-alive socket option
599
+ https://github.com/fluent/fluentd/pull/3308
600
+
601
+ ### Bug fix
602
+
603
+ * parser_csv, parser_syslog: Fix a naming conflict on parser_type
604
+ https://github.com/fluent/fluentd/pull/3302
605
+ * in_tail: Fix incorrect error code & message on Windows
606
+ https://github.com/fluent/fluentd/pull/3325
607
+ https://github.com/fluent/fluentd/pull/3329
608
+ https://github.com/fluent/fluentd/pull/3331
609
+ https://github.com/fluent/fluentd/pull/3337
610
+ * in_tail: Fix a crash bug on catching a short-lived log
611
+ https://github.com/fluent/fluentd/pull/3328
612
+ * storage_local: Fix position file corruption issue on concurrent gracefulReloads
613
+ https://github.com/fluent/fluentd/pull/3335
614
+ * Fix incorrect warnings about ${chunk_id} with out_s3
615
+ https://github.com/fluent/fluentd/pull/3339
616
+ * TLS Server: Add peer information to error log message
617
+ https://github.com/fluent/fluentd/pull/3330
618
+
619
+ ### Misc
620
+
621
+ * fluent-plugin-generate: add note about plugin name
622
+ https://github.com/fluent/fluentd/pull/3303
623
+ * fluent-plugin-generate: Use same depended gem version with fluentd
624
+ https://github.com/fluent/fluentd/pull/3305
625
+ * Fix some broken unit tests and improve CI's stability
626
+ https://github.com/fluent/fluentd/pull/3304
627
+ https://github.com/fluent/fluentd/pull/3307
628
+ https://github.com/fluent/fluentd/pull/3312
629
+ https://github.com/fluent/fluentd/pull/3313
630
+ https://github.com/fluent/fluentd/pull/3314
631
+ https://github.com/fluent/fluentd/pull/3316
632
+ https://github.com/fluent/fluentd/pull/3336
633
+ * Permit to install with win32-service 2.2.0 on Windows
634
+ https://github.com/fluent/fluentd/pull/3343
635
+
636
+ ## Release v1.12.2 - 2021/03/29
637
+
638
+ ### Enhancement
639
+
640
+ * out_copy: Add ignore_if_prev_successes
641
+ https://github.com/fluent/fluentd/pull/3190
642
+ https://github.com/fluent/fluentd/pull/3287
643
+ * Support multiple kind of timestamp format
644
+ https://github.com/fluent/fluentd/pull/3252
645
+ * formatter_ltsv: suppress delimiters in output
646
+ https://github.com/fluent/fluentd/pull/1666
647
+ https://github.com/fluent/fluentd/pull/3288
648
+ https://github.com/fluent/fluentd/pull/3289
649
+
650
+ ### Bug fix
651
+
652
+ * in_tail: Expect ENOENT during stat
653
+ https://github.com/fluent/fluentd/pull/3275
654
+ * out_forward: Prevent transferring duplicate logs on restart
655
+ https://github.com/fluent/fluentd/pull/3267
656
+ https://github.com/fluent/fluentd/pull/3285
657
+ * in_tail: Handle to send rotated logs when mv is used for rotating
658
+ https://github.com/fluent/fluentd/pull/3294
659
+ * fluent-plugin-config-format: Fill an uninitialized instance variable
660
+ https://github.com/fluent/fluentd/pull/3297
661
+ * Fix MessagePackEventStream issue with Enumerable methods
662
+ https://github.com/fluent/fluentd/pull/2116
663
+
664
+ ### Misc
665
+
666
+ * Add webrick to support Ruby 3.0
667
+ https://github.com/fluent/fluentd/pull/3257
668
+ * Suggest Discource instead of Google Groups
669
+ https://github.com/fluent/fluentd/pull/3261
670
+ * Update MAINTAINERS.md
671
+ https://github.com/fluent/fluentd/pull/3282
672
+ * Introduce DeepSource to check code quality
673
+ https://github.com/fluent/fluentd/pull/3286
674
+ https://github.com/fluent/fluentd/pull/3259
675
+ https://github.com/fluent/fluentd/pull/3291
676
+ * Migrate to GitHub Actions and stabilize tests
677
+ https://github.com/fluent/fluentd/pull/3266
678
+ https://github.com/fluent/fluentd/pull/3268
679
+ https://github.com/fluent/fluentd/pull/3281
680
+ https://github.com/fluent/fluentd/pull/3283
681
+ https://github.com/fluent/fluentd/pull/3290
682
+
683
+ ## Release v1.12.1 - 2021/02/18
684
+
685
+ ### Enhancement
686
+
687
+ * out_http: Add `headers_from_placeholders` parameter
688
+ https://github.com/fluent/fluentd/pull/3241
689
+ * fluent-plugin-config-format: Add `--table` option to use markdown table
690
+ https://github.com/fluent/fluentd/pull/3240
691
+ * Add `--disable-shared-socket`/`disable_shared_socket` to disable ServerEngine's shared socket setup
692
+ https://github.com/fluent/fluentd/pull/3250
693
+
694
+ ### Bug fix
695
+
696
+ * ca_generate: Fix creating TLS certification files which include broken extensions
697
+ https://github.com/fluent/fluentd/pull/3246
698
+ * test: Drop TLS 1.1 tests
699
+ https://github.com/fluent/fluentd/pull/3256
700
+ * Remove old gem constraints to support Ruby 3
701
+
702
+ ### Misc
703
+
704
+ * Use GitHub Actions
705
+ https://github.com/fluent/fluentd/pull/3233
706
+ https://github.com/fluent/fluentd/pull/3255
707
+
708
+ ## Release v1.12.0 - 2021/01/05
709
+
710
+ ### New feature
711
+
712
+ * in_tail: Add `follow_inode` to support log rotation with wild card
713
+ https://github.com/fluent/fluentd/pull/3182
714
+ * in_tail: Handle linux capability
715
+ https://github.com/fluent/fluentd/pull/3155
716
+ https://github.com/fluent/fluentd/pull/3162
717
+ * windows: Add win32 events alternative to unix signals
718
+ https://github.com/fluent/fluentd/pull/3131
719
+
720
+ ### Enhancement
721
+
722
+ * buffer: Enable metadata comparison optimization on all platforms
723
+ https://github.com/fluent/fluentd/pull/3095
724
+ * fluent-plugin-config-formatter: Handle `service_discovery` type
725
+ https://github.com/fluent/fluentd/pull/3178
726
+ * in_http: Add `add_query_params` parameter to add query params to event record
727
+ https://github.com/fluent/fluentd/pull/3197
728
+ * inject: Support `unixtime_micros` and `unixtime_nanos` in `time_type`
729
+ https://github.com/fluent/fluentd/pull/3220
730
+ * Refactoring code
731
+ https://github.com/fluent/fluentd/pull/3167
732
+ https://github.com/fluent/fluentd/pull/3170
733
+ https://github.com/fluent/fluentd/pull/3180
734
+ https://github.com/fluent/fluentd/pull/3196
735
+ https://github.com/fluent/fluentd/pull/3213
736
+ https://github.com/fluent/fluentd/pull/3222
737
+
738
+ ### Bug fix
739
+
740
+ * output: Prevent retry.step from being called too many times in a short time
741
+ https://github.com/fluent/fluentd/pull/3203
742
+
743
+ # v1.11
744
+
745
+ ## Release v1.11.5 - 2020/11/06
746
+
747
+ ### Enhancement
748
+
749
+ * formatter: Provide `newline` parameter to support `CRLF`
750
+ https://github.com/fluent/fluentd/pull/3152
751
+ * out_http: adding support for intermediate certificates
752
+ https://github.com/fluent/fluentd/pull/3146
753
+ * Update serverengine dependency to 2.2.2 or later
754
+
755
+ ### Bug fix
756
+
757
+ * Fix a bug that windows service isn't stopped gracefuly
758
+ https://github.com/fluent/fluentd/pull/3156
759
+
760
+ ## Release v1.11.4 - 2020/10/13
761
+
762
+ ### Enhancement
763
+
764
+ * inject: Support `unixtime_millis` in `time_type` parameter
765
+ https://github.com/fluent/fluentd/pull/3145
766
+
767
+ ### Bug fix
768
+
769
+ * out_http: Fix broken data with `json_array true`
770
+ https://github.com/fluent/fluentd/pull/3144
771
+ * output: Fix wrong logging issue for `${chunk_id}`
772
+ https://github.com/fluent/fluentd/pull/3134
773
+
774
+ ## Release v1.11.3 - 2020/09/30
775
+
776
+ ### Enhancement
777
+
778
+ * in_exec: Add `connect_mode` parameter to read stderr
779
+ https://github.com/fluent/fluentd/pull/3108
780
+ * parser_json: Improve the performance
781
+ https://github.com/fluent/fluentd/pull/3109
782
+ * log: Add `ignore_same_log_interval` parameter
783
+ https://github.com/fluent/fluentd/pull/3119
784
+ * Upgrade win32 gems
785
+ https://github.com/fluent/fluentd/pull/3100
786
+ * Refactoring code
787
+ https://github.com/fluent/fluentd/pull/3094
788
+ https://github.com/fluent/fluentd/pull/3118
789
+
790
+ ### Bug fix
791
+
792
+ * buffer: Fix calculation of timekey stats
793
+ https://github.com/fluent/fluentd/pull/3018
794
+ * buffer: fix binmode usage for prevent gc
795
+ https://github.com/fluent/fluentd/pull/3138
796
+
797
+ ## Release v1.11.2 - 2020/08/04
798
+
799
+ ### Enhancement
800
+
801
+ * `in_dummy` renamed to `in_sample`
802
+ https://github.com/fluent/fluentd/pull/3065
803
+ * Allow regular expression in filter/match directive
804
+ https://github.com/fluent/fluentd/pull/3071
805
+ * Refactoring code
806
+ https://github.com/fluent/fluentd/pull/3051
807
+
808
+ ### Bug fix
809
+
810
+ * buffer: Fix log message for `chunk_limit_records` case
811
+ https://github.com/fluent/fluentd/pull/3079
812
+ * buffer: Fix timekey optimization for non-windows platform
813
+ https://github.com/fluent/fluentd/pull/3092
814
+ * cert: Raise an error for broken certificate file
815
+ https://github.com/fluent/fluentd/pull/3086
816
+ * cert: Set TLS ciphers list correcty on older OpenSSL
817
+ https://github.com/fluent/fluentd/pull/3093
818
+
819
+ ## Release v1.11.1 - 2020/06/22
820
+
821
+ ### Enhancement
822
+
823
+ * in_http: Add `dump_error_log` parameter
824
+ https://github.com/fluent/fluentd/pull/3035
825
+ * in_http: Improve time field handling
826
+ https://github.com/fluent/fluentd/pull/3046
827
+ * Refactoring code
828
+ https://github.com/fluent/fluentd/pull/3047
829
+
830
+ ### Bug fix
831
+
832
+ * in_tail: Use actual path instead of based pattern for ignore list
833
+ https://github.com/fluent/fluentd/pull/3042
834
+ * child_process helper: Fix child process failure due to SIGPIPE if the command uses stdout
835
+ https://github.com/fluent/fluentd/pull/3044
836
+
837
+ ## Release v1.11.0 - 2020/06/04
838
+
839
+ ### New feature
840
+
841
+ * in_unix: Use v1 API
842
+ https://github.com/fluent/fluentd/pull/2992
843
+
844
+ ### Enhancement
845
+
846
+ * parser_syslog: Support any `time_format` for RFC3164 string parser
847
+ https://github.com/fluent/fluentd/pull/3014
848
+ * parser_syslog: Add new parser for RFC5424
849
+ https://github.com/fluent/fluentd/pull/3015
850
+ * Refactoring code
851
+ https://github.com/fluent/fluentd/pull/3019
852
+
853
+ ### Bug fix
854
+
855
+ * in_gc_stat: Add `use_symbol_keys` parameter to emit string key record
856
+ https://github.com/fluent/fluentd/pull/3008
857
+
858
+ # v1.10
859
+
860
+ ## Release v1.10.4 - 2020/05/12
861
+
862
+ ### Enhancement
863
+
864
+ * out_http: Support single json array payload
865
+ https://github.com/fluent/fluentd/pull/2973
866
+ * Refactoring
867
+ https://github.com/fluent/fluentd/pull/2988
868
+
869
+ ### Bug fix
870
+
871
+ * supervisor: Call `File.umask(0)` for standalone worker
872
+ https://github.com/fluent/fluentd/pull/2987
873
+ * out_forward: Fix ZeroDivisionError issue with `weight 0`
874
+ https://github.com/fluent/fluentd/pull/2989
875
+
876
+ ## Release v1.10.3 - 2020/05/01
877
+
878
+ ### Enhancement
879
+
880
+ * record_accessor: Add `set` method
881
+ https://github.com/fluent/fluentd/pull/2977
882
+ * config: Ruby DSL format is deprecated
883
+ https://github.com/fluent/fluentd/pull/2958
884
+ * Refactor code
885
+ https://github.com/fluent/fluentd/pull/2961
886
+ https://github.com/fluent/fluentd/pull/2962
887
+ https://github.com/fluent/fluentd/pull/2965
888
+ https://github.com/fluent/fluentd/pull/2966
889
+ https://github.com/fluent/fluentd/pull/2978
890
+
891
+ ### Bug fix
892
+
893
+ * out_forward: Disable `linger_timeout` setting on Windows
894
+ https://github.com/fluent/fluentd/pull/2959
895
+ * out_forward: Fix warning of service discovery manager when fluentd stops
896
+ https://github.com/fluent/fluentd/pull/2974
897
+
898
+ ## Release v1.10.2 - 2020/04/15
899
+
900
+ ### Enhancement
901
+
902
+ * out_copy: Add plugin_id to log message
903
+ https://github.com/fluent/fluentd/pull/2934
904
+ * socket: Allow cert chains in mutual auth
905
+ https://github.com/fluent/fluentd/pull/2930
906
+ * system: Add ignore_repeated_log_interval parameter
907
+ https://github.com/fluent/fluentd/pull/2937
908
+ * windows: Allow to launch fluentd from whitespace included path
909
+ https://github.com/fluent/fluentd/pull/2920
910
+ * Refactor code
911
+ https://github.com/fluent/fluentd/pull/2935
912
+ https://github.com/fluent/fluentd/pull/2936
913
+ https://github.com/fluent/fluentd/pull/2938
914
+ https://github.com/fluent/fluentd/pull/2939
915
+ https://github.com/fluent/fluentd/pull/2946
916
+
917
+ ### Bug fix
918
+
919
+ * in_syslog: Fix octet-counting mode bug
920
+ https://github.com/fluent/fluentd/pull/2942
921
+ * out_forward: Create timer for purging obsolete sockets when keepalive_timeout is not set
922
+ https://github.com/fluent/fluentd/pull/2943
923
+ * out_forward: Need authentication when sending tcp heartbeat with keepalive
924
+ https://github.com/fluent/fluentd/pull/2945
925
+ * command: Fix fluent-debug start failure
926
+ https://github.com/fluent/fluentd/pull/2948
927
+ * command: Fix regression of supervisor's worker and `--daemon` combo
928
+ https://github.com/fluent/fluentd/pull/2950
929
+
930
+ ## Release v1.10.1 - 2020/04/02
931
+
932
+ ### Enhancement
933
+
934
+ * command: `--daemon` and `--no-supervisor` now work together
935
+ https://github.com/fluent/fluentd/pull/2912
936
+ * Refactor code
937
+ https://github.com/fluent/fluentd/pull/2913
938
+
939
+ ### Bug fix
940
+
941
+ * in_tail: `Fix pos_file_compaction_interval` parameter type
942
+ https://github.com/fluent/fluentd/pull/2921
943
+ * in_tail: Fix seek position update after compaction
944
+ https://github.com/fluent/fluentd/pull/2922
945
+ * parser_syslog: Fix regression in the `with_priority` and RFC5424 case
946
+ https://github.com/fluent/fluentd/pull/2923
947
+
948
+ ### Misc
949
+
950
+ * Add document for security audit
951
+ https://github.com/fluent/fluentd/pull/2911
952
+
953
+ ## Release v1.10.0 - 2020/03/24
954
+
955
+ ### New feature
956
+
957
+ * sd plugin: Add SRV record plugin
958
+ https://github.com/fluent/fluentd/pull/2876
959
+
960
+ ### Enhancement
961
+
962
+ * server: Add `cert_verifier` parameter for TLS transport
963
+ https://github.com/fluent/fluentd/pull/2888
964
+ * parser_syslog: Support customized time format
965
+ https://github.com/fluent/fluentd/pull/2886
966
+ * in_dummy: Delete `suspend` parameter
967
+ https://github.com/fluent/fluentd/pull/2897
968
+ * Refactor code
969
+ https://github.com/fluent/fluentd/pull/2858
970
+ https://github.com/fluent/fluentd/pull/2862
971
+ https://github.com/fluent/fluentd/pull/2864
972
+ https://github.com/fluent/fluentd/pull/2869
973
+ https://github.com/fluent/fluentd/pull/2870
974
+ https://github.com/fluent/fluentd/pull/2874
975
+ https://github.com/fluent/fluentd/pull/2881
976
+ https://github.com/fluent/fluentd/pull/2885
977
+ https://github.com/fluent/fluentd/pull/2894
978
+ https://github.com/fluent/fluentd/pull/2896
979
+ https://github.com/fluent/fluentd/pull/2898
980
+ https://github.com/fluent/fluentd/pull/2899
981
+ https://github.com/fluent/fluentd/pull/2900
982
+ https://github.com/fluent/fluentd/pull/2901
983
+ https://github.com/fluent/fluentd/pull/2906
984
+
985
+ ### Bug fix
986
+
987
+ * out_forward: windows: Permit to specify `linger_timeout`
988
+ https://github.com/fluent/fluentd/pull/2868
989
+ * parser_syslog: Fix syslog format detection
990
+ https://github.com/fluent/fluentd/pull/2879
991
+ * buffer: Fix `available_buffer_space_ratio` calculation
992
+ https://github.com/fluent/fluentd/pull/2882
993
+ * tls: Support CRLF based X.509 certificates
994
+ https://github.com/fluent/fluentd/pull/2890
995
+ * msgpack_factory mixin: Fix performance penalty for deprecation log
996
+ https://github.com/fluent/fluentd/pull/2903
997
+
998
+
999
+ # v1.9
1000
+
1001
+ ## Release v1.9.3 - 2020/03/05
1002
+
1003
+ ### Enhancement
1004
+
1005
+ * in_tail: Emit buffered lines as `unmatched_line` at shutdown phase when `emit_unmatched_lines true`
1006
+ https://github.com/fluent/fluentd/pull/2837
1007
+ * Specify directory mode explicitly
1008
+ https://github.com/fluent/fluentd/pull/2827
1009
+ * server helper: Change SSLError log level to warn in accept
1010
+ https://github.com/fluent/fluentd/pull/2861
1011
+ * Refactor code
1012
+ https://github.com/fluent/fluentd/pull/2829
1013
+ https://github.com/fluent/fluentd/pull/2830
1014
+ https://github.com/fluent/fluentd/pull/2832
1015
+ https://github.com/fluent/fluentd/pull/2836
1016
+ https://github.com/fluent/fluentd/pull/2838
1017
+ https://github.com/fluent/fluentd/pull/2842
1018
+ https://github.com/fluent/fluentd/pull/2843
1019
+
1020
+ ### Bug fix
1021
+
1022
+ * buffer: Add seq to metadata that it can be unique
1023
+ https://github.com/fluent/fluentd/pull/2824
1024
+ https://github.com/fluent/fluentd/pull/2853
1025
+ * buffer: Use `Tempfile` as binmode for decompression
1026
+ https://github.com/fluent/fluentd/pull/2847
1027
+
1028
+ ### Misc
1029
+
1030
+ * Add `.idea` to git ignore file
1031
+ https://github.com/fluent/fluentd/pull/2834
1032
+ * appveyor: Fix tests
1033
+ https://github.com/fluent/fluentd/pull/2853
1034
+ https://github.com/fluent/fluentd/pull/2855
1035
+ * Update pem for test
1036
+ https://github.com/fluent/fluentd/pull/2839
1037
+
1038
+ ## Release v1.9.2 - 2020/02/13
1039
+
1040
+ ### Enhancement
1041
+
1042
+ * in_tail: Add `pos_file_compaction_interval` parameter for auto compaction
1043
+ https://github.com/fluent/fluentd/pull/2805
1044
+ * command: Use given encoding when RUBYOPT has `-E`
1045
+ https://github.com/fluent/fluentd/pull/2814
1046
+
1047
+ ### Bug fix
1048
+
1049
+ * command: Accept RUBYOPT with two or more options
1050
+ https://github.com/fluent/fluentd/pull/2807
1051
+ * command: Fix infinite loop bug when RUBYOPT is invalid
1052
+ https://github.com/fluent/fluentd/pull/2813
1053
+ * log: serverengine's log should be formatted with the same format of fluentd
1054
+ https://github.com/fluent/fluentd/pull/2812
1055
+ * in_http: Fix `NoMethodError` when `OPTIONS` request doesn't have 'Origin' header
1056
+ https://github.com/fluent/fluentd/pull/2823
1057
+ * parser_syslog: Improved for parsing RFC5424 structured data in `parser_syslog`
1058
+ https://github.com/fluent/fluentd/pull/2816
1059
+
1060
+ ## Release v1.9.1 - 2020/01/31
1061
+
1062
+ ### Enhancement
1063
+
1064
+ * http_server helper: Support HTTPS
1065
+ https://github.com/fluent/fluentd/pull/2787
1066
+ * in_tail: Add `path_delimiter` to split with any char
1067
+ https://github.com/fluent/fluentd/pull/2796
1068
+ * in_tail: Remove an entry from PositionaFile when it is unwatched
1069
+ https://github.com/fluent/fluentd/pull/2803
1070
+ * out_http: Add warning for `retryable_response_code`
1071
+ https://github.com/fluent/fluentd/pull/2809
1072
+ * parser_syslog: Add multiline RFC5424 support
1073
+ https://github.com/fluent/fluentd/pull/2767
1074
+ * Add TLS module to unify TLS related code
1075
+ https://github.com/fluent/fluentd/pull/2802
1076
+
1077
+ ### Bug fix
1078
+
1079
+ * output: Add `EncodingError` to unrecoverable errors
1080
+ https://github.com/fluent/fluentd/pull/2808
1081
+ * tls: Fix TLS version handling in secure mode
1082
+ https://github.com/fluent/fluentd/pull/2802
1083
+
1084
+ ## Release v1.9.0 - 2020/01/22
1085
+
1086
+ ### New feature
1087
+
1088
+ * New light-weight config reload mechanizm
1089
+ https://github.com/fluent/fluentd/pull/2716
1090
+ * Drop ruby 2.1/2.2/2.3 support
1091
+ https://github.com/fluent/fluentd/pull/2750
1092
+
1093
+ ### Enhancement
1094
+
1095
+ * output: Show better message for secondary warning
1096
+ https://github.com/fluent/fluentd/pull/2751
1097
+ * Use `ext_monitor` gem if it is installed. For ruby 2.6 or earlier
1098
+ https://github.com/fluent/fluentd/pull/2670
1099
+ * Support Ruby's Time class in msgpack serde
1100
+ https://github.com/fluent/fluentd/pull/2775
1101
+ * Clean up code/test
1102
+ https://github.com/fluent/fluentd/pull/2753
1103
+ https://github.com/fluent/fluentd/pull/2763
1104
+ https://github.com/fluent/fluentd/pull/2764
1105
+ https://github.com/fluent/fluentd/pull/2780
1106
+
1107
+ ### Bug fix
1108
+
1109
+ * buffer: Disable the optimization of Metadata instance comparison on Windows
1110
+ https://github.com/fluent/fluentd/pull/2778
1111
+ * outut/buffer: Fix stage size computation
1112
+ https://github.com/fluent/fluentd/pull/2734
1113
+ * server: Ignore Errno::EHOSTUNREACH in TLS accept to avoid fluentd restart
1114
+ https://github.com/fluent/fluentd/pull/2773
1115
+ * server: Fix IPv6 dual stack mode issue for udp socket
1116
+ https://github.com/fluent/fluentd/pull/2781
1117
+ * config: Support @include/include directive for spaces included path
1118
+ https://github.com/fluent/fluentd/pull/2780
1119
+
1120
+
1121
+ # v1.8
1122
+
1123
+ ## Release v1.8.1 - 2019/12/26
1124
+
1125
+ ### Enhancement
1126
+
1127
+ * in_tail: Add `path_timezone` parameter to format `path` with the specified timezone
1128
+ https://github.com/fluent/fluentd/pull/2719
1129
+ * out_copy: Add `copy_mode` parameter. `deep_copy` parameter is now deprecated.
1130
+ https://github.com/fluent/fluentd/pull/2747
1131
+ * supervisor: Add deprecated log for `inline_config`
1132
+ https://github.com/fluent/fluentd/pull/2746
1133
+
1134
+ ### Bug fixes
1135
+
1136
+ * parser_ltsv: Prevent garbage result by checking `label_delimiter`
1137
+ https://github.com/fluent/fluentd/pull/2748
1138
+
1139
+ ## Release v1.8.0 - 2019/12/11
1140
+
1141
+ ### New feature
1142
+
1143
+ * Add service discovery plugin and `out_forward` use it
1144
+ https://github.com/fluent/fluentd/pull/2541
1145
+ * config: Add strict mode and support `default`/`nil` value in ruby embedded mode
1146
+ https://github.com/fluent/fluentd/pull/2685
1147
+
1148
+ ### Enhancement
1149
+
1150
+ * formatter_csv: Support nested fields
1151
+ https://github.com/fluent/fluentd/pull/2643
1152
+ * record_accessor helper: Make code simple and bit faster
1153
+ https://github.com/fluent/fluentd/pull/2660
1154
+ * Relax tzinfo dependency to accept v1
1155
+ https://github.com/fluent/fluentd/pull/2673
1156
+ * log: Deprecate top-level match for capturing fluentd logs
1157
+ https://github.com/fluent/fluentd/pull/2689
1158
+ * in_monitor_agent: Expose Fluentd verion in REST API
1159
+ https://github.com/fluent/fluentd/pull/2706
1160
+ * time: Accept localtime xor utc
1161
+ https://github.com/fluent/fluentd/pull/2720
1162
+ https://github.com/fluent/fluentd/pull/2731
1163
+ * formatter_stdout: Make time_format configurable in stdout format
1164
+ https://github.com/fluent/fluentd/pull/2721
1165
+ * supervisor: create log directory when it doesn't exists
1166
+ https://github.com/fluent/fluentd/pull/2732
1167
+ * clean up internal classes / methods / code
1168
+ https://github.com/fluent/fluentd/pull/2647
1169
+ https://github.com/fluent/fluentd/pull/2648
1170
+ https://github.com/fluent/fluentd/pull/2653
1171
+ https://github.com/fluent/fluentd/pull/2654
1172
+ https://github.com/fluent/fluentd/pull/2657
1173
+ https://github.com/fluent/fluentd/pull/2667
1174
+ https://github.com/fluent/fluentd/pull/2674
1175
+ https://github.com/fluent/fluentd/pull/2677
1176
+ https://github.com/fluent/fluentd/pull/2680
1177
+ https://github.com/fluent/fluentd/pull/2709
1178
+ https://github.com/fluent/fluentd/pull/2730
1179
+
1180
+ ### Bug fixes
1181
+
1182
+ * output: Fix warning printed when chunk key placeholder not replaced
1183
+ https://github.com/fluent/fluentd/pull/2523
1184
+ https://github.com/fluent/fluentd/pull/2733
1185
+ * Fix dry-run mode
1186
+ https://github.com/fluent/fluentd/pull/2651
1187
+ * suppress warning
1188
+ https://github.com/fluent/fluentd/pull/2652
1189
+ * suppress keyword argument warning for ruby2.7
1190
+ https://github.com/fluent/fluentd/pull/2664
1191
+ * RPC: Fix debug log text
1192
+ https://github.com/fluent/fluentd/pull/2666
1193
+ * time: Properly show class names in error message
1194
+ https://github.com/fluent/fluentd/pull/2671
1195
+ * Fix a potential bug that ThreadError may occur on SIGUSR1
1196
+ https://github.com/fluent/fluentd/pull/2678
1197
+ * server helper: Ignore ECONNREFUSED in TLS accept to avoid fluentd restart
1198
+ https://github.com/fluent/fluentd/pull/2695
1199
+ * server helper: Fix IPv6 dual stack mode issue for tcp socket.
1200
+ https://github.com/fluent/fluentd/pull/2697
1201
+ * supervisor: Fix inline config handling
1202
+ https://github.com/fluent/fluentd/pull/2708
1203
+ * Fix typo
1204
+ https://github.com/fluent/fluentd/pull/2710
1205
+ https://github.com/fluent/fluentd/pull/2714
1206
+
1207
+ # v1.7
1208
+
1209
+ ## Release v1.7.4 - 2019/10/24
1210
+
1211
+ ### Enhancement
1212
+
1213
+ * in_http: Add `use_204_response` parameter to return proper 204 response instead of 200.
1214
+ fluentd v2 will change this parameter to `true`.
1215
+ https://github.com/fluent/fluentd/pull/2640
1216
+
1217
+ ### Bug fixes
1218
+
1219
+ * child_process helper: fix stderr blocking for discard case
1220
+ https://github.com/fluent/fluentd/pull/2649
1221
+ * log: Fix log rotation handling on Windows
1222
+ https://github.com/fluent/fluentd/pull/2663
1223
+
1224
+ ## Release v1.7.3 - 2019/10/01
1225
+
1226
+ ### Enhancement
1227
+
1228
+ * in_syslog: Replace priority_key with severity_key
1229
+ https://github.com/fluent/fluentd/pull/2636
1230
+
1231
+ ### Bug fixes
1232
+
1233
+ * out_forward: Fix nil error after purge obsoleted sockets in socket cache
1234
+ https://github.com/fluent/fluentd/pull/2635
1235
+ * fix typo in ChangeLog
1236
+ https://github.com/fluent/fluentd/pull/2633
1237
+
1238
+ ## Release v1.7.2 - 2019/09/19
1239
+
1240
+ ### Enhancement
1241
+
1242
+ * in_tcp: Add security/client to restrict access
1243
+ https://github.com/fluent/fluentd/pull/2622
1244
+
1245
+ ### Bug fixes
1246
+
1247
+ * buf_file/buf_file_single: fix to handle compress data during restart
1248
+ https://github.com/fluent/fluentd/pull/2620
1249
+ * plugin: Use `__send__` to avoid conflict with user defined `send`
1250
+ https://github.com/fluent/fluentd/pull/2614
1251
+ * buffer: reject invalid timekey at configure phase
1252
+ https://github.com/fluent/fluentd/pull/2615
1253
+
1254
+
1255
+ ## Release v1.7.1 - 2019/09/08
1256
+
1257
+ ### Enhancement
1258
+
1259
+ * socket helper/out_forward: Support Windows certstore to load certificates
1260
+ https://github.com/fluent/fluentd/pull/2601
1261
+ * parser_syslog: Add faster parser for rfc3164 message
1262
+ https://github.com/fluent/fluentd/pull/2599
1263
+
1264
+ ### Bug fixes
1265
+
1266
+ * buf_file/buf_file_single: fix to ignore placeholder based path.
1267
+ https://github.com/fluent/fluentd/pull/2594
1268
+ * server helper: Ignore ETIMEDOUT error in SSL_accept
1269
+ https://github.com/fluent/fluentd/pull/2595
1270
+ * buf_file: ensure to remove metadata after buffer creation failure
1271
+ https://github.com/fluent/fluentd/pull/2598
1272
+ * buf_file_single: fix duplicated path setting check
1273
+ https://github.com/fluent/fluentd/pull/2600
1274
+ * fix msgpack-ruby dependency to use recent feature
1275
+ https://github.com/fluent/fluentd/pull/2606
1276
+
1277
+
1278
+ ## Release v1.7.0 - 2019/08/20
1279
+
1280
+ ### New feature
1281
+
1282
+ * buffer: Add file_single buffer plugin
1283
+ https://github.com/fluent/fluentd/pull/2579
1284
+ * output: Add http output plugin
1285
+ https://github.com/fluent/fluentd/pull/2488
1286
+
1287
+ ### Enhancement
1288
+
1289
+ * buffer: Improve the performance of buffer routine
1290
+ https://github.com/fluent/fluentd/pull/2560
1291
+ https://github.com/fluent/fluentd/pull/2563
1292
+ https://github.com/fluent/fluentd/pull/2564
1293
+ * output: Use Mutex instead of Monitor
1294
+ https://github.com/fluent/fluentd/pull/2561
1295
+ * event: Add `OneEventStrea#empty?` method
1296
+ https://github.com/fluent/fluentd/pull/2565
1297
+ * thread: Set thread name for ruby 2.3 or later
1298
+ https://github.com/fluent/fluentd/pull/2574
1299
+ * core: Cache msgpack packer/unpacker to avoid the object allocation
1300
+ https://github.com/fluent/fluentd/pull/2559
1301
+ * time: Use faster way to get sec and nsec
1302
+ https://github.com/fluent/fluentd/pull/2557
1303
+ * buf_file: Reduce IO flush by removing `IO#truncate`
1304
+ https://github.com/fluent/fluentd/pull/2551
1305
+ * in_tcp: Improve the performance for multiple event case
1306
+ https://github.com/fluent/fluentd/pull/2567
1307
+ * in_syslog: support `source_hostname_key` and `source_address_key` for unmatched event
1308
+ https://github.com/fluent/fluentd/pull/2553
1309
+ * formatter_csv: Improve the format performance.
1310
+ https://github.com/fluent/fluentd/pull/2529
1311
+ * parser_csv: Add fast parser for typical cases
1312
+ https://github.com/fluent/fluentd/pull/2535
1313
+ * out_forward: Refactor code
1314
+ https://github.com/fluent/fluentd/pull/2516
1315
+ https://github.com/fluent/fluentd/pull/2532
1316
+
1317
+ ### Bug fixes
1318
+
1319
+ * output: fix data lost on decompression
1320
+ https://github.com/fluent/fluentd/pull/2547
1321
+ * out_exec_filter: fix non-ascii encoding issue
1322
+ https://github.com/fluent/fluentd/pull/2539
1323
+ * in_tail: Don't call parser's configure twice
1324
+ https://github.com/fluent/fluentd/pull/2569
1325
+ * Fix unused message handling for <section> parameters
1326
+ https://github.com/fluent/fluentd/pull/2578
1327
+ * Fix comment/message typos
1328
+ https://github.com/fluent/fluentd/pull/2549
1329
+ https://github.com/fluent/fluentd/pull/2554
1330
+ https://github.com/fluent/fluentd/pull/2556
1331
+ https://github.com/fluent/fluentd/pull/2566
1332
+ https://github.com/fluent/fluentd/pull/2573
1333
+ https://github.com/fluent/fluentd/pull/2576
1334
+ https://github.com/fluent/fluentd/pull/2583
1335
+
1336
+ # v1.6
1337
+
1338
+ ## Release v1.6.3 - 2019/07/29
1339
+
1340
+ ### Enhancement
1341
+
1342
+ * in_syslog: Add `emit_unmatched_lines` parameter
1343
+ https://github.com/fluent/fluentd/pull/2499
1344
+ * buf_file: Add `path_suffix` parameter
1345
+ https://github.com/fluent/fluentd/pull/2524
1346
+ * in_tail: Improve the performance of split lines
1347
+ https://github.com/fluent/fluentd/pull/2527
1348
+
1349
+ ### Bug fixes
1350
+
1351
+ * http_server: Fix re-define render_json method
1352
+ https://github.com/fluent/fluentd/pull/2517
1353
+
1354
+ ## Release v1.6.2 - 2019/07/11
1355
+
1356
+ ### Bug fixes
1357
+
1358
+ * http_server helper: Add title argument to support multiple servers
1359
+ https://github.com/fluent/fluentd/pull/2493
1360
+
1361
+ ## Release v1.6.1 - 2019/07/10
1362
+
1363
+ ### Enhancement
1364
+
1365
+ * socket/cert: Support all private keys OpenSSL supports, not only RSA.
1366
+ https://github.com/fluent/fluentd/pull/2487
1367
+ * output/buffer: Improve statistics method performance
1368
+ https://github.com/fluent/fluentd/pull/2491
1369
+
1370
+ ### Bug fixes
1371
+
1372
+ * plugin_config_formatter: update new doc URL
1373
+ https://github.com/fluent/fluentd/pull/2481
1374
+ * out_forward: Avoid zero division error when there are no available nodes
1375
+ https://github.com/fluent/fluentd/pull/2482
1376
+
1377
+ ## Release v1.6.0 - 2019/07/01
1378
+
1379
+ ### New feature
1380
+
1381
+ * plugin: Add http_server helper and in_monitor_agent use it
1382
+ https://github.com/fluent/fluentd/pull/2447
1383
+
1384
+ ### Enhancement
1385
+
1386
+ * in_monitor_agent: Add more metrics for buffer/output
1387
+ https://github.com/fluent/fluentd/pull/2450
1388
+ * time/plugin: Add `EventTime#to_time` method for fast conversion
1389
+ https://github.com/fluent/fluentd/pull/2469
1390
+ * socket helper/out_forward: Add connect_timeout parameter
1391
+ https://github.com/fluent/fluentd/pull/2467
1392
+ * command: Add `--conf-encoding` option
1393
+ https://github.com/fluent/fluentd/pull/2453
1394
+ * parser_none: Small performance optimization
1395
+ https://github.com/fluent/fluentd/pull/2455
1396
+
1397
+ ### Bug fixes
1398
+
1399
+ * cert: Fix cert match pattern
1400
+ https://github.com/fluent/fluentd/pull/2466
1401
+ * output: Fix forget to increment rollback count
1402
+ https://github.com/fluent/fluentd/pull/2462
1403
+
1404
+ # v1.5
1405
+
1406
+ ## Release v1.5.2 - 2019/06/13
1407
+
1408
+ ### Bug fixes
1409
+
1410
+ * out_forward: Fix duplicated handshake bug in keepalive
1411
+ https://github.com/fluent/fluentd/pull/2456
1412
+
1413
+ ## Release v1.5.1 - 2019/06/05
1414
+
1415
+ ### Enhancement
1416
+
1417
+ * in_tail: Increase read block size to reduce IO call
1418
+ https://github.com/fluent/fluentd/pull/2418
1419
+ * in_monitor_agent: Refactor code
1420
+ https://github.com/fluent/fluentd/pull/2422
1421
+
1422
+ ### Bug fixes
1423
+
1424
+ * out_forward: Fix socket handling of keepalive
1425
+ https://github.com/fluent/fluentd/pull/2434
1426
+ * parser: Fix the use of name based timezone
1427
+ https://github.com/fluent/fluentd/pull/2421
1428
+ * in_monitor_agent: Fix debug parameter handling
1429
+ https://github.com/fluent/fluentd/pull/2423
1430
+ * command: Fix error handling of log rotation age option
1431
+ https://github.com/fluent/fluentd/pull/2427
1432
+ * command: Fix ERB warning for ruby 2.6 or later
1433
+ https://github.com/fluent/fluentd/pull/2430
1434
+
1435
+ ## Release v1.5.0 - 2019/05/18
1436
+
1437
+ ### New feature
1438
+
1439
+ * out_forward: Support keepalive feature
1440
+ https://github.com/fluent/fluentd/pull/2393
1441
+ * in_http: Support TLS via server helper
1442
+ https://github.com/fluent/fluentd/pull/2395
1443
+ * in_syslog: Support TLS via server helper
1444
+ https://github.com/fluent/fluentd/pull/2399
1445
+
1446
+ ### Enhancement
1447
+
1448
+ * in_syslog: Add delimiter parameter
1449
+ https://github.com/fluent/fluentd/pull/2378
1450
+ * in_forward: Add tag/add_tag_prefix parameters
1451
+ https://github.com/fluent/fluentd/pull/2396
1452
+ * parser_json: Add stream_buffer_size parameter for yajl
1453
+ https://github.com/fluent/fluentd/pull/2381
1454
+ * command: Add deprecated message to show-plugin-config option
1455
+ https://github.com/fluent/fluentd/pull/2401
1456
+ * storage_local: Ignore empty file. Call sync after write for XFS.
1457
+ https://github.com/fluent/fluentd/pull/2409
1458
+
1459
+ ### Bug fixes
1460
+
1461
+ * out_forward: Don't use SO_LINGER on SSL/TLS WinSock
1462
+ https://github.com/fluent/fluentd/pull/2398
1463
+ * server helper: Fix recursive lock issue in TLSServer
1464
+ https://github.com/fluent/fluentd/pull/2341
1465
+ * Fix typo
1466
+ https://github.com/fluent/fluentd/pull/2369
1467
+
1468
+ # v1.4
1469
+
1470
+ ## Release v1.4.2 - 2019/04/02
1471
+
1472
+ ### Enhancements
1473
+
1474
+ * in_http: subdomain support in CORS domain
1475
+ https://github.com/fluent/fluentd/pull/2337
1476
+ * in_monitor_agent: Expose current timekey list as a buffer metrics
1477
+ https://github.com/fluent/fluentd/pull/2343
1478
+ * in_tcp/in_udp: Add source_address_key parameter
1479
+ https://github.com/fluent/fluentd/pull/2347
1480
+ * in_forward: Add send_keepalive_packet parameter to check the remote connection is available or not
1481
+ https://github.com/fluent/fluentd/pull/2352
1482
+
1483
+ ### Bug fixes
1484
+
1485
+ * out_exec_filter: Fix typo of child_respawn description
1486
+ https://github.com/fluent/fluentd/pull/2341
1487
+ * in_tail: Create parent directories for symlink
1488
+ https://github.com/fluent/fluentd/pull/2353
1489
+ * in_tail: Fix encoding duplication check for non-specified case
1490
+ https://github.com/fluent/fluentd/pull/2361
1491
+ * log: Fix time format handling of plugin logger when log format is JSON
1492
+ https://github.com/fluent/fluentd/pull/2356
1493
+
1494
+ ## Release v1.4.1 - 2019/03/18
1495
+
1496
+ ### Enhancements
1497
+
1498
+ * system: Add worker_id to process_name when workers is larger than 1
1499
+ https://github.com/fluent/fluentd/pull/2321
1500
+ * parser_regexp: Check named captures. When no named captures, configuration error is raised
1501
+ https://github.com/fluent/fluentd/pull/2331
1502
+
1503
+ ### Bug fixes
1504
+
1505
+ * out_forward: Make tls_client_private_key_passphrase secret
1506
+ https://github.com/fluent/fluentd/pull/2324
1507
+ * in_syslog: Check message length when read from buffer in octet counting
1508
+ https://github.com/fluent/fluentd/pull/2323
1509
+
1510
+ ## Release v1.4.0 - 2019/02/24
1511
+
1512
+ ### New features
1513
+
1514
+ * multiprocess: Support <worker N-M> syntax
1515
+ https://github.com/fluent/fluentd/pull/2292
1516
+ * output: Work <secondary> and retry_forever together
1517
+ https://github.com/fluent/fluentd/pull/2276
1518
+ * out_file: Support placeholders in symlink_path
1519
+ https://github.com/fluent/fluentd/pull/2254
1520
+
1521
+ ### Enhancements
1522
+
1523
+ * output: Add MessagePack unpacker error to unrecoverable error list
1524
+ https://github.com/fluent/fluentd/pull/2301
1525
+ * output: Reduce flush delay when large timekey and small timekey_wait are specified
1526
+ https://github.com/fluent/fluentd/pull/2291
1527
+ * config: Support embedded ruby code in section argument.
1528
+ https://github.com/fluent/fluentd/pull/2295
1529
+ * in_tail: Improve encoding parameter handling
1530
+ https://github.com/fluent/fluentd/pull/2305
1531
+ * in_tcp/in_udp: Add <parse> section check
1532
+ https://github.com/fluent/fluentd/pull/2267
1533
+
1534
+ ### Bug fixes
1535
+
1536
+ * server: Ignore IOError and related errors in UDP
1537
+ https://github.com/fluent/fluentd/pull/2310
1538
+ * server: Ignore EPIPE in TLS accept to avoid fluentd restart
1539
+ https://github.com/fluent/fluentd/pull/2253
1540
+
1541
+ # v1.3
1542
+
1543
+ ## Release v1.3.3 - 2019/01/06
1544
+
1545
+ ### Enhancements
1546
+
1547
+ * parser_syslog: Use String#squeeze for performance improvement
1548
+ https://github.com/fluent/fluentd/pull/2239
1549
+ * parser_syslog: Support RFC5424 timestamp without subseconds
1550
+ https://github.com/fluent/fluentd/pull/2240
1551
+
1552
+ ### Bug fixes
1553
+
1554
+ * server: Ignore ECONNRESET in TLS accept to avoid fluentd restart
1555
+ https://github.com/fluent/fluentd/pull/2243
1556
+ * log: Fix plugin logger ignores fluentd log event setting
1557
+ https://github.com/fluent/fluentd/pull/2252
1558
+
1559
+ ## Release v1.3.2 - 2018/12/10
1560
+
1561
+ ### Enhancements
1562
+
1563
+ * out_forward: Support mutual TLS
1564
+ https://github.com/fluent/fluentd/pull/2187
1565
+ * out_file: Create `pos_file` directory if it doesn't exist
1566
+ https://github.com/fluent/fluentd/pull/2223
1567
+
1568
+ ### Bug fixes
1569
+
1570
+ * output: Fix logs during retry
1571
+ https://github.com/fluent/fluentd/pull/2203
1572
+
1573
+ ## Release v1.3.1 - 2018/11/27
1574
+
1575
+ ### Enhancements
1576
+
1577
+ * out_forward: Separate parameter names for certificate
1578
+ https://github.com/fluent/fluentd/pull/2181
1579
+ https://github.com/fluent/fluentd/pull/2190
1580
+ * out_forward: Add `verify_connection_at_startup` parameter to check connection setting at startup phase
1581
+ https://github.com/fluent/fluentd/pull/2184
1582
+ * config: Check right slash position in regexp type
1583
+ https://github.com/fluent/fluentd/pull/2176
1584
+ * parser_nginx: Support multiple IPs in `http_x_forwarded_for` field
1585
+ https://github.com/fluent/fluentd/pull/2171
1586
+
1587
+ ### Bug fixes
1588
+
1589
+ * fluent-cat: Fix retry limit handling
1590
+ https://github.com/fluent/fluentd/pull/2193
1591
+ * record_accessor helper: Delete top level field with bracket style
1592
+ https://github.com/fluent/fluentd/pull/2192
1593
+ * filter_record_transformer: Keep `class` methond to avoid undefined method error
1594
+ https://github.com/fluent/fluentd/pull/2186
1595
+
1596
+ ## Release v1.3.0 - 2018/11/10
1597
+
1598
+ ### New features
1599
+
1600
+ * output: Change thread execution control
1601
+ https://github.com/fluent/fluentd/pull/2170
1602
+ * in_syslog: Support octet counting frame
1603
+ https://github.com/fluent/fluentd/pull/2147
1604
+ * Use `flush_thread_count` value for `queued_chunks_limit_size` when `queued_chunks_limit_size` is not specified
1605
+ https://github.com/fluent/fluentd/pull/2173
1606
+
1607
+ ### Enhancements
1608
+
1609
+ * output: Show backtrace for unrecoverable errors
1610
+ https://github.com/fluent/fluentd/pull/2149
1611
+ * in_http: Implement support for CORS preflight requests
1612
+ https://github.com/fluent/fluentd/pull/2144
1613
+
1614
+ ### Bug fixes
1615
+
1616
+ * server: Fix deadlock between on_writable and close in sockets
1617
+ https://github.com/fluent/fluentd/pull/2165
1618
+ * output: show correct error when wrong plugin is specified for secondary
1619
+ https://github.com/fluent/fluentd/pull/2169
1620
+
1621
+ # v1.2
1622
+
1623
+ ## Release v1.2.6 - 2018/10/03
1624
+
1625
+ ### Enhancements
1626
+
1627
+ * output: Add `disable_chunk_backup` for ignore broken chunks.
1628
+ https://github.com/fluent/fluentd/pull/2117
1629
+ * parser_syslog: Improve regexp for RFC5424
1630
+ https://github.com/fluent/fluentd/pull/2141
1631
+ * in_http: Allow specifying the wildcard '*' as the CORS domain
1632
+ https://github.com/fluent/fluentd/pull/2139
1633
+
1634
+ ### Bug fixes
1635
+
1636
+ * in_tail: Prevent thread switching in the interval between seek and read/write operations to pos_file
1637
+ https://github.com/fluent/fluentd/pull/2118
1638
+ * parser: Handle LoadError properly for oj
1639
+ https://github.com/fluent/fluentd/pull/2140
1640
+
1641
+ ## Release v1.2.5 - 2018/08/22
1642
+
1643
+ ### Bug fixes
1644
+
1645
+ * in_tail: Fix resource leak by file rotation
1646
+ https://github.com/fluent/fluentd/pull/2105
1647
+ * fix typos
1648
+
1649
+ ## Release v1.2.4 - 2018/08/01
1650
+
1651
+ ### Bug fixes
1652
+
1653
+ * output: Consider timezone when calculate timekey
1654
+ https://github.com/fluent/fluentd/pull/2054
1655
+ * output: Fix bug in suppress_emit_error_log_interval
1656
+ https://github.com/fluent/fluentd/pull/2069
1657
+ * server-helper: Fix connection leak by close timing issue.
1658
+ https://github.com/fluent/fluentd/pull/2087
1659
+
1660
+ ## Release v1.2.3 - 2018/07/10
1661
+
1662
+ ### Enhancements
1663
+
1664
+ * in_http: Consider `<parse>` parameters in batch mode
1665
+ https://github.com/fluent/fluentd/pull/2055
1666
+ * in_http: Support gzip payload
1667
+ https://github.com/fluent/fluentd/pull/2060
1668
+ * output: Improve compress performance
1669
+ https://github.com/fluent/fluentd/pull/2031
1670
+ * in_monitor_agent: Add missing descriptions for configurable options
1671
+ https://github.com/fluent/fluentd/pull/2037
1672
+ * parser_syslog: update regex of pid field for conformance to RFC5424 spec
1673
+ https://github.com/fluent/fluentd/pull/2051
1674
+
1675
+ ### Bug fixes
1676
+
1677
+ * in_tail: Fix to rescue Errno::ENOENT for File.mtime()
1678
+ https://github.com/fluent/fluentd/pull/2063
1679
+ * fluent-plugin-generate: Fix Parser plugin template
1680
+ https://github.com/fluent/fluentd/pull/2026
1681
+ * fluent-plugin-config-format: Fix NoMethodError for some plugins
1682
+ https://github.com/fluent/fluentd/pull/2023
1683
+ * config: Don't warn message for reserved parameters in DSL
1684
+ https://github.com/fluent/fluentd/pull/2034
1685
+
1686
+ ## Release v1.2.2 - 2018/06/12
1687
+
1688
+ ### Enhancements
1689
+
1690
+ * filter_parser: Add remove_key_name_field parameter
1691
+ https://github.com/fluent/fluentd/pull/2012
1692
+ * fluent-plugin-config-format: Dump config_argument
1693
+ https://github.com/fluent/fluentd/pull/2003
1694
+
1695
+ ### Bug fixes
1696
+
1697
+ * in_tail: Change pos file entry handling to avoid read conflict for other plugins
1698
+ https://github.com/fluent/fluentd/pull/1963
1699
+ * buffer: Wait for all chunks being purged before deleting @queued_num items
1700
+ https://github.com/fluent/fluentd/pull/2016
1701
+
1702
+ ## Release v1.2.1 - 2018/05/23
1703
+
1704
+ ### Enhancements
1705
+
1706
+ * Counter: Add wait API to client
1707
+ https://github.com/fluent/fluentd/pull/1997
1708
+
1709
+ ### Bug fixes
1710
+
1711
+ * in_tcp/in_udp: Fix source_hostname_key to set hostname correctly
1712
+ https://github.com/fluent/fluentd/pull/1976
1713
+ * in_monitor_agent: Fix buffer_total_queued_size calculation
1714
+ https://github.com/fluent/fluentd/pull/1990
1715
+ * out_file: Temporal fix for broken gzipped files with gzip and append
1716
+ https://github.com/fluent/fluentd/pull/1995
1717
+ * test: Fix unstable backup test
1718
+ https://github.com/fluent/fluentd/pull/1979
1719
+ * gemspec: Remove deprecated has_rdoc
1720
+
1721
+ ## Release v1.2.0 - 2018/04/30
1722
+
1723
+ ### New Features
1724
+
1725
+ * New Counter API
1726
+ https://github.com/fluent/fluentd/pull/1857
1727
+ * output: Backup for broken chunks
1728
+ https://github.com/fluent/fluentd/pull/1952
1729
+ * filter_grep: Support for `<and>` and `<or>` sections
1730
+ https://github.com/fluent/fluentd/pull/1897
1731
+ * config: Support `regexp` type in configuration parameter
1732
+ https://github.com/fluent/fluentd/pull/1927
1733
+
1734
+ ### Enhancements
1735
+
1736
+ * parser_nginx: Support optional `http-x-forwarded-for` field
1737
+ https://github.com/fluent/fluentd/pull/1932
1738
+ * filter_grep: Improve the performance
1739
+ https://github.com/fluent/fluentd/pull/1940
1740
+
1741
+ ### Bug fixes
1742
+
1743
+ * log: Fix unexpected implementation bug when log rotation setting is applied
1744
+ https://github.com/fluent/fluentd/pull/1957
1745
+ * server helper: Close invalid socket when ssl error happens on reading
1746
+ https://github.com/fluent/fluentd/pull/1942
1747
+ * output: Buffer chunk's unique id should be formatted as hex in the log
1748
+
1749
+ # v1.1
1750
+
1751
+ ## Release v1.1.3 - 2018/04/03
1752
+
1753
+ ### Enhancements
1754
+
1755
+ * output: Support negative index for tag placeholders
1756
+ https://github.com/fluent/fluentd/pull/1908
1757
+ * buffer: Add queued_chunks_limit_size to control the number of queued chunks
1758
+ https://github.com/fluent/fluentd/pull/1916
1759
+ * time: Make Fluent::EventTime human readable for inspect
1760
+ https://github.com/fluent/fluentd/pull/1915
1761
+
1762
+ ### Bug fixes
1763
+
1764
+ * output: Delete empty queued_num field after purging chunks
1765
+ https://github.com/fluent/fluentd/pull/1919
1766
+ * fluent-debug: Fix usage message of fluent-debug command
1767
+ https://github.com/fluent/fluentd/pull/1920
1768
+ * out_forward: The node should be disabled when TLS socket for ack returns an error
1769
+ https://github.com/fluent/fluentd/pull/1925
1770
+
1771
+ ## Release v1.1.2 - 2018/03/18
1772
+
1773
+ ### Enhancements
1774
+
1775
+ * filter_grep: Support pattern starts with character classes with //
1776
+ https://github.com/fluent/fluentd/pull/1887
1777
+
1778
+ ### Bug fixes
1779
+
1780
+ * in_tail: Handle records in the correct order on file rotation
1781
+ https://github.com/fluent/fluentd/pull/1880
1782
+ * out_forward: Fix race condition with `<security>` on multi thread environment
1783
+ https://github.com/fluent/fluentd/pull/1893
1784
+ * output: Prevent flushing threads consume too much CPU when retry happens
1785
+ https://github.com/fluent/fluentd/pull/1901
1786
+ * config: Fix boolean param handling for comment without value
1787
+ https://github.com/fluent/fluentd/pull/1883
1788
+ * test: Fix random test failures in test/plugin/test_out_forward.rb
1789
+ https://github.com/fluent/fluentd/pull/1881
1790
+ https://github.com/fluent/fluentd/pull/1890
1791
+ * command: Fix typo in binlog_reader
1792
+ https://github.com/fluent/fluentd/pull/1898
1793
+
1794
+ ## Release v1.1.1 - 2018/03/05
1795
+
1796
+ ### Enhancements
1797
+
1798
+ * in_debug_agent: Support multi worker environment
1799
+ https://github.com/fluent/fluentd/pull/1869
1800
+ * in_forward: Improve SSL setup to support mutual TLS
1801
+ https://github.com/fluent/fluentd/pull/1861
1802
+ * buf_file: Skip and delete broken file chunks to avoid unsuccessful retry in resume
1803
+ https://github.com/fluent/fluentd/pull/1874
1804
+ * command: Show fluentd version for debug purpose
1805
+ https://github.com/fluent/fluentd/pull/1839
1806
+
1807
+ ### Bug fixes
1808
+
1809
+ * in_forward: Do not close connection until write is complete on failed auth PONG
1810
+ https://github.com/fluent/fluentd/pull/1835
1811
+ * in_tail: Fix IO event race condition during shutdown
1812
+ https://github.com/fluent/fluentd/pull/1876
1813
+ * in_http: Emit event time instead of raw time value in batch
1814
+ https://github.com/fluent/fluentd/pull/1850
1815
+ * parser_json: Add EncodingError to rescue list for oj 3.x.
1816
+ https://github.com/fluent/fluentd/pull/1875
1817
+ * config: Fix config_param for string type with frozen string
1818
+ https://github.com/fluent/fluentd/pull/1838
1819
+ * timer: Fix a bug to leak non-repeating timer watchers
1820
+ https://github.com/fluent/fluentd/pull/1864
1821
+
1822
+ ## Release v1.1.0 - 2018/01/17
1823
+
1824
+ ### New features / Enhancements
1825
+
1826
+ * config: Add hostname and worker_id short-cut
1827
+ https://github.com/fluent/fluentd/pull/1814
1828
+ * parser_ltsv: Add delimiter_pattern parameter
1829
+ https://github.com/fluent/fluentd/pull/1802
1830
+ * record_accessor helper: Support nested field deletion
1831
+ https://github.com/fluent/fluentd/pull/1800
1832
+ * record_accessor helper: Expose internal instance `@keys` variable
1833
+ https://github.com/fluent/fluentd/pull/1808
1834
+ * log: Improve Log#on_xxx API performance
1835
+ https://github.com/fluent/fluentd/pull/1809
1836
+ * time: Improve time formatting performance
1837
+ https://github.com/fluent/fluentd/pull/1796
1838
+ * command: Port certificates generating command from secure-forward
1839
+ https://github.com/fluent/fluentd/pull/1818
1840
+
1841
+ ### Bug fixes
1842
+
1843
+ * server helper: Fix TCP + TLS degradation
1844
+ https://github.com/fluent/fluentd/pull/1805
1845
+ * time: Fix the method for TimeFormatter#call
1846
+ https://github.com/fluent/fluentd/pull/1813
1847
+
1848
+ # v1.0
1849
+
1850
+ ## Release v1.0.2 - 2017/12/17
1851
+
1852
+ ### New features / Enhancements
1853
+
1854
+ * Use dig_rb instead of ruby_dig to support dig method in more objects
1855
+ https://github.com/fluent/fluentd/pull/1794
1856
+
1857
+ ## Release v1.0.1 - 2017/12/14
1858
+
1859
+ ### New features / Enhancements
1860
+
1861
+ * in_udp: Add receive_buffer_size parameter
1862
+ https://github.com/fluent/fluentd/pull/1788
1863
+ * in_tail: Add enable_stat_watcher option to disable inotify events
1864
+ https://github.com/fluent/fluentd/pull/1775
1865
+ * Relax strptime gem version
1866
+
1867
+ ### Bug fixes
1868
+
1869
+ * in_tail: Properly handle moved back and truncated case
1870
+ https://github.com/fluent/fluentd/pull/1793
1871
+ * out_forward: Rebuild weight array to apply server setting properly
1872
+ https://github.com/fluent/fluentd/pull/1784
1873
+ * fluent-plugin-config-formatter: Use v1.0 for URL
1874
+ https://github.com/fluent/fluentd/pull/1781
1875
+
1876
+ ## Release v1.0.0 - 2017/12/6
1877
+
1878
+ See [CNCF announcement](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
1879
+
1880
+ ### New features / Enhancements
1881
+
1882
+ * out_copy: Support ignore_error argument in `<store>`
1883
+ https://github.com/fluent/fluentd/pull/1764
1884
+ * server helper: Improve resource usage of TLS transport
1885
+ https://github.com/fluent/fluentd/pull/1764
1886
+ * Disable tracepoint feature to omit unnecessary insts
1887
+ https://github.com/fluent/fluentd/pull/1764
1888
+
1889
+ ### Bug fixes
1890
+
1891
+ * out_forward: Don't update retry state when failed to get ack response.
1892
+ https://github.com/fluent/fluentd/pull/1686
1893
+ * plugin: Combine before_shutdown and shutdown call in one sequence.
1894
+ https://github.com/fluent/fluentd/pull/1763
1895
+ * Add description to parsers
1896
+ https://github.com/fluent/fluentd/pull/1776
1897
+ https://github.com/fluent/fluentd/pull/1777
1898
+ https://github.com/fluent/fluentd/pull/1778
1899
+ https://github.com/fluent/fluentd/pull/1779
1900
+ https://github.com/fluent/fluentd/pull/1780
1901
+ * filter_parser: Add parameter description
1902
+ https://github.com/fluent/fluentd/pull/1773
1903
+ * plugin: Combine before_shutdown and shutdown call in one sequence.
1904
+ https://github.com/fluent/fluentd/pull/1763
1905
+
1906
+ # v0.14
1907
+
1908
+ ## Release v0.14.25 - 2017/11/29
1909
+
1910
+ ### New features / Enhancements
1911
+
1912
+ * Disable tracepoint feature to omit unnecessary insts
1913
+ https://github.com/fluent/fluentd/pull/1764
1914
+
1915
+ ### Bug fixes
1916
+
1917
+ * out_forward: Don't update retry state when failed to get ack response.
1918
+ https://github.com/fluent/fluentd/pull/1686
1919
+ * plugin: Combine before_shutdown and shutdown call in one sequence.
1920
+ https://github.com/fluent/fluentd/pull/1763
1921
+
1922
+ ## Release v0.14.24 - 2017/11/24
1923
+
1924
+ ### New features / Enhancements
1925
+
1926
+ * plugin-config-formatter: Add link to plugin helper result
1927
+ https://github.com/fluent/fluentd/pull/1753
1928
+ * server helper: Refactor code
1929
+ https://github.com/fluent/fluentd/pull/1759
1930
+
1931
+ ### Bug fixes
1932
+
1933
+ * supervisor: Don't call change_privilege twice
1934
+ https://github.com/fluent/fluentd/pull/1757
1935
+
1936
+ ## Release v0.14.23 - 2017/11/15
1937
+
1938
+ ### New features / Enhancements
1939
+
1940
+ * in_udp: Add remove_newline parameter
1941
+ https://github.com/fluent/fluentd/pull/1747
1942
+
1943
+ ### Bug fixes
1944
+
1945
+ * buffer: Lock buffers in order of metadata
1946
+ https://github.com/fluent/fluentd/pull/1722
1947
+ * in_tcp: Fix log corruption under load.
1948
+ https://github.com/fluent/fluentd/pull/1729
1949
+ * out_forward: Fix elapsed time miscalculation in tcp heartbeat
1950
+ https://github.com/fluent/fluentd/pull/1738
1951
+ * supervisor: Fix worker pid handling during worker restart
1952
+ https://github.com/fluent/fluentd/pull/1739
1953
+ * in_tail: Skip setup failed watcher to avoid resource leak and log bloat
1954
+ https://github.com/fluent/fluentd/pull/1742
1955
+ * agent: Add error location to emit error logs
1956
+ https://github.com/fluent/fluentd/pull/1746
1957
+ * command: Consider hyphen and underscore in fluent-plugin-generate arguments
1958
+ https://github.com/fluent/fluentd/pull/1751
1959
+
1960
+ ## Release v0.14.22 - 2017/11/01
1961
+
1962
+ ### New features / Enhancements
1963
+
1964
+ * formatter_tsv: Add add_newline parameter
1965
+ https://github.com/fluent/fluentd/pull/1691
1966
+ * out_file/out_secondary_file: Support ${chunk_id} placeholder. This includes extrace_placeholders API change
1967
+ https://github.com/fluent/fluentd/pull/1708
1968
+ * record_accessor: Support double quotes in bracket notation
1969
+ https://github.com/fluent/fluentd/pull/1716
1970
+ * log: Show running ruby version in startup log
1971
+ https://github.com/fluent/fluentd/pull/1717
1972
+ * log: Log message when chunk is created
1973
+ https://github.com/fluent/fluentd/pull/1718
1974
+ * in_tail: Add pos_file duplication check
1975
+ https://github.com/fluent/fluentd/pull/1720
1976
+
1977
+ ### Bug fixes
1978
+
1979
+ * parser_apache2: Delay time parser initialization
1980
+ https://github.com/fluent/fluentd/pull/1690
1981
+ * cert_option: Improve generated certificates' conformance to X.509 specification
1982
+ https://github.com/fluent/fluentd/pull/1714
1983
+ * buffer: Always lock chunks first to avoid deadlock
1984
+ https://github.com/fluent/fluentd/pull/1721
1985
+
1986
+ ## Release v0.14.21 - 2017/09/07
1987
+
1988
+ ### New features / Enhancements
1989
+
1990
+ * filter_parser: Support record_accessor in key_name
1991
+ https://github.com/fluent/fluentd/pull/1654
1992
+ * buffer: Support record_accessor in chunk keys
1993
+ https://github.com/fluent/fluentd/pull/1662
1994
+
1995
+ ### Bug fixes
1996
+
1997
+ * compat_parameters: Support all syslog parser parameters
1998
+ https://github.com/fluent/fluentd/pull/1650
1999
+ * filter_record_transformer: Don't create new keys if the original record doesn't have `keep_keys` keys
2000
+ https://github.com/fluent/fluentd/pull/1663
2001
+ * in_tail: Fix the error when 'tag *' is configured
2002
+ https://github.com/fluent/fluentd/pull/1664
2003
+ * supervisor: Clear previous worker pids when receive kill signals.
2004
+ https://github.com/fluent/fluentd/pull/1683
2005
+
2006
+ ## Release v0.14.20 - 2017/07/31
2007
+
2008
+ ### New features / Enhancements
2009
+
2010
+ * plugin: Add record_accessor plugin helper
2011
+ https://github.com/fluent/fluentd/pull/1637
2012
+ * log: Add format and time_format parameters to `<system>` setting
2013
+ https://github.com/fluent/fluentd/pull/1644
2014
+
2015
+ ### Bug fixes
2016
+
2017
+ * buf_file: Improve file handling to mitigate broken meta file
2018
+ https://github.com/fluent/fluentd/pull/1628
2019
+ * in_syslog: Fix the description of resolve_hostname parameter
2020
+ https://github.com/fluent/fluentd/pull/1633
2021
+ * process: Fix signal handling. Send signal to all workers
2022
+ https://github.com/fluent/fluentd/pull/1642
2023
+ * output: Fix error message typo
2024
+ https://github.com/fluent/fluentd/pull/1643
2025
+
2026
+ ## Release v0.14.19 - 2017/07/12
2027
+
2028
+ ### New features / Enhancements
2029
+
2030
+ * in_syslog: More characters are available in tag part of syslog format
2031
+ https://github.com/fluent/fluentd/pull/1610
2032
+ * in_syslog: Add resolve_hostname parameter
2033
+ https://github.com/fluent/fluentd/pull/1616
2034
+ * filter_grep: Support new configuration format by config_section
2035
+ https://github.com/fluent/fluentd/pull/1611
2036
+
2037
+ ### Bug fixes
2038
+
2039
+ * output: Fix race condition of retry state in flush thread
2040
+ https://github.com/fluent/fluentd/pull/1623
2041
+ * test: Fix typo in test_in_tail.rb
2042
+ https://github.com/fluent/fluentd/pull/1622
2043
+
2044
+ ## Release v0.14.18 - 2017/06/21
2045
+
2046
+ ### New features / Enhancements
2047
+
2048
+ * parser: Add rfc5424 regex without priority
2049
+ https://github.com/fluent/fluentd/pull/1600
2050
+
2051
+ ### Bug fixes
2052
+
2053
+ * in_tail: Fix timing issue that the excluded_path doesn't apply.
2054
+ https://github.com/fluent/fluentd/pull/1597
2055
+ * config: Fix broken UTF-8 encoded configuration file handling
2056
+ https://github.com/fluent/fluentd/pull/1592
2057
+ * out_forward: Don't stop heartbeat when error happen
2058
+ https://github.com/fluent/fluentd/pull/1602
2059
+ * Fix command name typo in plugin template
2060
+ https://github.com/fluent/fluentd/pull/1603
2061
+
2062
+ ## Release v0.14.17 - 2017/05/29
2063
+
2064
+ ### New features / Enhancements
2065
+
2066
+ * in_tail: Add ignore_repeated_permission_error
2067
+ https://github.com/fluent/fluentd/pull/1574
2068
+ * server: Accept private key for TLS server without passphrase
2069
+ https://github.com/fluent/fluentd/pull/1575
2070
+ * config: Validate workers option on standalone mode
2071
+ https://github.com/fluent/fluentd/pull/1577
2072
+
2073
+ ### Bug fixes
2074
+
2075
+ * config: Mask all secret parameters in worker section
2076
+ https://github.com/fluent/fluentd/pull/1580
2077
+ * out_forward: Fix ack handling
2078
+ https://github.com/fluent/fluentd/pull/1581
2079
+ * plugin-config-format: Fix markdown format generator
2080
+ https://github.com/fluent/fluentd/pull/1585
2081
+
2082
+ ## Release v0.14.16 - 2017/05/13
2083
+
2084
+ ### New features / Enhancements
2085
+
2086
+ * config: Allow null byte in double-quoted string
2087
+ https://github.com/fluent/fluentd/pull/1552
2088
+ * parser: Support %iso8601 special case for time_format
2089
+ https://github.com/fluent/fluentd/pull/1562
2090
+
2091
+ ### Bug fixes
2092
+
2093
+ * out_forward: Call proper method for each connection type
2094
+ https://github.com/fluent/fluentd/pull/1560
2095
+ * in_monitor_agent: check variable buffer is a Buffer instance
2096
+ https://github.com/fluent/fluentd/pull/1556
2097
+ * log: Add missing '<<' method to delegators
2098
+ https://github.com/fluent/fluentd/pull/1558
2099
+ * command: uninitialized constant Fluent::Engine in fluent-binlog-reader
2100
+ https://github.com/fluent/fluentd/pull/1568
2101
+
2102
+ ## Release v0.14.15 - 2017/04/23
2103
+
2104
+ ### New features / Enhancements
2105
+
2106
+ * Add `<worker N>` directive
2107
+ https://github.com/fluent/fluentd/pull/1507
2108
+ * in_tail: Do not warn that directories are unreadable in the in_tail plugin
2109
+ https://github.com/fluent/fluentd/pull/1540
2110
+ * output: Add formatted_to_msgpack_binary? to Output plugin API
2111
+ https://github.com/fluent/fluentd/pull/1547
2112
+ * windows: Allow the Windows Service name Fluentd runs as to be configurable
2113
+ https://github.com/fluent/fluentd/pull/1548
2114
+
2115
+ ### Bug fixes
2116
+
2117
+ * in_http: Fix X-Forwarded-For header handling. Accpet multiple headers
2118
+ https://github.com/fluent/fluentd/pull/1535
2119
+ * Fix backward compatibility with Fluent::DetachProcess and Fluent::DetachMultiProcess
2120
+ https://github.com/fluent/fluentd/pull/1522
2121
+ * fix typo
2122
+ https://github.com/fluent/fluentd/pull/1521
2123
+ https://github.com/fluent/fluentd/pull/1523
2124
+ https://github.com/fluent/fluentd/pull/1544
2125
+ * test: Fix out_file test with timezone
2126
+ https://github.com/fluent/fluentd/pull/1546
2127
+ * windows: Quote the file path to the Ruby bin directory when starting fluentd as a windows service
2128
+ https://github.com/fluent/fluentd/pull/1536
2129
+
2130
+ ## Release v0.14.14 - 2017/03/23
2131
+
2132
+ ### New features / Enhancements
2133
+
2134
+ * in_http: Support 'application/msgpack` header
2135
+ https://github.com/fluent/fluentd/pull/1498
2136
+ * in_udp: Add message_length_limit parameter for parameter name consistency with in_syslog
2137
+ https://github.com/fluent/fluentd/pull/1515
2138
+ * in_monitor_agent: Start one HTTP server per worker on sequential port numbers
2139
+ https://github.com/fluent/fluentd/pull/1493
2140
+ * in_tail: Skip the refresh of watching list on startup
2141
+ https://github.com/fluent/fluentd/pull/1487
2142
+ * filter_parser: filter_parser: Add emit_invalid_record_to_error parameter
2143
+ https://github.com/fluent/fluentd/pull/1494
2144
+ * parser_syslog: Support RFC5424 syslog format
2145
+ https://github.com/fluent/fluentd/pull/1492
2146
+ * parser: Allow escape sequence in Apache access log
2147
+ https://github.com/fluent/fluentd/pull/1479
2148
+ * config: Add actual value in the placeholder error message
2149
+ https://github.com/fluent/fluentd/pull/1497
2150
+ * log: Add Fluent::Log#<< to support some SDKs
2151
+ https://github.com/fluent/fluentd/pull/1478
2152
+
2153
+ ### Bug fixes
2154
+
2155
+ * Fix cleanup resource
2156
+ https://github.com/fluent/fluentd/pull/1483
2157
+ * config: Set encoding forcefully to avoid UndefinedConversionError
2158
+ https://github.com/fluent/fluentd/pull/1477
2159
+ * Fix Input and Output deadlock when buffer is full during startup
2160
+ https://github.com/fluent/fluentd/pull/1502
2161
+ * config: Fix log_level handling in `<system>`
2162
+ https://github.com/fluent/fluentd/pull/1501
2163
+ * Fix typo in root agent error log
2164
+ https://github.com/fluent/fluentd/pull/1491
2165
+ * storage: Fix a bug storage_create cannot accept hash as `conf` keyword argument
2166
+ https://github.com/fluent/fluentd/pull/1482
2167
+
2168
+ ## Release v0.14.13 - 2017/02/17
2169
+
2170
+ ### New features / Enhancements
2171
+
2172
+ * in_tail: Add 'limit_recently_modified' to limit watch files.
2173
+ https://github.com/fluent/fluentd/pull/1474
2174
+ * configuration: Improve 'flush_interval' handling for better message and backward compatibility
2175
+ https://github.com/fluent/fluentd/pull/1442
2176
+ * command: Add 'fluent-plugin-generate' command
2177
+ https://github.com/fluent/fluentd/pull/1427
2178
+ * output: Skip record when 'Output#format' returns nil
2179
+ https://github.com/fluent/fluentd/pull/1469
2180
+
2181
+ ### Bug fixes
2182
+
2183
+ * output: Secondary calculation should consider 'retry_max_times'
2184
+ https://github.com/fluent/fluentd/pull/1452
2185
+ * Fix regression of deprecated 'process' module
2186
+ https://github.com/fluent/fluentd/pull/1443
2187
+ * Fix missing parser_regex require
2188
+ https://github.com/fluent/fluentd/issues/1458
2189
+ https://github.com/fluent/fluentd/pull/1453
2190
+ * Keep 'Fluent::BufferQueueLimitError' for existing plugins
2191
+ https://github.com/fluent/fluentd/pull/1456
2192
+ * in_tail: Untracked files should be removed from watching list to avoid memory bloat
2193
+ https://github.com/fluent/fluentd/pull/1467
2194
+ * in_tail: directories should be skipped when the ** pattern is used
2195
+ https://github.com/fluent/fluentd/pull/1464
2196
+ * record_transformer: Revert "Use BasicObject for cleanroom" for `enable_ruby` regression.
2197
+ https://github.com/fluent/fluentd/pull/1461
2198
+ * buf_file: handle "Too many open files" error to keep buffer and metadata pair
2199
+ https://github.com/fluent/fluentd/pull/1468
2200
+
2201
+ ## Release v0.14.12 - 2017/01/30
2202
+
2203
+ ### New features / Enhancements
2204
+ * Support multi process workers by `workers` option
2205
+ https://github.com/fluent/fluentd/pull/1386
2206
+ * Support TLS transport security layer by server plugin helper, and forward input/output plugins
2207
+ https://github.com/fluent/fluentd/pull/1423
2208
+ * Update internal log event handling to route log events to `@FLUENT_LOG` label if configured, suppress log events in startup/shutdown in default
2209
+ https://github.com/fluent/fluentd/pull/1405
2210
+ * Rename buffer plugin chunk limit parameters for consistency
2211
+ https://github.com/fluent/fluentd/pull/1412
2212
+ * Encode string values from configuration files in UTF8
2213
+ https://github.com/fluent/fluentd/pull/1411
2214
+ * Reorder plugin load paths to load rubygem plugins earlier than built-in plugins to overwrite them
2215
+ https://github.com/fluent/fluentd/pull/1410
2216
+ * Clock API to control internal thread control
2217
+ https://github.com/fluent/fluentd/pull/1425
2218
+ * Validate `config_param` options to restrict unexpected specifications
2219
+ https://github.com/fluent/fluentd/pull/1437
2220
+ * formatter: Add `add_newline` option to get formatted lines without newlines
2221
+ https://github.com/fluent/fluentd/pull/1420
2222
+ * in_forward: Add `ignore_network_errors_at_startup` option for automated cluster deployment
2223
+ https://github.com/fluent/fluentd/pull/1399
2224
+ * in_forward: Close listening socket in #stop, not to accept new connection request in early stage of shutdown
2225
+ https://github.com/fluent/fluentd/pull/1401
2226
+ * out_forward: Ensure to pack values in `str` type of msgpack
2227
+ https://github.com/fluent/fluentd/pull/1413
2228
+ * in_tail: Add `emit_unmatched_lines` to capture lines which unmatch configured regular expressions
2229
+ https://github.com/fluent/fluentd/pull/1421
2230
+ * in_tail: Add `open_on_every_update` to read lines from files opened in exclusive mode on Windows platform
2231
+ https://github.com/fluent/fluentd/pull/1409
2232
+ * in_monitor_agent: Add `with_ivars` query parameter to get instance variables only for specified instance variables
2233
+ https://github.com/fluent/fluentd/pull/1393
2234
+ * storage_local: Generate file store path using `usage`, with `root_dir` configuration
2235
+ https://github.com/fluent/fluentd/pull/1438
2236
+ * Improve test stability
2237
+ https://github.com/fluent/fluentd/pull/1426
2238
+
2239
+ ### Bug fixes
2240
+ * Fix bug to ignore command line options: `--rpc-endpoint`, `--suppress-config-dump`, etc
2241
+ https://github.com/fluent/fluentd/pull/1398
2242
+ * Fix bug to block infinitely in shutdown when buffer is full and `overflow_action` is `block`
2243
+ https://github.com/fluent/fluentd/pull/1396
2244
+ * buf_file: Fix bug not to use `root_dir` even if configured correctly
2245
+ https://github.com/fluent/fluentd/pull/1417
2246
+ * filter_record_transformer: Fix to use BasicObject for clean room
2247
+ https://github.com/fluent/fluentd/pull/1415
2248
+ * filter_record_transformer: Fix bug that `remove_keys` doesn't work with `renew_time_key`
2249
+ https://github.com/fluent/fluentd/pull/1433
2250
+ * in_monitor_agent: Fix bug to crash with NoMethodError for some output plugins
2251
+ https://github.com/fluent/fluentd/pull/1365
2252
+
2253
+ ## Release v0.14.11 - 2016/12/26
2254
+
2255
+ ### New features / Enhancements
2256
+ * Add "root_dir" parameter in `<system>` directive to configure server root directory, used for buffer/storage paths
2257
+ https://github.com/fluent/fluentd/pull/1374
2258
+ * Fix not to restart Fluentd processes when unrecoverable errors occur
2259
+ https://github.com/fluent/fluentd/pull/1359
2260
+ * Show warnings in log when output flush operation takes longer time than threshold
2261
+ https://github.com/fluent/fluentd/pull/1370
2262
+ * formatter_csv: Raise configuration error when no field names are specified
2263
+ https://github.com/fluent/fluentd/pull/1369
2264
+ * in_syslog: Update implementation to use plugin helpers
2265
+ https://github.com/fluent/fluentd/pull/1382
2266
+ * in_forward: Add a configuration parameter "source_address_key"
2267
+ https://github.com/fluent/fluentd/pull/1382
2268
+ * in_monitor_agent: Add a parameter "include_retry" to get detail retry status
2269
+ https://github.com/fluent/fluentd/pull/1387
2270
+ * Add Ruby 2.4 into supported ruby versions
2271
+
2272
+ ### Bug fixes
2273
+ * Fix to set process name of supervisor process
2274
+ https://github.com/fluent/fluentd/pull/1380
2275
+ * in_forward: Fix a bug not to handle "require_ack_response" correctly
2276
+ https://github.com/fluent/fluentd/pull/1389
2277
+
2278
+
2279
+ ## Release v0.14.10 - 2016/12/14
2280
+
2281
+ ### New features / Enhancement
2282
+
2283
+ * Add socket/server plugin helper to write TCP/UDP clients/servers as Fluentd plugin
2284
+ https://github.com/fluent/fluentd/pull/1312
2285
+ https://github.com/fluent/fluentd/pull/1350
2286
+ https://github.com/fluent/fluentd/pull/1356
2287
+ https://github.com/fluent/fluentd/pull/1362
2288
+ * Fix to raise errors when injected hostname is also specified as chunk key
2289
+ https://github.com/fluent/fluentd/pull/1357
2290
+ * in_tail: Optimize to read lines from file
2291
+ https://github.com/fluent/fluentd/pull/1325
2292
+ * in_monitor_agent: Add new parameter "include_config"(default: true)
2293
+ https://github.com/fluent/fluentd/pull/1317
2294
+ * in_syslog: Add "priority_key" and "facility_key" options
2295
+ https://github.com/fluent/fluentd/pull/1351
2296
+ * filter_record_transformer: Remove obsoleted syntax like "${message}" and not to dump records in logs
2297
+ https://github.com/fluent/fluentd/pull/1328
2298
+ * Add an option "--time-as-integer" to fluent-cat command to send events from v0.14 fluent-cat to v0.12 fluentd
2299
+ https://github.com/fluent/fluentd/pull/1349
2300
+
2301
+ ### Bug fixes
2302
+
2303
+ * Specify correct Oj options for newer versions (Oj 2.18.0 or later)
2304
+ https://github.com/fluent/fluentd/pull/1331
2305
+ * TimeSlice output plugins (in v0.12 style) raise errors when "utc" parameter is specified
2306
+ https://github.com/fluent/fluentd/pull/1319
2307
+ * Parser plugins cannot use options for regular expressions
2308
+ https://github.com/fluent/fluentd/pull/1326
2309
+ * Fix bugs not to raise errors to use logger in v0.12 plugins
2310
+ https://github.com/fluent/fluentd/pull/1344
2311
+ https://github.com/fluent/fluentd/pull/1332
2312
+ * Fix bug about shutting down Fluentd in Windows
2313
+ https://github.com/fluent/fluentd/pull/1367
2314
+ * in_tail: Close files explicitly in tests
2315
+ https://github.com/fluent/fluentd/pull/1327
2316
+ * out_forward: Fix bug not to convert buffer configurations into v0.14 parameters
2317
+ https://github.com/fluent/fluentd/pull/1337
2318
+ * out_forward: Fix bug to raise error when "expire_dns_cache" is specified
2319
+ https://github.com/fluent/fluentd/pull/1346
2320
+ * out_file: Fix bug to raise error about buffer chunking when it's configured as secondary
2321
+ https://github.com/fluent/fluentd/pull/1338
2322
+
2323
+ ## Release v0.14.9 - 2016/11/15
2324
+
2325
+ ### New features / Enhancement
2326
+
2327
+ * filter_parser: Port fluent-plugin-parser into built-in plugin
2328
+ https://github.com/fluent/fluentd/pull/1191
2329
+ * parser/formatter plugin helpers with default @type in plugin side
2330
+ https://github.com/fluent/fluentd/pull/1267
2331
+ * parser: Reconstruct Parser related classes
2332
+ https://github.com/fluent/fluentd/pull/1286
2333
+ * filter_record_transformer: Remove old behaviours
2334
+ https://github.com/fluent/fluentd/pull/1311
2335
+ * Migrate some built-in plugins into v0.14 API
2336
+ https://github.com/fluent/fluentd/pull/1257 (out_file)
2337
+ https://github.com/fluent/fluentd/pull/1297 (out_exec, out_exec_filter)
2338
+ https://github.com/fluent/fluentd/pull/1306 (in_forward, out_forward)
2339
+ https://github.com/fluent/fluentd/pull/1308 (in_http)
2340
+ * test: Improve test drivers
2341
+ https://github.com/fluent/fluentd/pull/1302
2342
+ https://github.com/fluent/fluentd/pull/1305
2343
+
2344
+ ### Bug fixes
2345
+
2346
+ * log: Avoid name conflict between Fluent::Logger
2347
+ https://github.com/fluent/fluentd/pull/1274
2348
+ * fluent-cat: Fix fluent-cat command to send sub-second precision time
2349
+ https://github.com/fluent/fluentd/pull/1277
2350
+ * config: Fix a bug not to overwrite default value with nil
2351
+ https://github.com/fluent/fluentd/pull/1296
2352
+ * output: Fix timezone for compat timesliced output plugins
2353
+ https://github.com/fluent/fluentd/pull/1307
2354
+ * out_forward: fix not to raise error when out_forward is initialized as secondary
2355
+ https://github.com/fluent/fluentd/pull/1313
2356
+ * output: Event router for secondary output
2357
+ https://github.com/fluent/fluentd/pull/1283
2358
+ * test: fix to return the block value as expected by many rubyists
2359
+ https://github.com/fluent/fluentd/pull/1284
2360
+
2361
+ ## Release v0.14.8 - 2016/10/13
2362
+
2363
+ ### Bug fixes
2364
+
2365
+ * Add msgpack_each to buffer chunks in compat-layer output plugins
2366
+ https://github.com/fluent/fluentd/pull/1273
2367
+
2368
+ ## Release v0.14.7 - 2016/10/07
2369
+
2370
+ ### New features / Enhancement
2371
+
2372
+ * Support data compression in buffer plugins
2373
+ https://github.com/fluent/fluentd/pull/1172
2374
+ * in_forward: support to transfer compressed data
2375
+ https://github.com/fluent/fluentd/pull/1179
2376
+ * out_stdout: fix to show nanosecond resolution time
2377
+ https://github.com/fluent/fluentd/pull/1249
2378
+ * Add option to rotate Fluentd daemon's log
2379
+ https://github.com/fluent/fluentd/pull/1235
2380
+ * Add extract plugin helper, with symmetric time parameter support in parser/formatter and inject/extract
2381
+ https://github.com/fluent/fluentd/pull/1207
2382
+ * Add a feature to parse/format numeric time (unix time [+ subsecond value])
2383
+ https://github.com/fluent/fluentd/pull/1254
2384
+ * Raise configuration errors for inconsistent `<label>` configurations
2385
+ https://github.com/fluent/fluentd/pull/1233
2386
+ * Fix to instantiate an unconfigured section even for multi: true
2387
+ https://github.com/fluent/fluentd/pull/1210
2388
+ * Add validators of placeholders for buffering key extraction
2389
+ https://github.com/fluent/fluentd/pull/1255
2390
+ * Fix to show log messages about filter optimization only when needed
2391
+ https://github.com/fluent/fluentd/pull/1227
2392
+ * Add some features to write plugins more easily
2393
+ https://github.com/fluent/fluentd/pull/1256
2394
+ * Add a tool to load dumped events from file
2395
+ https://github.com/fluent/fluentd/pull/1165
2396
+
2397
+ ### Bug fixes
2398
+
2399
+ * Fix Oj's default option to encode/decode JSON in the same way with Yajl
2400
+ https://github.com/fluent/fluentd/pull/1147
2401
+ https://github.com/fluent/fluentd/pull/1239
2402
+ * Fix to raise correct configuration errors
2403
+ https://github.com/fluent/fluentd/pull/1223
2404
+ * Fix a bug to call `shutdown` method (and some others) twice
2405
+ https://github.com/fluent/fluentd/pull/1242
2406
+ * Fix to enable `chunk.each` only when it's encoded by msgpack
2407
+ https://github.com/fluent/fluentd/pull/1263
2408
+ * Fix a bug not to stop enqueue/flush threads correctly
2409
+ https://github.com/fluent/fluentd/pull/1264
2410
+ * out_forward: fix a bug that UDP heartbeat doesn't work
2411
+ https://github.com/fluent/fluentd/pull/1238
2412
+ * out_file: fix a crash bug when v0.14 enables symlink and resumes existing buffer file chunk generated by v0.12
2413
+ https://github.com/fluent/fluentd/pull/1234
2414
+ * in_monitor_agent: fix compatibility problem between outputs of v0.12 and v0.14
2415
+ https://github.com/fluent/fluentd/pull/1232
2416
+ * in_tail: fix a bug to crash to read large amount logs
2417
+ https://github.com/fluent/fluentd/pull/1259
2418
+ https://github.com/fluent/fluentd/pull/1261
2419
+
2420
+ ## Release v0.14.6 - 2016/09/07
2421
+
2422
+ ### Bug fixes
2423
+
2424
+ * in_tail: Add a missing parser_multiline require
2425
+ https://github.com/fluent/fluentd/pull/1212
2426
+ * forward: Mark secret parameters of forward plugins as secret
2427
+ https://github.com/fluent/fluentd/pull/1209
2428
+
2429
+ ## Release v0.14.5 - 2016/09/06
2430
+
2431
+ ### New features / Enhancement
2432
+
2433
+ * Add authentication / authorization feature to forward protocol and in/out_forward plugins
2434
+ https://github.com/fluent/fluentd/pull/1136
2435
+ * Add a new plugin to dump buffers in retries as secondary plugin
2436
+ https://github.com/fluent/fluentd/pull/1154
2437
+ * Merge out_buffered_stdout and out_buffered_null into out_stdout and out_null
2438
+ https://github.com/fluent/fluentd/pull/1200
2439
+
2440
+ ### Bug fixes
2441
+
2442
+ * Raise configuration errors to clarify what's wrong when "@type" is missing
2443
+ https://github.com/fluent/fluentd/pull/1202
2444
+ * Fix the bug not to launch Fluentd when v0.12 MultiOutput plugin is configured
2445
+ https://github.com/fluent/fluentd/pull/1206
2446
+
2447
+ ## Release v0.14.4 - 2016/08/31
2448
+
2449
+ ### New features / Enhancement
2450
+
2451
+ * Add a method to Filter API to update time of events
2452
+ https://github.com/fluent/fluentd/pull/1140
2453
+ * Improve performance of filter pipeline
2454
+ https://github.com/fluent/fluentd/pull/1145
2455
+ * Fix to suppress not to warn about different plugins for primary and secondary without any problems
2456
+ https://github.com/fluent/fluentd/pull/1153
2457
+ * Add deprecated/obsoleted options to config_param to show removed/warned parameters
2458
+ https://github.com/fluent/fluentd/pull/1186
2459
+ * in_forward: Add a feature source_hostname_key to inject source hostname into records
2460
+ https://github.com/fluent/fluentd/pull/807
2461
+ * in_tail: Add a feature from_encoding to specify both encoding from and to
2462
+ https://github.com/fluent/fluentd/pull/1067
2463
+ * filter_record_transformer: Fix to prevent overwriting reserved placeholder keys
2464
+ https://github.com/fluent/fluentd/pull/1176
2465
+ * Migrate some built-in plugins into v0.14 API
2466
+ https://github.com/fluent/fluentd/pull/1149
2467
+ https://github.com/fluent/fluentd/pull/1151
2468
+ * Update dependencies
2469
+ https://github.com/fluent/fluentd/pull/1193
2470
+
2471
+ ### Bug fixes
2472
+
2473
+ * Fix to start/stop/restart Fluentd processes correctly on Windows environment
2474
+ https://github.com/fluent/fluentd/pull/1171
2475
+ https://github.com/fluent/fluentd/pull/1192
2476
+ * Fix to handle Windows events correctly in winsvc.rb
2477
+ https://github.com/fluent/fluentd/pull/1155
2478
+ https://github.com/fluent/fluentd/pull/1170
2479
+ * Fix not to continue to restart workers for configuration errors
2480
+ https://github.com/fluent/fluentd/pull/1183
2481
+ * Fix output threads to start enqueue/flush buffers until plugins' start method ends
2482
+ https://github.com/fluent/fluentd/pull/1190
2483
+ * Fix a bug not to set umask 0
2484
+ https://github.com/fluent/fluentd/pull/1152
2485
+ * Fix resource leak on one-shot timers
2486
+ https://github.com/fluent/fluentd/pull/1178
2487
+ * Fix to call plugin helper methods in configure
2488
+ https://github.com/fluent/fluentd/pull/1184
2489
+ * Fix a bug to count event size
2490
+ https://github.com/fluent/fluentd/pull/1164/files
2491
+ * Fix to require missed compat modules
2492
+ https://github.com/fluent/fluentd/pull/1168
2493
+ * Fix to start properly for plugins under MultiOutput
2494
+ https://github.com/fluent/fluentd/pull/1167
2495
+ * Fix test drivers to set class name into plugin instances
2496
+ https://github.com/fluent/fluentd/pull/1069
2497
+ * Fix tests not to use mocks for Time (improve test stabilization)
2498
+ https://github.com/fluent/fluentd/pull/1194
2499
+
2500
+ ## Release 0.14.3 - 2016/08/30
2501
+
2502
+ * Fix the dependency for ServerEngine 1.x
2503
+
2504
+ ## Release 0.14.2 - 2016/08/09
2505
+
2506
+ ### New features / Enhancement
2507
+
2508
+ * Fix to split large event stream into some/many chunks in buffers
2509
+ https://github.com/fluent/fluentd/pull/1062
2510
+ * Add parser and filter support in compat_parameters plugin helper
2511
+ https://github.com/fluent/fluentd/pull/1079
2512
+ * Add a RPC call to flush buffers and stop workers
2513
+ https://github.com/fluent/fluentd/pull/1134
2514
+ * Update forward protocol to pass the number of events in a payload
2515
+ https://github.com/fluent/fluentd/pull/1137
2516
+ * Improve performance of some built-in formatter plugins
2517
+ https://github.com/fluent/fluentd/pull/1082
2518
+ https://github.com/fluent/fluentd/pull/1086
2519
+ * Migrate some built-in plugins and plugin util modules into v0.14 API
2520
+ https://github.com/fluent/fluentd/pull/1058
2521
+ https://github.com/fluent/fluentd/pull/1061
2522
+ https://github.com/fluent/fluentd/pull/1076
2523
+ https://github.com/fluent/fluentd/pull/1078
2524
+ https://github.com/fluent/fluentd/pull/1081
2525
+ https://github.com/fluent/fluentd/pull/1083
2526
+ https://github.com/fluent/fluentd/pull/1091
2527
+ * Register RegExpParser as a parser plugin explicitly
2528
+ https://github.com/fluent/fluentd/pull/1094
2529
+ * Add delimiter option to CSV parser
2530
+ https://github.com/fluent/fluentd/pull/1108
2531
+ * Add an option to receive longer udp syslog messages
2532
+ https://github.com/fluent/fluentd/pull/1127
2533
+ * Add a option to suspend internal status in dummy plugin
2534
+ https://github.com/fluent/fluentd/pull/900
2535
+ * Add a feature to capture filtered records in test driver for Filter plugins
2536
+ https://github.com/fluent/fluentd/pull/1077
2537
+ * Add some utility methods to plugin test drivers
2538
+ https://github.com/fluent/fluentd/pull/1114
2539
+
2540
+ ### Bug fixes
2541
+
2542
+ * Fix bug to read non buffer-chunk files as buffer chunks when Fluentd resumed
2543
+ https://github.com/fluent/fluentd/pull/1124
2544
+ * Fix bug not to load Filter plugins which are specified in configurations
2545
+ https://github.com/fluent/fluentd/pull/1118
2546
+ * Fix bug to ignore `-p` option to specify directories of plugins
2547
+ https://github.com/fluent/fluentd/pull/1133
2548
+ * Fix bug to overwrite base class configuration section definitions by subclasses
2549
+ https://github.com/fluent/fluentd/pull/1119
2550
+ * Fix to stop Fluentd worker process by Ctrl-C when --no-supervisor specified
2551
+ https://github.com/fluent/fluentd/pull/1089
2552
+ * Fix regression about RPC call to reload configuration
2553
+ https://github.com/fluent/fluentd/pull/1093
2554
+ * Specify to ensure Oj JSON parser to use strict mode
2555
+ https://github.com/fluent/fluentd/pull/1147
2556
+ * Fix unexisting path handling in Windows environment
2557
+ https://github.com/fluent/fluentd/pull/1104
2558
+
2559
+ ## Release 0.14.1 - 2016/06/30
2560
+
2561
+ ### New features / Enhancement
2562
+
2563
+ * Add plugin helpers for parsers and formatters
2564
+ https://github.com/fluent/fluentd/pull/1023
2565
+ * Extract some mixins into compat modules
2566
+ https://github.com/fluent/fluentd/pull/1044
2567
+ https://github.com/fluent/fluentd/pull/1052
2568
+ * Add utility methods for tests and test drivers
2569
+ https://github.com/fluent/fluentd/pull/1047
2570
+ * Migrate some built-in plugins to v0.14 APIs
2571
+ https://github.com/fluent/fluentd/pull/1049
2572
+ https://github.com/fluent/fluentd/pull/1057
2573
+ https://github.com/fluent/fluentd/pull/1060
2574
+ https://github.com/fluent/fluentd/pull/1064
2575
+ * Add support of X-Forwarded-For header in in_http plugin
2576
+ https://github.com/fluent/fluentd/pull/1051
2577
+ * Warn not to create too many staged chunks at configure
2578
+ https://github.com/fluent/fluentd/pull/1054
2579
+ * Add a plugin helper to inject tag/time/hostname
2580
+ https://github.com/fluent/fluentd/pull/1063
2581
+
2582
+ ### Bug fixes
2583
+
2584
+ * Fix in_monitor_agent for v0.14 plugins
2585
+ https://github.com/fluent/fluentd/pull/1003
2586
+ * Fix to call #format_stream of plugins themselves when RecordFilter mixin included
2587
+ https://github.com/fluent/fluentd/pull/1005
2588
+ * Fix shutdown sequence to wait force flush
2589
+ https://github.com/fluent/fluentd/pull/1009
2590
+ * Fix a deadlock bug in shutdown
2591
+ https://github.com/fluent/fluentd/pull/1010
2592
+ * Fix to require DetachProcessMixin in default for compat plugins
2593
+ https://github.com/fluent/fluentd/pull/1014
2594
+ * Fix to overwrite configure_proxy name only for root sections for debugging
2595
+ https://github.com/fluent/fluentd/pull/1015
2596
+ * Rename file for in_unix plugin
2597
+ https://github.com/fluent/fluentd/pull/1017
2598
+ * Fix a bug not to create pid file when daemonized
2599
+ https://github.com/fluent/fluentd/pull/1021
2600
+ * Fix wrong DEFAULT_PLUGIN_PATH
2601
+ https://github.com/fluent/fluentd/pull/1028
2602
+ * Fix a bug not to use primary plugin type for secondary in default
2603
+ https://github.com/fluent/fluentd/pull/1032
2604
+ * Add --run-worker option to distinguish to run as worker without supervisor
2605
+ https://github.com/fluent/fluentd/pull/1033
2606
+ * Fix regression of fluent-debug command
2607
+ https://github.com/fluent/fluentd/pull/1046
2608
+ * Update windows-pr dependency to 1.2.5
2609
+ https://github.com/fluent/fluentd/pull/1065
2610
+ * Fix supervisor to pass RUBYOPT to worker processes
2611
+ https://github.com/fluent/fluentd/pull/1066
2612
+
2613
+ ## Release 0.14.0 - 2016/05/25
2614
+
2615
+ ### New features / Enhancement
2616
+
2617
+ This list includes changes of 0.14.0.pre.1 and release candidates.
2618
+
2619
+ * Update supported Ruby version to 2.1 or later
2620
+ https://github.com/fluent/fluentd/pull/692
2621
+ * Sub-second event time support
2622
+ https://github.com/fluent/fluentd/pull/653
2623
+ * Windows support and supervisor improvement
2624
+ https://github.com/fluent/fluentd/pull/674
2625
+ https://github.com/fluent/fluentd/pull/831
2626
+ https://github.com/fluent/fluentd/pull/880
2627
+ * Add New plugin API
2628
+ https://github.com/fluent/fluentd/pull/800
2629
+ https://github.com/fluent/fluentd/pull/843
2630
+ https://github.com/fluent/fluentd/pull/866
2631
+ https://github.com/fluent/fluentd/pull/905
2632
+ https://github.com/fluent/fluentd/pull/906
2633
+ https://github.com/fluent/fluentd/pull/917
2634
+ https://github.com/fluent/fluentd/pull/928
2635
+ https://github.com/fluent/fluentd/pull/943
2636
+ https://github.com/fluent/fluentd/pull/964
2637
+ https://github.com/fluent/fluentd/pull/965
2638
+ https://github.com/fluent/fluentd/pull/972
2639
+ https://github.com/fluent/fluentd/pull/983
2640
+ * Add standard chunking format
2641
+ https://github.com/fluent/fluentd/pull/914
2642
+ * Add Compatibility layer for v0.12 plugins
2643
+ https://github.com/fluent/fluentd/pull/912
2644
+ https://github.com/fluent/fluentd/pull/969
2645
+ https://github.com/fluent/fluentd/pull/974
2646
+ https://github.com/fluent/fluentd/pull/992
2647
+ https://github.com/fluent/fluentd/pull/999
2648
+ * Add Plugin Storage API
2649
+ https://github.com/fluent/fluentd/pull/864
2650
+ https://github.com/fluent/fluentd/pull/910
2651
+ * Enforce to use router.emit instead of Engine.emit
2652
+ https://github.com/fluent/fluentd/pull/883
2653
+ * log: Show plugin name and id in logs
2654
+ https://github.com/fluent/fluentd/pull/860
2655
+ * log: Dump configurations with v1 syntax in logs
2656
+ https://github.com/fluent/fluentd/pull/867
2657
+ * log: Dump errors with class in logs
2658
+ https://github.com/fluent/fluentd/pull/899
2659
+ * config: Add simplified syntax for configuration values of hash and array
2660
+ https://github.com/fluent/fluentd/pull/875
2661
+ * config: Add 'init' option to config_section to initialize section objects
2662
+ https://github.com/fluent/fluentd/pull/877
2663
+ * config: Support multiline string in quoted strings
2664
+ https://github.com/fluent/fluentd/pull/929
2665
+ * config: Add optional arguments on Element#elements to select child elements
2666
+ https://github.com/fluent/fluentd/pull/948
2667
+ * config: Show deprecated warnings for reserved parameters
2668
+ https://github.com/fluent/fluentd/pull/971
2669
+ * config: Make the detach process forward interval configurable
2670
+ https://github.com/fluent/fluentd/pull/982
2671
+ * in_tail: Add 'path_key' option to inject tailing path
2672
+ https://github.com/fluent/fluentd/pull/951
2673
+ * Remove in_status plugin
2674
+ https://github.com/fluent/fluentd/pull/690
2675
+
2676
+ ### Bug fixes
2677
+
2678
+ * config: Enum list must be of symbols
2679
+ https://github.com/fluent/fluentd/pull/821
2680
+ * config: Fix to dup values in default
2681
+ https://github.com/fluent/fluentd/pull/827
2682
+ * config: Fix problems about overwriting subsections
2683
+ https://github.com/fluent/fluentd/pull/844
2684
+ https://github.com/fluent/fluentd/pull/981
2685
+ * log: Serialize Fluent::EventTime as Integer in JSON
2686
+ https://github.com/fluent/fluentd/pull/904
2687
+ * out_forward: Add missing error class and tests for it
2688
+ https://github.com/fluent/fluentd/pull/922
2689
+
2690
+ ### Internal fix / Refactoring
2691
+
2692
+ * Fix dependencies between files
2693
+ https://github.com/fluent/fluentd/pull/799
2694
+ https://github.com/fluent/fluentd/pull/808
2695
+ https://github.com/fluent/fluentd/pull/823
2696
+ https://github.com/fluent/fluentd/pull/824
2697
+ https://github.com/fluent/fluentd/pull/825
2698
+ https://github.com/fluent/fluentd/pull/826
2699
+ https://github.com/fluent/fluentd/pull/828
2700
+ https://github.com/fluent/fluentd/pull/859
2701
+ https://github.com/fluent/fluentd/pull/892
2702
+ * Separate PluginId from config
2703
+ https://github.com/fluent/fluentd/pull/832
2704
+ * Separate MessagePack factory from Engine
2705
+ https://github.com/fluent/fluentd/pull/871
2706
+ * Register plugins to registry
2707
+ https://github.com/fluent/fluentd/pull/838
2708
+ * Move TypeConverter mixin to mixin.rb
2709
+ https://github.com/fluent/fluentd/pull/842
2710
+ * Override default configurations by `<system>`
2711
+ https://github.com/fluent/fluentd/pull/854
2712
+ * Suppress Ruby level warnings
2713
+ https://github.com/fluent/fluentd/pull/846
2714
+ https://github.com/fluent/fluentd/pull/852
2715
+ https://github.com/fluent/fluentd/pull/890
2716
+ https://github.com/fluent/fluentd/pull/946
2717
+ https://github.com/fluent/fluentd/pull/955
2718
+ https://github.com/fluent/fluentd/pull/966
2719
+
2720
+ See https://github.com/fluent/fluentd/blob/v0.12/CHANGELOG.md for v0.12 changelog