fluentd 1.10.3 → 1.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/.deepsource.toml +13 -0
  3. data/.github/ISSUE_TEMPLATE/bug_report.md +1 -1
  4. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  5. data/.github/workflows/linux-test.yaml +36 -0
  6. data/.github/workflows/macos-test.yaml +30 -0
  7. data/.github/workflows/stale-actions.yml +22 -0
  8. data/.github/workflows/windows-test.yaml +30 -0
  9. data/CHANGELOG.md +240 -0
  10. data/CONTRIBUTING.md +1 -1
  11. data/MAINTAINERS.md +5 -2
  12. data/README.md +2 -2
  13. data/bin/fluent-cap-ctl +7 -0
  14. data/bin/fluent-ctl +7 -0
  15. data/example/copy_roundrobin.conf +3 -3
  16. data/example/counter.conf +1 -1
  17. data/example/filter_stdout.conf +2 -2
  18. data/example/{in_dummy_blocks.conf → in_sample_blocks.conf} +4 -4
  19. data/example/{in_dummy_with_compression.conf → in_sample_with_compression.conf} +3 -3
  20. data/example/logevents.conf +5 -5
  21. data/example/multi_filters.conf +1 -1
  22. data/example/out_exec_filter.conf +2 -2
  23. data/example/out_forward.conf +1 -1
  24. data/example/out_forward_buf_file.conf +1 -1
  25. data/example/out_forward_client.conf +5 -5
  26. data/example/out_forward_heartbeat_none.conf +1 -1
  27. data/example/out_forward_sd.conf +1 -1
  28. data/example/out_forward_shared_key.conf +2 -2
  29. data/example/out_forward_tls.conf +1 -1
  30. data/example/out_forward_users.conf +3 -3
  31. data/example/out_null.conf +4 -4
  32. data/example/secondary_file.conf +1 -1
  33. data/fluentd.gemspec +9 -8
  34. data/lib/fluent/capability.rb +87 -0
  35. data/lib/fluent/command/bundler_injection.rb +1 -1
  36. data/lib/fluent/command/ca_generate.rb +6 -3
  37. data/lib/fluent/command/cap_ctl.rb +174 -0
  38. data/lib/fluent/command/cat.rb +0 -1
  39. data/lib/fluent/command/ctl.rb +177 -0
  40. data/lib/fluent/command/fluentd.rb +15 -0
  41. data/lib/fluent/command/plugin_config_formatter.rb +18 -2
  42. data/lib/fluent/compat/parser.rb +2 -2
  43. data/lib/fluent/config/section.rb +2 -2
  44. data/lib/fluent/config/types.rb +2 -2
  45. data/lib/fluent/env.rb +4 -0
  46. data/lib/fluent/event.rb +3 -13
  47. data/lib/fluent/load.rb +0 -1
  48. data/lib/fluent/log.rb +33 -3
  49. data/lib/fluent/match.rb +9 -0
  50. data/lib/fluent/plugin.rb +5 -0
  51. data/lib/fluent/plugin/buffer.rb +32 -42
  52. data/lib/fluent/plugin/buffer/chunk.rb +2 -1
  53. data/lib/fluent/plugin/formatter.rb +24 -0
  54. data/lib/fluent/plugin/formatter_csv.rb +1 -1
  55. data/lib/fluent/plugin/formatter_hash.rb +3 -1
  56. data/lib/fluent/plugin/formatter_json.rb +3 -1
  57. data/lib/fluent/plugin/formatter_ltsv.rb +7 -5
  58. data/lib/fluent/plugin/formatter_out_file.rb +6 -4
  59. data/lib/fluent/plugin/formatter_single_value.rb +4 -2
  60. data/lib/fluent/plugin/formatter_tsv.rb +4 -2
  61. data/lib/fluent/plugin/in_dummy.rb +2 -123
  62. data/lib/fluent/plugin/in_exec.rb +4 -2
  63. data/lib/fluent/plugin/in_forward.rb +2 -2
  64. data/lib/fluent/plugin/in_gc_stat.rb +16 -0
  65. data/lib/fluent/plugin/in_http.rb +172 -80
  66. data/lib/fluent/plugin/in_monitor_agent.rb +2 -2
  67. data/lib/fluent/plugin/in_sample.rb +141 -0
  68. data/lib/fluent/plugin/in_tail.rb +130 -43
  69. data/lib/fluent/plugin/in_tail/position_file.rb +39 -14
  70. data/lib/fluent/plugin/in_tcp.rb +1 -0
  71. data/lib/fluent/plugin/in_unix.rb +77 -77
  72. data/lib/fluent/plugin/out_copy.rb +18 -5
  73. data/lib/fluent/plugin/out_exec_filter.rb +3 -3
  74. data/lib/fluent/plugin/out_file.rb +1 -1
  75. data/lib/fluent/plugin/out_forward.rb +62 -29
  76. data/lib/fluent/plugin/out_forward/load_balancer.rb +1 -1
  77. data/lib/fluent/plugin/out_http.rb +43 -5
  78. data/lib/fluent/plugin/output.rb +15 -6
  79. data/lib/fluent/plugin/parser_json.rb +5 -2
  80. data/lib/fluent/plugin/parser_syslog.rb +215 -54
  81. data/lib/fluent/plugin/storage_local.rb +3 -3
  82. data/lib/fluent/plugin_helper/cert_option.rb +5 -8
  83. data/lib/fluent/plugin_helper/child_process.rb +3 -2
  84. data/lib/fluent/plugin_helper/http_server/compat/server.rb +1 -1
  85. data/lib/fluent/plugin_helper/inject.rb +4 -1
  86. data/lib/fluent/plugin_helper/retry_state.rb +4 -0
  87. data/lib/fluent/plugin_helper/socket.rb +1 -1
  88. data/lib/fluent/supervisor.rb +168 -54
  89. data/lib/fluent/system_config.rb +4 -2
  90. data/lib/fluent/test/filter_test.rb +2 -2
  91. data/lib/fluent/test/output_test.rb +3 -3
  92. data/lib/fluent/time.rb +58 -1
  93. data/lib/fluent/version.rb +1 -1
  94. data/lib/fluent/winsvc.rb +22 -4
  95. data/templates/plugin_config_formatter/param.md-table.erb +10 -0
  96. data/test/command/test_binlog_reader.rb +22 -6
  97. data/test/command/test_cap_ctl.rb +100 -0
  98. data/test/command/test_ctl.rb +57 -0
  99. data/test/command/test_fluentd.rb +38 -0
  100. data/test/command/test_plugin_config_formatter.rb +124 -2
  101. data/test/config/test_configurable.rb +1 -1
  102. data/test/plugin/in_tail/test_position_file.rb +46 -26
  103. data/test/plugin/out_forward/test_connection_manager.rb +6 -0
  104. data/test/plugin/out_forward/test_load_balancer.rb +46 -0
  105. data/test/plugin/test_buffer.rb +4 -0
  106. data/test/plugin/test_filter_stdout.rb +6 -1
  107. data/test/plugin/test_formatter_hash.rb +6 -3
  108. data/test/plugin/test_formatter_json.rb +14 -4
  109. data/test/plugin/test_formatter_ltsv.rb +13 -5
  110. data/test/plugin/test_formatter_out_file.rb +35 -14
  111. data/test/plugin/test_formatter_single_value.rb +12 -6
  112. data/test/plugin/test_formatter_tsv.rb +12 -4
  113. data/test/plugin/test_in_exec.rb +18 -0
  114. data/test/plugin/test_in_gc_stat.rb +24 -1
  115. data/test/plugin/test_in_http.rb +82 -0
  116. data/test/plugin/{test_in_dummy.rb → test_in_sample.rb} +25 -25
  117. data/test/plugin/test_in_tail.rb +473 -32
  118. data/test/plugin/test_in_unix.rb +128 -73
  119. data/test/plugin/test_out_copy.rb +87 -0
  120. data/test/plugin/test_out_file.rb +23 -18
  121. data/test/plugin/test_out_forward.rb +74 -0
  122. data/test/plugin/test_out_http.rb +58 -1
  123. data/test/plugin/test_output.rb +12 -0
  124. data/test/plugin/test_parser_syslog.rb +68 -31
  125. data/test/plugin/test_sd_file.rb +1 -1
  126. data/test/plugin_helper/data/cert/empty.pem +0 -0
  127. data/test/plugin_helper/test_cert_option.rb +7 -0
  128. data/test/plugin_helper/test_child_process.rb +20 -2
  129. data/test/plugin_helper/test_compat_parameters.rb +7 -2
  130. data/test/plugin_helper/test_http_server_helper.rb +8 -1
  131. data/test/plugin_helper/test_inject.rb +42 -0
  132. data/test/plugin_helper/test_server.rb +52 -5
  133. data/test/plugin_helper/test_socket.rb +8 -0
  134. data/test/test_capability.rb +74 -0
  135. data/test/test_event.rb +16 -0
  136. data/test/test_formatter.rb +64 -10
  137. data/test/test_log.rb +44 -0
  138. data/test/test_match.rb +11 -0
  139. data/test/test_output.rb +6 -1
  140. data/test/test_static_config_analysis.rb +2 -2
  141. data/test/test_supervisor.rb +150 -1
  142. data/test/test_time_parser.rb +109 -0
  143. metadata +68 -33
  144. data/.travis.yml +0 -57
  145. data/appveyor.yml +0 -28
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a83d0f39bb55eb7343c7a19e126bd98ebf9ab907439ce95ef39546993eb9188
4
- data.tar.gz: dac26a7c7a3db09b59ae5b96cf1e76f7dd7aa975a3e08474aa636f1950dfa4e8
3
+ metadata.gz: 9be763d670c8f331be578f85392cc428502a275a370e3a2b6520a08f22861da8
4
+ data.tar.gz: ffd8aaf0703bad823a2848b1f939d317bbe903ed6ae48196f4a84fc737db73fc
5
5
  SHA512:
6
- metadata.gz: b39ee59f0649ce9f0558d335b8a0acbdfc371601bb1af9978cc97eb955fe4e3dfdb6ac7839583a146116479a61ff7d2afd3ce4eeccad5327273ea930aa9a73ff
7
- data.tar.gz: ca26fc34d1327d39e97cbbaa3c782720971ae56273f9393656abbcc601584117b11d35c8db2d60e548ab6292e309cb27a056c3ad76fc644579f6ac5d4c2f46f0
6
+ metadata.gz: 7fad389c0066167a21d41c654c2ec74501b21e2dcf35d120e34fff7084b641a9468dcefcf75679ba8e5de5391e4bd58bbd60cbb310d31e3e01119a80408936a5
7
+ data.tar.gz: 8fbd2fbe2d88cb9c9cb35eabfea19706361225381775e08e0b5ee5adc8228b2e65f305d34410aa76d6cbbf773c8b3dd4a123da41f81e36fb294ef948b25ff98f
data/.deepsource.toml ADDED
@@ -0,0 +1,13 @@
1
+ version = 1
2
+
3
+ test_patterns = ["test/**/test_*.rb"]
4
+
5
+ exclude_patterns = [
6
+ "bin/**",
7
+ "docs/**",
8
+ "example/**"
9
+ ]
10
+
11
+ [[analyzers]]
12
+ name = "ruby"
13
+ enabled = true
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: Bug Report
3
- about: Create a report to help us improve. If you have questions about Fluentd and plugins, please direct these to https://groups.google.com/forum/#!forum/fluentd
3
+ about: Create a report with a procedure for reproducing the bug
4
4
 
5
5
  ---
6
6
 
@@ -0,0 +1,5 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: Ask a Question
4
+ url: https://discuss.fluentd.org/
5
+ about: I have questions about Fluentd and plugins. Please ask and answer questions at https://discuss.fluentd.org/.
@@ -0,0 +1,36 @@
1
+ name: Testing on Ubuntu
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ${{ matrix.os }}
12
+ continue-on-error: ${{ matrix.experimental }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby-version: ['3.0', '2.7', '2.6', '2.5']
17
+ os: [ubuntu-latest]
18
+ experimental: [false]
19
+ include:
20
+ - ruby-version: head
21
+ os: ubuntu-latest
22
+ experimental: true
23
+
24
+ name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
25
+ steps:
26
+ - uses: actions/checkout@v2
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: ${{ matrix.ruby-version }}
31
+ - name: Install addons
32
+ run: sudo apt-get install libgmp3-dev libcap-ng-dev
33
+ - name: Install dependencies
34
+ run: bundle install
35
+ - name: Run tests
36
+ run: bundle exec rake test
@@ -0,0 +1,30 @@
1
+ name: Testing on macOS
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ${{ matrix.os }}
12
+ continue-on-error: ${{ matrix.experimental }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby-version: ['head', '2.7']
17
+ os: [macos-latest]
18
+ experimental: [true]
19
+
20
+ name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Set up Ruby
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby-version }}
27
+ - name: Install dependencies
28
+ run: bundle install
29
+ - name: Run tests
30
+ run: bundle exec rake test
@@ -0,0 +1,22 @@
1
+ name: "Mark or close stale issues and PRs"
2
+ on:
3
+ schedule:
4
+ - cron: "00 10 * * *"
5
+
6
+ jobs:
7
+ stale:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/stale@v3
11
+ with:
12
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
13
+ days-before-stale: 90
14
+ days-before-close: 30
15
+ stale-issue-message: "This issue has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this issue will be closed in 30 days"
16
+ stale-pr-message: "This PR has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this PR will be closed in 30 days"
17
+ close-issue-message: "This issue was automatically closed because of stale in 30 days"
18
+ close-pr-message: "This PR was automatically closed because of stale in 30 days"
19
+ stale-pr-label: "stale"
20
+ stale-issue-label: "stale"
21
+ exempt-issue-labels: "bug,enhancement,feature request,pending,work_in_progress,v1,v2"
22
+ exempt-pr-labels: "bug,enhancement,feature request,pending,work_in_progress,v1,v2"
@@ -0,0 +1,30 @@
1
+ name: Testing on Windows
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ${{ matrix.os }}
12
+
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby-version: ['3.0', '2.7', '2.6', '2.5']
17
+ os:
18
+ - windows-latest
19
+
20
+ name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Set up Ruby
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby-version }}
27
+ - name: Install dependencies
28
+ run: ridk exec bundle install
29
+ - name: Run tests
30
+ run: bundle exec rake test TESTOPTS=-v
data/CHANGELOG.md CHANGED
@@ -1,5 +1,245 @@
1
+ # v1.12
2
+
3
+ ## Release v1.12.2 - 2021/03/29
4
+
5
+ ### Enhancement
6
+
7
+ * out_copy: Add ignore_if_prev_successes
8
+ https://github.com/fluent/fluentd/pull/3190
9
+ https://github.com/fluent/fluentd/pull/3287
10
+ * Support multiple kind of timestamp format
11
+ https://github.com/fluent/fluentd/pull/3252
12
+ * formatter_ltsv: suppress delimiters in output
13
+ https://github.com/fluent/fluentd/pull/1666
14
+ https://github.com/fluent/fluentd/pull/3288
15
+ https://github.com/fluent/fluentd/pull/3289
16
+
17
+ ### Bug fix
18
+
19
+ * in_tail: Expect ENOENT during stat
20
+ https://github.com/fluent/fluentd/pull/3275
21
+ * out_forward: Prevent transferring duplicate logs on restart
22
+ https://github.com/fluent/fluentd/pull/3267
23
+ https://github.com/fluent/fluentd/pull/3285
24
+ * in_tail: Handle to send rotated logs when mv is used for rotating
25
+ https://github.com/fluent/fluentd/pull/3294
26
+ * fluent-plugin-config-format: Fill an uninitialized instance variable
27
+ https://github.com/fluent/fluentd/pull/3297
28
+ * Fix MessagePackEventStream issue with Enumerable methods
29
+ https://github.com/fluent/fluentd/pull/2116
30
+
31
+ ### Misc
32
+
33
+ * Add webrick to support Ruby 3.0
34
+ https://github.com/fluent/fluentd/pull/3257
35
+ * Suggest Discource instead of Google Groups
36
+ https://github.com/fluent/fluentd/pull/3261
37
+ * Update MAINTAINERS.md
38
+ https://github.com/fluent/fluentd/pull/3282
39
+ * Introduce DeepSource to check code quality
40
+ https://github.com/fluent/fluentd/pull/3286
41
+ https://github.com/fluent/fluentd/pull/3259
42
+ https://github.com/fluent/fluentd/pull/3291
43
+ * Migrate to GitHub Actions and stabilize tests
44
+ https://github.com/fluent/fluentd/pull/3266
45
+ https://github.com/fluent/fluentd/pull/3268
46
+ https://github.com/fluent/fluentd/pull/3281
47
+ https://github.com/fluent/fluentd/pull/3283
48
+ https://github.com/fluent/fluentd/pull/3290
49
+
50
+ ## Release v1.12.1 - 2021/02/18
51
+
52
+ ### Enhancement
53
+
54
+ * out_http: Add `headers_from_placeholders` parameter
55
+ https://github.com/fluent/fluentd/pull/3241
56
+ * fluent-plugin-config-format: Add `--table` option to use markdown table
57
+ https://github.com/fluent/fluentd/pull/3240
58
+ * Add `--disable-shared-socket`/`disable_shared_socket` to disable ServerEngine's shared socket setup
59
+ https://github.com/fluent/fluentd/pull/3250
60
+
61
+ ### Bug fix
62
+
63
+ * ca_generate: Fix creating TLS certification files which include broken extensions
64
+ https://github.com/fluent/fluentd/pull/3246
65
+ * test: Drop TLS 1.1 tests
66
+ https://github.com/fluent/fluentd/pull/3256
67
+ * Remove old gem constraints to support Ruby 3
68
+
69
+ ### Misc
70
+
71
+ * Use GitHub Actions
72
+ https://github.com/fluent/fluentd/pull/3233
73
+ https://github.com/fluent/fluentd/pull/3255
74
+
75
+ ## Release v1.12.0 - 2021/01/05
76
+
77
+ ### New feature
78
+
79
+ * in_tail: Add `follow_inode` to support log rotation with wild card
80
+ https://github.com/fluent/fluentd/pull/2992
81
+ * in_tail: Handle linux capability
82
+ https://github.com/fluent/fluentd/pull/3155
83
+ https://github.com/fluent/fluentd/pull/3162
84
+ * windows: Add win32 events alternative to unix signals
85
+ https://github.com/fluent/fluentd/pull/3131
86
+
87
+ ### Enhancement
88
+
89
+ * buffer: Enable metadata comparison optimization on all platforms
90
+ https://github.com/fluent/fluentd/pull/3095
91
+ * fluent-plugin-config-formatter: Handle `service_discovery` type
92
+ https://github.com/fluent/fluentd/pull/3178
93
+ * in_http: Add `add_query_params` parameter to add query params to event record
94
+ https://github.com/fluent/fluentd/pull/3197
95
+ * inject: Support `unixtime_micros` and `unixtime_nanos` in `time_type`
96
+ https://github.com/fluent/fluentd/pull/3220
97
+ * Refactoring code
98
+ https://github.com/fluent/fluentd/pull/3167
99
+ https://github.com/fluent/fluentd/pull/3170
100
+ https://github.com/fluent/fluentd/pull/3180
101
+ https://github.com/fluent/fluentd/pull/3196
102
+ https://github.com/fluent/fluentd/pull/3213
103
+ https://github.com/fluent/fluentd/pull/3222
104
+
105
+ ### Bug fix
106
+
107
+ * output: Prevent retry.step from being called too many times in a short time
108
+ https://github.com/fluent/fluentd/pull/3203
109
+
110
+ # v1.11
111
+
112
+ ## Release v1.11.5 - 2020/11/06
113
+
114
+ ### Enhancement
115
+
116
+ * formatter: Provide `newline` parameter to support `CRLF`
117
+ https://github.com/fluent/fluentd/pull/3152
118
+ * out_http: adding support for intermediate certificates
119
+ https://github.com/fluent/fluentd/pull/3146
120
+ * Update serverengine dependency to 2.2.2 or later
121
+
122
+ ### Bug fix
123
+
124
+ * Fix a bug that windows service isn't stopped gracefuly
125
+ https://github.com/fluent/fluentd/pull/3156
126
+
127
+ ## Release v1.11.4 - 2020/10/13
128
+
129
+ ### Enhancement
130
+
131
+ * inject: Support `unixtime_millis` in `time_type` parameter
132
+ https://github.com/fluent/fluentd/pull/3145
133
+
134
+ ### Bug fix
135
+
136
+ * out_http: Fix broken data with `json_array true`
137
+ https://github.com/fluent/fluentd/pull/3144
138
+ * output: Fix wrong logging issue for `${chunk_id}`
139
+ https://github.com/fluent/fluentd/pull/3134
140
+
141
+ ## Release v1.11.3 - 2020/09/30
142
+
143
+ ### Enhancement
144
+
145
+ * in_exec: Add `connect_mode` parameter to read stderr
146
+ https://github.com/fluent/fluentd/pull/3108
147
+ * parser_json: Improve the performance
148
+ https://github.com/fluent/fluentd/pull/3109
149
+ * log: Add `ignore_same_log_interval` parameter
150
+ https://github.com/fluent/fluentd/pull/3119
151
+ * Upgrade win32 gems
152
+ https://github.com/fluent/fluentd/pull/3100
153
+ * Refactoring code
154
+ https://github.com/fluent/fluentd/pull/3094
155
+ https://github.com/fluent/fluentd/pull/3118
156
+
157
+ ### Bug fix
158
+
159
+ * buffer: Fix calculation of timekey stats
160
+ https://github.com/fluent/fluentd/pull/3018
161
+ * buffer: fix binmode usage for prevent gc
162
+ https://github.com/fluent/fluentd/pull/3138
163
+
164
+ ## Release v1.11.2 - 2020/08/04
165
+
166
+ ### Enhancement
167
+
168
+ * `in_dummy` renamed to `in_sample`
169
+ https://github.com/fluent/fluentd/pull/3065
170
+ * Allow regular expression in filter/match directive
171
+ https://github.com/fluent/fluentd/pull/3071
172
+ * Refactoring code
173
+ https://github.com/fluent/fluentd/pull/3051
174
+
175
+ ### Bug fix
176
+
177
+ * buffer: Fix log message for `chunk_limit_records` case
178
+ https://github.com/fluent/fluentd/pull/3079
179
+ * buffer: Fix timekey optimization for non-windows platform
180
+ https://github.com/fluent/fluentd/pull/3092
181
+ * cert: Raise an error for broken certificate file
182
+ https://github.com/fluent/fluentd/pull/3086
183
+ * cert: Set TLS ciphers list correcty on older OpenSSL
184
+ https://github.com/fluent/fluentd/pull/3093
185
+
186
+ ## Release v1.11.1 - 2020/06/22
187
+
188
+ ### Enhancement
189
+
190
+ * in_http: Add `dump_error_log` parameter
191
+ https://github.com/fluent/fluentd/pull/3035
192
+ * in_http: Improve time field handling
193
+ https://github.com/fluent/fluentd/pull/3046
194
+ * Refactoring code
195
+ https://github.com/fluent/fluentd/pull/3047
196
+
197
+ ### Bug fix
198
+
199
+ * in_tail: Use actual path instead of based pattern for ignore list
200
+ https://github.com/fluent/fluentd/pull/3042
201
+ * child_process helper: Fix child process failure due to SIGPIPE if the command uses stdout
202
+ https://github.com/fluent/fluentd/pull/3044
203
+
204
+ ## Release v1.11.0 - 2020/06/04
205
+
206
+ ### New feature
207
+
208
+ * in_unix: Use v1 API
209
+ https://github.com/fluent/fluentd/pull/2992
210
+
211
+ ### Enhancement
212
+
213
+ * parser_syslog: Support any `time_format` for RFC3164 string parser
214
+ https://github.com/fluent/fluentd/pull/3014
215
+ * parser_syslog: Add new parser for RFC5424
216
+ https://github.com/fluent/fluentd/pull/3015
217
+ * Refactoring code
218
+ https://github.com/fluent/fluentd/pull/3019
219
+
220
+ ### Bug fix
221
+
222
+ * in_gc_stat: Add `use_symbol_keys` parameter to emit string key record
223
+ https://github.com/fluent/fluentd/pull/3008
224
+
1
225
  # v1.10
2
226
 
227
+ ## Release v1.10.4 - 2020/05/12
228
+
229
+ ### Enhancement
230
+
231
+ * out_http: Support single json array payload
232
+ https://github.com/fluent/fluentd/pull/2973
233
+ * Refactoring
234
+ https://github.com/fluent/fluentd/pull/2988
235
+
236
+ ### Bug fix
237
+
238
+ * supervisor: Call `File.umask(0)` for standalone worker
239
+ https://github.com/fluent/fluentd/pull/2987
240
+ * out_forward: Fix ZeroDivisionError issue with `weight 0`
241
+ https://github.com/fluent/fluentd/pull/2989
242
+
3
243
  ## Release v1.10.3 - 2020/05/01
4
244
 
5
245
  ### Enhancement
data/CONTRIBUTING.md CHANGED
@@ -24,7 +24,7 @@ If you find a bug of Fluentd or a mistake in the documentation, you can help us
24
24
  submitting an issue to Fluentd. Even better you can submit a Pull Request with a fix.
25
25
 
26
26
  * **Fluentd**: Use [fluentd](https://github.com/fluent/fluentd) repository. Fill issue template.
27
- * **Documentation**: Use [fluentd-docs](https://github.com/fluent/fluentd-docs-gitbook) repository.
27
+ * **Documentation**: Use [fluentd documentation](https://github.com/fluent/fluentd-docs-gitbook) repository.
28
28
 
29
29
  If you find a bug of 3rd party plugins, please submit an issue to each plugin repository.
30
30
  And use [omnibus-td-agent](https://github.com/treasure-data/omnibus-td-agent) repository for td-agent related issues.
data/MAINTAINERS.md CHANGED
@@ -1,8 +1,11 @@
1
1
  # Fluentd Maintainers
2
2
 
3
3
  - [Naotoshi Seo](https://github.com/sonots), [ZOZO Technologies](https://tech.zozo.com/en/)
4
- - [Okkez](https://github.com/okkez), [Clearcode](https://www.clear-code.com/)
5
- - [Hiroshi Hatake](https://github.com/cosmo0920), [Clearcode](https://www.clear-code.com/)
4
+ - [Okkez](https://github.com/okkez)
5
+ - [Hiroshi Hatake](https://github.com/cosmo0920), [ClearCode](https://www.clear-code.com/)
6
6
  - [Masahiro Nakagawa](https://github.com/repeatedly), [Treasure Data](https://www.treasuredata.com/)
7
7
  - [Satoshi Tagomori](https://github.com/tagomoris), [Treasure Data](https://www.treasuredata.com/)
8
8
  - [Eduardo Silva](https://github.com/edsiper), [Arm Treasure Data](https://www.treasuredata.com/)
9
+ - [Fujimoto Seiji](https://github.com/fujimots), [ClearCode](https://www.clear-code.com/)
10
+ - [Takuro Ashie](https://github.com/ashie), [ClearCode](https://www.clear-code.com/)
11
+ - [Kentaro Hayashi](https://github.com/kenhys), [ClearCode](https://www.clear-code.com/)
data/README.md CHANGED
@@ -13,7 +13,7 @@ Drone CI for Arm64:
13
13
  [Fluentd](https://www.fluentd.org/) collects events from various data sources and writes them to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. Fluentd helps you unify your logging infrastructure (Learn more about the [Unified Logging Layer](https://www.fluentd.org/blog/unified-logging-layer)).
14
14
 
15
15
  <p align="center">
16
- <img src="https://raw.githubusercontent.com/fluent/fluentd-docs-gitbook/1.0/images/fluentd-architecture.png" width="500px"/>
16
+ <img src="https://www.fluentd.org/images/fluentd-architecture.png" width="500px"/>
17
17
  </p>
18
18
 
19
19
  An event consists of *tag*, *time* and *record*. Tag is a string separated with '.' (e.g. myapp.access). It is used to categorize events. Time is a UNIX time recorded at occurrence of an event. Record is a JSON object.
@@ -78,7 +78,7 @@ You can run specified test via `TEST` environment variable:
78
78
  - Slack / Community: https://slack.fluentd.org
79
79
  - Newsletters: https://www.fluentd.org/newsletter
80
80
  - Author: [Sadayuki Furuhashi](https://github.com/frsyuki)
81
- - Copyright: 2011-2019 Fluentd Authors
81
+ - Copyright: 2011-2021 Fluentd Authors
82
82
  - License: Apache License, Version 2.0
83
83
 
84
84
  ## Security