fluentd 0.14.17-x86-mingw32 → 1.3.1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fluentd might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +16 -5
- data/ADOPTERS.md +5 -0
- data/{ChangeLog → CHANGELOG.md} +495 -6
- data/CONTRIBUTING.md +5 -2
- data/GOVERNANCE.md +55 -0
- data/LICENSE +202 -0
- data/MAINTAINERS.md +7 -5
- data/README.md +17 -10
- data/bin/fluent-ca-generate +6 -0
- data/example/counter.conf +18 -0
- data/example/secondary_file.conf +3 -2
- data/fluentd.gemspec +3 -3
- data/lib/fluent/agent.rb +1 -1
- data/lib/fluent/command/binlog_reader.rb +11 -2
- data/lib/fluent/command/ca_generate.rb +181 -0
- data/lib/fluent/command/cat.rb +28 -15
- data/lib/fluent/command/debug.rb +4 -4
- data/lib/fluent/command/fluentd.rb +2 -2
- data/lib/fluent/command/plugin_config_formatter.rb +24 -2
- data/lib/fluent/command/plugin_generator.rb +26 -8
- data/lib/fluent/config/configure_proxy.rb +7 -1
- data/lib/fluent/config/dsl.rb +8 -5
- data/lib/fluent/config/element.rb +5 -0
- data/lib/fluent/config/literal_parser.rb +7 -1
- data/lib/fluent/config/types.rb +28 -2
- data/lib/fluent/config/v1_parser.rb +1 -2
- data/lib/fluent/configurable.rb +1 -0
- data/lib/fluent/counter.rb +23 -0
- data/lib/fluent/counter/base_socket.rb +46 -0
- data/lib/fluent/counter/client.rb +297 -0
- data/lib/fluent/counter/error.rb +86 -0
- data/lib/fluent/counter/mutex_hash.rb +163 -0
- data/lib/fluent/counter/server.rb +273 -0
- data/lib/fluent/counter/store.rb +205 -0
- data/lib/fluent/counter/validator.rb +145 -0
- data/lib/fluent/env.rb +1 -0
- data/lib/fluent/event_router.rb +1 -1
- data/lib/fluent/log.rb +119 -29
- data/lib/fluent/plugin/base.rb +12 -0
- data/lib/fluent/plugin/buf_file.rb +20 -16
- data/lib/fluent/plugin/buffer.rb +130 -32
- data/lib/fluent/plugin/buffer/file_chunk.rb +23 -4
- data/lib/fluent/plugin/compressable.rb +1 -1
- data/lib/fluent/plugin/filter_grep.rb +135 -21
- data/lib/fluent/plugin/filter_parser.rb +13 -2
- data/lib/fluent/plugin/filter_record_transformer.rb +16 -14
- data/lib/fluent/plugin/formatter_stdout.rb +3 -2
- data/lib/fluent/plugin/formatter_tsv.rb +5 -1
- data/lib/fluent/plugin/in_debug_agent.rb +8 -1
- data/lib/fluent/plugin/in_forward.rb +1 -1
- data/lib/fluent/plugin/in_http.rb +84 -3
- data/lib/fluent/plugin/in_monitor_agent.rb +7 -1
- data/lib/fluent/plugin/in_syslog.rb +31 -10
- data/lib/fluent/plugin/in_tail.rb +142 -53
- data/lib/fluent/plugin/in_tcp.rb +5 -6
- data/lib/fluent/plugin/in_udp.rb +6 -2
- data/lib/fluent/plugin/in_unix.rb +1 -1
- data/lib/fluent/plugin/multi_output.rb +1 -0
- data/lib/fluent/plugin/out_copy.rb +25 -2
- data/lib/fluent/plugin/out_file.rb +26 -7
- data/lib/fluent/plugin/out_forward.rb +81 -42
- data/lib/fluent/plugin/out_secondary_file.rb +2 -2
- data/lib/fluent/plugin/out_stdout.rb +0 -1
- data/lib/fluent/plugin/out_stream.rb +1 -1
- data/lib/fluent/plugin/output.rb +221 -57
- data/lib/fluent/plugin/parser_apache.rb +1 -1
- data/lib/fluent/plugin/parser_apache2.rb +5 -1
- data/lib/fluent/plugin/parser_apache_error.rb +1 -1
- data/lib/fluent/plugin/parser_json.rb +10 -3
- data/lib/fluent/plugin/parser_ltsv.rb +7 -0
- data/lib/fluent/plugin/parser_multiline.rb +2 -1
- data/lib/fluent/plugin/parser_nginx.rb +1 -1
- data/lib/fluent/plugin/parser_none.rb +1 -0
- data/lib/fluent/plugin/parser_regexp.rb +15 -14
- data/lib/fluent/plugin/parser_syslog.rb +9 -5
- data/lib/fluent/plugin_helper.rb +2 -0
- data/lib/fluent/plugin_helper/cert_option.rb +28 -9
- data/lib/fluent/plugin_helper/compat_parameters.rb +3 -1
- data/lib/fluent/plugin_helper/counter.rb +51 -0
- data/lib/fluent/plugin_helper/event_loop.rb +9 -0
- data/lib/fluent/plugin_helper/record_accessor.rb +210 -0
- data/lib/fluent/plugin_helper/retry_state.rb +15 -7
- data/lib/fluent/plugin_helper/server.rb +87 -25
- data/lib/fluent/plugin_helper/socket_option.rb +5 -2
- data/lib/fluent/plugin_helper/timer.rb +8 -7
- data/lib/fluent/root_agent.rb +18 -9
- data/lib/fluent/supervisor.rb +63 -23
- data/lib/fluent/system_config.rb +30 -2
- data/lib/fluent/test/helpers.rb +1 -1
- data/lib/fluent/time.rb +15 -7
- data/lib/fluent/timezone.rb +26 -2
- data/lib/fluent/version.rb +1 -1
- data/templates/new_gem/README.md.erb +2 -2
- data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +1 -1
- data/templates/new_gem/lib/fluent/plugin/input.rb.erb +1 -1
- data/templates/new_gem/lib/fluent/plugin/output.rb.erb +1 -1
- data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +4 -4
- data/test/command/test_ca_generate.rb +70 -0
- data/test/command/test_fluentd.rb +2 -2
- data/test/command/test_plugin_config_formatter.rb +8 -7
- data/test/command/test_plugin_generator.rb +65 -39
- data/test/config/test_config_parser.rb +7 -2
- data/test/config/test_configurable.rb +7 -2
- data/test/config/test_configure_proxy.rb +41 -3
- data/test/config/test_dsl.rb +10 -10
- data/test/config/test_element.rb +10 -0
- data/test/config/test_literal_parser.rb +8 -0
- data/test/config/test_plugin_configuration.rb +56 -0
- data/test/config/test_system_config.rb +19 -1
- data/test/config/test_types.rb +37 -0
- data/test/counter/test_client.rb +559 -0
- data/test/counter/test_error.rb +44 -0
- data/test/counter/test_mutex_hash.rb +179 -0
- data/test/counter/test_server.rb +589 -0
- data/test/counter/test_store.rb +258 -0
- data/test/counter/test_validator.rb +137 -0
- data/test/plugin/test_buf_file.rb +124 -0
- data/test/plugin/test_buffer.rb +3 -2
- data/test/plugin/test_filter_grep.rb +580 -2
- data/test/plugin/test_filter_parser.rb +33 -2
- data/test/plugin/test_filter_record_transformer.rb +22 -1
- data/test/plugin/test_formatter_ltsv.rb +3 -0
- data/test/plugin/test_formatter_tsv.rb +68 -0
- data/test/plugin/test_in_debug_agent.rb +21 -0
- data/test/plugin/test_in_exec.rb +3 -5
- data/test/plugin/test_in_http.rb +178 -0
- data/test/plugin/test_in_monitor_agent.rb +1 -1
- data/test/plugin/test_in_syslog.rb +64 -0
- data/test/plugin/test_in_tail.rb +116 -6
- data/test/plugin/test_in_tcp.rb +21 -0
- data/test/plugin/test_in_udp.rb +78 -0
- data/test/plugin/test_metadata.rb +89 -0
- data/test/plugin/test_out_copy.rb +31 -0
- data/test/plugin/test_out_file.rb +108 -2
- data/test/plugin/test_out_forward.rb +195 -2
- data/test/plugin/test_out_secondary_file.rb +14 -0
- data/test/plugin/test_output.rb +159 -45
- data/test/plugin/test_output_as_buffered.rb +19 -0
- data/test/plugin/test_output_as_buffered_backup.rb +307 -0
- data/test/plugin/test_output_as_buffered_retries.rb +70 -0
- data/test/plugin/test_output_as_buffered_secondary.rb +1 -1
- data/test/plugin/test_parser_apache2.rb +1 -0
- data/test/plugin/test_parser_labeled_tsv.rb +17 -0
- data/test/plugin/test_parser_nginx.rb +40 -0
- data/test/plugin/test_parser_regexp.rb +6 -7
- data/test/plugin/test_parser_syslog.rb +155 -5
- data/test/plugin_helper/test_child_process.rb +4 -4
- data/test/plugin_helper/test_compat_parameters.rb +22 -0
- data/test/plugin_helper/test_record_accessor.rb +197 -0
- data/test/plugin_helper/test_retry_state.rb +20 -0
- data/test/plugin_helper/test_server.rb +30 -2
- data/test/test_config.rb +3 -3
- data/test/test_configdsl.rb +2 -2
- data/test/test_log.rb +51 -1
- data/test/test_root_agent.rb +33 -0
- data/test/test_supervisor.rb +105 -0
- metadata +68 -8
- data/COPYING +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2847073e2759c43daf24381f7472249edc2f7df
|
4
|
+
data.tar.gz: 6f89483696937d61907848bdb2dda54bb4f2c37e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d90989abd2208988439470294420a0276e7c3cddd57386bea34c878d385acb0c90f8fe6f227c319492db0fe7be8de12633fc441b913086fccbd7d208786f57ae
|
7
|
+
data.tar.gz: cf8636dc3195309e8479b8c85ef671f898887de8653ccec9f146e43644a10435c547a5696d072fe77b0eac94674cb2a427ca0134f08fabebb1479af839176811
|
data/.travis.yml
CHANGED
@@ -9,11 +9,13 @@ matrix:
|
|
9
9
|
include:
|
10
10
|
- rvm: 2.1.10
|
11
11
|
os: linux
|
12
|
-
- rvm: 2.2.
|
12
|
+
- rvm: 2.2.10
|
13
13
|
os: linux
|
14
|
-
- rvm: 2.3.
|
14
|
+
- rvm: 2.3.8
|
15
15
|
os: linux
|
16
|
-
- rvm: 2.4.
|
16
|
+
- rvm: 2.4.5
|
17
|
+
os: linux
|
18
|
+
- rvm: 2.5.3
|
17
19
|
os: linux
|
18
20
|
- rvm: ruby-head
|
19
21
|
os: linux
|
@@ -26,13 +28,19 @@ matrix:
|
|
26
28
|
# - rvm: 2.3.3
|
27
29
|
# os: osx
|
28
30
|
# osx_image: xcode8.2 # OSX 10.12
|
29
|
-
- rvm: 2.4.
|
31
|
+
- rvm: 2.4.1
|
30
32
|
os: osx
|
31
33
|
osx_image: xcode8.3 # OSX 10.12
|
32
34
|
- rvm: ruby-head
|
33
35
|
os: osx
|
34
|
-
osx_image:
|
36
|
+
osx_image: xcode8.3 # OSX 10.12
|
35
37
|
allow_failures:
|
38
|
+
- rvm: 2.1.10
|
39
|
+
os: osx
|
40
|
+
osx_image: xcode8.3
|
41
|
+
- rvm: 2.4.1
|
42
|
+
os: osx
|
43
|
+
osx_image: xcode8.3
|
36
44
|
- rvm: ruby-head
|
37
45
|
|
38
46
|
branches:
|
@@ -41,6 +49,9 @@ branches:
|
|
41
49
|
- v0.12
|
42
50
|
- v0.14
|
43
51
|
|
52
|
+
before_install:
|
53
|
+
- gem update --system
|
54
|
+
|
44
55
|
sudo: false
|
45
56
|
dist: trusty # for TLSv1.2 support
|
46
57
|
|
data/ADOPTERS.md
ADDED
data/{ChangeLog → CHANGELOG.md}
RENAMED
@@ -1,5 +1,494 @@
|
|
1
|
+
# v1.3
|
2
|
+
|
3
|
+
## Release v1.3.1 - 2018/11/27
|
4
|
+
|
5
|
+
### Enhancements
|
6
|
+
|
7
|
+
* out_forward: Separate parameter names for certificate
|
8
|
+
https://github.com/fluent/fluentd/pull/2181
|
9
|
+
https://github.com/fluent/fluentd/pull/2190
|
10
|
+
* out_forward: Add `verify_connection_at_startup` parameter to check connection setting at startup phase
|
11
|
+
https://github.com/fluent/fluentd/pull/2184
|
12
|
+
* config: Check right slash position in regexp type
|
13
|
+
https://github.com/fluent/fluentd/pull/2176
|
14
|
+
* parser_nginx: Support multiple IPs in `http_x_forwarded_for` field
|
15
|
+
https://github.com/fluent/fluentd/pull/2171
|
16
|
+
|
17
|
+
### Bug fixes
|
18
|
+
|
19
|
+
* fluent-cat: Fix retry limit handling
|
20
|
+
https://github.com/fluent/fluentd/pull/2193
|
21
|
+
* record_accessor helper: Delete top level field with bracket style
|
22
|
+
https://github.com/fluent/fluentd/pull/2192
|
23
|
+
* filter_record_transformer: Keep `class` methond to avoid undefined method error
|
24
|
+
https://github.com/fluent/fluentd/pull/2186
|
25
|
+
|
26
|
+
## Release v1.3.0 - 2018/11/10
|
27
|
+
|
28
|
+
### New features
|
29
|
+
|
30
|
+
* output: Change thread execution control
|
31
|
+
https://github.com/fluent/fluentd/pull/2170
|
32
|
+
* in_syslog: Support octet counting frame
|
33
|
+
https://github.com/fluent/fluentd/pull/2147
|
34
|
+
* Use `flush_thread_count` value for `queued_chunks_limit_size` when `queued_chunks_limit_size` is not specified
|
35
|
+
https://github.com/fluent/fluentd/pull/2173
|
36
|
+
|
37
|
+
### Enhancements
|
38
|
+
|
39
|
+
* output: Show backtrace for unrecoverable errors
|
40
|
+
https://github.com/fluent/fluentd/pull/2149
|
41
|
+
* in_http: Implement support for CORS preflight requests
|
42
|
+
https://github.com/fluent/fluentd/pull/2144
|
43
|
+
|
44
|
+
### Bug fixes
|
45
|
+
|
46
|
+
* server: Fix deadlock between on_writable and close in sockets
|
47
|
+
https://github.com/fluent/fluentd/pull/2165
|
48
|
+
* output: show correct error when wrong plugin is specified for secondary
|
49
|
+
https://github.com/fluent/fluentd/pull/2169
|
50
|
+
|
51
|
+
# v1.2
|
52
|
+
|
53
|
+
## Release v1.2.6 - 2018/10/03
|
54
|
+
|
55
|
+
### Enhancements
|
56
|
+
|
57
|
+
* output: Add `disable_chunk_backup` for ignore broken chunks.
|
58
|
+
https://github.com/fluent/fluentd/pull/2117
|
59
|
+
* parser_syslog: Improve regexp for RFC5424
|
60
|
+
https://github.com/fluent/fluentd/pull/2141
|
61
|
+
* in_http: Allow specifying the wildcard '*' as the CORS domain
|
62
|
+
https://github.com/fluent/fluentd/pull/2139
|
63
|
+
|
64
|
+
### Bug fixes
|
65
|
+
|
66
|
+
* in_tail: Prevent thread switching in the interval between seek and read/write operations to pos_file
|
67
|
+
https://github.com/fluent/fluentd/pull/2118
|
68
|
+
* parser: Handle LoadError properly for oj
|
69
|
+
https://github.com/fluent/fluentd/pull/2140
|
70
|
+
|
71
|
+
## Release v1.2.5 - 2018/08/22
|
72
|
+
|
73
|
+
### Bug fixes
|
74
|
+
|
75
|
+
* in_tail: Fix resource leak by file rotation
|
76
|
+
https://github.com/fluent/fluentd/pull/2105
|
77
|
+
* fix typos
|
78
|
+
|
79
|
+
## Release v1.2.4 - 2018/08/01
|
80
|
+
|
81
|
+
### Bug fixes
|
82
|
+
|
83
|
+
* output: Consider timezone when calculate timekey
|
84
|
+
https://github.com/fluent/fluentd/pull/2054
|
85
|
+
* output: Fix bug in suppress_emit_error_log_interval
|
86
|
+
https://github.com/fluent/fluentd/pull/2069
|
87
|
+
* server-helper: Fix connection leak by close timing issue.
|
88
|
+
https://github.com/fluent/fluentd/pull/2087
|
89
|
+
|
90
|
+
## Release v1.2.3 - 2018/07/10
|
91
|
+
|
92
|
+
### Enhancements
|
93
|
+
|
94
|
+
* in_http: Consider `<parse>` parameters in batch mode
|
95
|
+
https://github.com/fluent/fluentd/pull/2055
|
96
|
+
* in_http: Support gzip payload
|
97
|
+
https://github.com/fluent/fluentd/pull/2060
|
98
|
+
* output: Improve compress performance
|
99
|
+
https://github.com/fluent/fluentd/pull/2031
|
100
|
+
* in_monitor_agent: Add missing descriptions for configurable options
|
101
|
+
https://github.com/fluent/fluentd/pull/2037
|
102
|
+
* parser_syslog: update regex of pid field for conformance to RFC5424 spec
|
103
|
+
https://github.com/fluent/fluentd/pull/2051
|
104
|
+
|
105
|
+
### Bug fixes
|
106
|
+
|
107
|
+
* in_tail: Fix to rescue Errno::ENOENT for File.mtime()
|
108
|
+
https://github.com/fluent/fluentd/pull/2063
|
109
|
+
* fluent-plugin-generate: Fix Parser plugin template
|
110
|
+
https://github.com/fluent/fluentd/pull/2026
|
111
|
+
* fluent-plugin-config-format: Fix NoMethodError for some plugins
|
112
|
+
https://github.com/fluent/fluentd/pull/2023
|
113
|
+
* config: Don't warn message for reserved parameters in DSL
|
114
|
+
https://github.com/fluent/fluentd/pull/2034
|
115
|
+
|
116
|
+
## Release v1.2.2 - 2018/06/12
|
117
|
+
|
118
|
+
### Enhancements
|
119
|
+
|
120
|
+
* filter_parser: Add remove_key_name_field parameter
|
121
|
+
https://github.com/fluent/fluentd/pull/2012
|
122
|
+
* fluent-plugin-config-format: Dump config_argument
|
123
|
+
https://github.com/fluent/fluentd/pull/2003
|
124
|
+
|
125
|
+
### Bug fixes
|
126
|
+
|
127
|
+
* in_tail: Change pos file entry handling to avoid read conflict for other plugins
|
128
|
+
https://github.com/fluent/fluentd/pull/1963
|
129
|
+
* buffer: Wait for all chunks being purged before deleting @queued_num items
|
130
|
+
https://github.com/fluent/fluentd/pull/2016
|
131
|
+
|
132
|
+
## Release v1.2.1 - 2018/05/23
|
133
|
+
|
134
|
+
### Enhancements
|
135
|
+
|
136
|
+
* Counter: Add wait API to client
|
137
|
+
https://github.com/fluent/fluentd/pull/1997
|
138
|
+
|
139
|
+
### Bug fixes
|
140
|
+
|
141
|
+
* in_tcp/in_udp: Fix source_hostname_key to set hostname correctly
|
142
|
+
https://github.com/fluent/fluentd/pull/1976
|
143
|
+
* in_monitor_agent: Fix buffer_total_queued_size calculation
|
144
|
+
https://github.com/fluent/fluentd/pull/1990
|
145
|
+
* out_file: Temporal fix for broken gzipped files with gzip and append
|
146
|
+
https://github.com/fluent/fluentd/pull/1995
|
147
|
+
* test: Fix unstable backup test
|
148
|
+
https://github.com/fluent/fluentd/pull/1979
|
149
|
+
* gemspec: Remove deprecated has_rdoc
|
150
|
+
|
151
|
+
## Release v1.2.0 - 2018/04/30
|
152
|
+
|
153
|
+
### New Features
|
154
|
+
|
155
|
+
* New Counter API
|
156
|
+
https://github.com/fluent/fluentd/pull/1857
|
157
|
+
* output: Backup for broken chunks
|
158
|
+
https://github.com/fluent/fluentd/pull/1952
|
159
|
+
* filter_grep: Support for `<and>` and `<or>` sections
|
160
|
+
https://github.com/fluent/fluentd/pull/1897
|
161
|
+
* config: Support `regexp` type in configuration parameter
|
162
|
+
https://github.com/fluent/fluentd/pull/1927
|
163
|
+
|
164
|
+
### Enhancements
|
165
|
+
|
166
|
+
* parser_nginx: Support optional `http-x-forwarded-for` field
|
167
|
+
https://github.com/fluent/fluentd/pull/1932
|
168
|
+
* filter_grep: Improve the performance
|
169
|
+
https://github.com/fluent/fluentd/pull/1940
|
170
|
+
|
171
|
+
### Bug fixes
|
172
|
+
|
173
|
+
* log: Fix unexpected implementation bug when log rotation setting is applied
|
174
|
+
https://github.com/fluent/fluentd/pull/1957
|
175
|
+
* server helper: Close invalid socket when ssl error happens on reading
|
176
|
+
https://github.com/fluent/fluentd/pull/1942
|
177
|
+
* output: Buffer chunk's unique id should be formatted as hex in the log
|
178
|
+
|
179
|
+
# v1.1
|
180
|
+
|
181
|
+
## Release v1.1.3 - 2018/04/03
|
182
|
+
|
183
|
+
### Enhancements
|
184
|
+
|
185
|
+
* output: Support negative index for tag placeholders
|
186
|
+
https://github.com/fluent/fluentd/pull/1908
|
187
|
+
* buffer: Add queued_chunks_limit_size to control the number of queued chunks
|
188
|
+
https://github.com/fluent/fluentd/pull/1916
|
189
|
+
* time: Make Fluent::EventTime human readable for inspect
|
190
|
+
https://github.com/fluent/fluentd/pull/1915
|
191
|
+
|
192
|
+
### Bug fixes
|
193
|
+
|
194
|
+
* output: Delete empty queued_num field after purging chunks
|
195
|
+
https://github.com/fluent/fluentd/pull/1919
|
196
|
+
* fluent-debug: Fix usage message of fluent-debug command
|
197
|
+
https://github.com/fluent/fluentd/pull/1920
|
198
|
+
* out_forward: The node should be disabled when TLS socket for ack returns an error
|
199
|
+
https://github.com/fluent/fluentd/pull/1925
|
200
|
+
|
201
|
+
## Release v1.1.2 - 2018/03/18
|
202
|
+
|
203
|
+
### Enhancements
|
204
|
+
|
205
|
+
* filter_grep: Support pattern starts with character classes with //
|
206
|
+
https://github.com/fluent/fluentd/pull/1887
|
207
|
+
|
208
|
+
### Bug fixes
|
209
|
+
|
210
|
+
* in_tail: Handle records in the correct order on file rotation
|
211
|
+
https://github.com/fluent/fluentd/pull/1880
|
212
|
+
* out_forward: Fix race condition with `<security>` on multi thread environment
|
213
|
+
https://github.com/fluent/fluentd/pull/1893
|
214
|
+
* output: Prevent flushing threads consume too much CPU when retry happens
|
215
|
+
https://github.com/fluent/fluentd/pull/1901
|
216
|
+
* config: Fix boolean param handling for comment without value
|
217
|
+
https://github.com/fluent/fluentd/pull/1883
|
218
|
+
* test: Fix random test failures in test/plugin/test_out_forward.rb
|
219
|
+
https://github.com/fluent/fluentd/pull/1881
|
220
|
+
https://github.com/fluent/fluentd/pull/1890
|
221
|
+
* command: Fix typo in binlog_reader
|
222
|
+
https://github.com/fluent/fluentd/pull/1898
|
223
|
+
|
224
|
+
## Release v1.1.1 - 2018/03/05
|
225
|
+
|
226
|
+
### Enhancements
|
227
|
+
|
228
|
+
* in_debug_agent: Support multi worker environment
|
229
|
+
https://github.com/fluent/fluentd/pull/1869
|
230
|
+
* in_forward: Improve SSL setup to support mutual TLS
|
231
|
+
https://github.com/fluent/fluentd/pull/1861
|
232
|
+
* buf_file: Skip and delete broken file chunks to avoid unsuccessful retry in resume
|
233
|
+
https://github.com/fluent/fluentd/pull/1874
|
234
|
+
* command: Show fluentd version for debug purpose
|
235
|
+
https://github.com/fluent/fluentd/pull/1839
|
236
|
+
|
237
|
+
### Bug fixes
|
238
|
+
|
239
|
+
* in_forward: Do not close connection until write is complete on failed auth PONG
|
240
|
+
https://github.com/fluent/fluentd/pull/1835
|
241
|
+
* in_tail: Fix IO event race condition during shutdown
|
242
|
+
https://github.com/fluent/fluentd/pull/1876
|
243
|
+
* in_http: Emit event time instead of raw time value in batch
|
244
|
+
https://github.com/fluent/fluentd/pull/1850
|
245
|
+
* parser_json: Add EncodingError to rescue list for oj 3.x.
|
246
|
+
https://github.com/fluent/fluentd/pull/1875
|
247
|
+
* config: Fix config_param for string type with frozen string
|
248
|
+
https://github.com/fluent/fluentd/pull/1838
|
249
|
+
* timer: Fix a bug to leak non-repeating timer watchers
|
250
|
+
https://github.com/fluent/fluentd/pull/1864
|
251
|
+
|
252
|
+
## Release v1.1.0 - 2018/01/17
|
253
|
+
|
254
|
+
### New features / Enhancements
|
255
|
+
|
256
|
+
* config: Add hostname and worker_id short-cut
|
257
|
+
https://github.com/fluent/fluentd/pull/1814
|
258
|
+
* parser_ltsv: Add delimiter_pattern parameter
|
259
|
+
https://github.com/fluent/fluentd/pull/1802
|
260
|
+
* record_accessor helper: Support nested field deletion
|
261
|
+
https://github.com/fluent/fluentd/pull/1800
|
262
|
+
* record_accessor helper: Expose internal instance `@keys` variable
|
263
|
+
https://github.com/fluent/fluentd/pull/1808
|
264
|
+
* log: Improve Log#on_xxx API performance
|
265
|
+
https://github.com/fluent/fluentd/pull/1809
|
266
|
+
* time: Improve time formatting performance
|
267
|
+
https://github.com/fluent/fluentd/pull/1796
|
268
|
+
* command: Port certificates generating command from secure-forward
|
269
|
+
https://github.com/fluent/fluentd/pull/1818
|
270
|
+
|
271
|
+
### Bug fixes
|
272
|
+
|
273
|
+
* server helper: Fix TCP + TLS degradation
|
274
|
+
https://github.com/fluent/fluentd/pull/1805
|
275
|
+
* time: Fix the method for TimeFormatter#call
|
276
|
+
https://github.com/fluent/fluentd/pull/1813
|
277
|
+
|
278
|
+
# v1.0
|
279
|
+
|
280
|
+
## Release v1.0.2 - 2017/12/17
|
281
|
+
|
282
|
+
### New features / Enhancements
|
283
|
+
|
284
|
+
* Use dig_rb instead of ruby_dig to support dig method in more objects
|
285
|
+
https://github.com/fluent/fluentd/pull/1794
|
286
|
+
|
287
|
+
## Release v1.0.1 - 2017/12/14
|
288
|
+
|
289
|
+
### New features / Enhancements
|
290
|
+
|
291
|
+
* in_udp: Add receive_buffer_size parameter
|
292
|
+
https://github.com/fluent/fluentd/pull/1788
|
293
|
+
* in_tail: Add enable_stat_watcher option to disable inotify events
|
294
|
+
https://github.com/fluent/fluentd/pull/1775
|
295
|
+
* Relax strptime gem version
|
296
|
+
|
297
|
+
### Bug fixes
|
298
|
+
|
299
|
+
* in_tail: Properly handle moved back and truncated case
|
300
|
+
https://github.com/fluent/fluentd/pull/1793
|
301
|
+
* out_forward: Rebuild weight array to apply server setting properly
|
302
|
+
https://github.com/fluent/fluentd/pull/1784
|
303
|
+
* fluent-plugin-config-formatter: Use v1.0 for URL
|
304
|
+
https://github.com/fluent/fluentd/pull/1781
|
305
|
+
|
306
|
+
## Release v1.0.0 - 2017/12/6
|
307
|
+
|
308
|
+
See [CNCF announcment](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
|
309
|
+
|
310
|
+
### New features / Enhancements
|
311
|
+
|
312
|
+
* out_copy: Support ignore_error argument in `<store>`
|
313
|
+
https://github.com/fluent/fluentd/pull/1764
|
314
|
+
* server helper: Improve resource usage of TLS transport
|
315
|
+
https://github.com/fluent/fluentd/pull/1764
|
316
|
+
* Disable tracepoint feature to omit unnecessary insts
|
317
|
+
https://github.com/fluent/fluentd/pull/1764
|
318
|
+
|
319
|
+
### Bug fixes
|
320
|
+
|
321
|
+
* out_forward: Don't update retry state when failed to get ack response.
|
322
|
+
https://github.com/fluent/fluentd/pull/1686
|
323
|
+
* plugin: Combine before_shutdown and shutdown call in one sequence.
|
324
|
+
https://github.com/fluent/fluentd/pull/1763
|
325
|
+
* Add description to parsers
|
326
|
+
https://github.com/fluent/fluentd/pull/1776
|
327
|
+
https://github.com/fluent/fluentd/pull/1777
|
328
|
+
https://github.com/fluent/fluentd/pull/1778
|
329
|
+
https://github.com/fluent/fluentd/pull/1779
|
330
|
+
https://github.com/fluent/fluentd/pull/1780
|
331
|
+
* filter_parser: Add parameter description
|
332
|
+
https://github.com/fluent/fluentd/pull/1773
|
333
|
+
* plugin: Combine before_shutdown and shutdown call in one sequence.
|
334
|
+
https://github.com/fluent/fluentd/pull/1763
|
335
|
+
|
1
336
|
# v0.14
|
2
337
|
|
338
|
+
## Release v0.14.25 - 2017/11/29
|
339
|
+
|
340
|
+
### New features / Enhancements
|
341
|
+
|
342
|
+
* Disable tracepoint feature to omit unnecessary insts
|
343
|
+
https://github.com/fluent/fluentd/pull/1764
|
344
|
+
|
345
|
+
### Bug fixes
|
346
|
+
|
347
|
+
* out_forward: Don't update retry state when failed to get ack response.
|
348
|
+
https://github.com/fluent/fluentd/pull/1686
|
349
|
+
* plugin: Combine before_shutdown and shutdown call in one sequence.
|
350
|
+
https://github.com/fluent/fluentd/pull/1763
|
351
|
+
|
352
|
+
## Release v0.14.24 - 2017/11/24
|
353
|
+
|
354
|
+
### New features / Enhancements
|
355
|
+
|
356
|
+
* plugin-config-formatter: Add link to plugin helper result
|
357
|
+
https://github.com/fluent/fluentd/pull/1753
|
358
|
+
* server helper: Refactor code
|
359
|
+
https://github.com/fluent/fluentd/pull/1759
|
360
|
+
|
361
|
+
### Bug fixes
|
362
|
+
|
363
|
+
* supervisor: Don't call change_privilege twice
|
364
|
+
https://github.com/fluent/fluentd/pull/1757
|
365
|
+
|
366
|
+
## Release v0.14.23 - 2017/11/15
|
367
|
+
|
368
|
+
### New features / Enhancements
|
369
|
+
|
370
|
+
* in_udp: Add remove_newline parameter
|
371
|
+
https://github.com/fluent/fluentd/pull/1747
|
372
|
+
|
373
|
+
### Bug fixes
|
374
|
+
|
375
|
+
* buffer: Lock buffers in order of metadata
|
376
|
+
https://github.com/fluent/fluentd/pull/1722
|
377
|
+
* in_tcp: Fix log corruption under load.
|
378
|
+
https://github.com/fluent/fluentd/pull/1729
|
379
|
+
* out_forward: Fix elapsed time miscalculation in tcp heartbeat
|
380
|
+
https://github.com/fluent/fluentd/pull/1738
|
381
|
+
* supervisor: Fix worker pid handling during worker restart
|
382
|
+
https://github.com/fluent/fluentd/pull/1739
|
383
|
+
* in_tail: Skip setup failed watcher to avoid resource leak and log bloat
|
384
|
+
https://github.com/fluent/fluentd/pull/1742
|
385
|
+
* agent: Add error location to emit error logs
|
386
|
+
https://github.com/fluent/fluentd/pull/1746
|
387
|
+
* command: Consider hyphen and underscore in fluent-plugin-generate arguments
|
388
|
+
https://github.com/fluent/fluentd/pull/1751
|
389
|
+
|
390
|
+
## Release v0.14.22 - 2017/11/01
|
391
|
+
|
392
|
+
### New features / Enhancements
|
393
|
+
|
394
|
+
* formatter_tsv: Add add_newline parameter
|
395
|
+
https://github.com/fluent/fluentd/pull/1691
|
396
|
+
* out_file/out_secondary_file: Support ${chunk_id} placeholder. This includes extrace_placeholders API change
|
397
|
+
https://github.com/fluent/fluentd/pull/1708
|
398
|
+
* record_accessor: Support double quotes in bracket notation
|
399
|
+
https://github.com/fluent/fluentd/pull/1716
|
400
|
+
* log: Show running ruby version in startup log
|
401
|
+
https://github.com/fluent/fluentd/pull/1717
|
402
|
+
* log: Log message when chunk is created
|
403
|
+
https://github.com/fluent/fluentd/pull/1718
|
404
|
+
* in_tail: Add pos_file duplication check
|
405
|
+
https://github.com/fluent/fluentd/pull/1720
|
406
|
+
|
407
|
+
### Bug fixes
|
408
|
+
|
409
|
+
* parser_apache2: Delay time parser initialization
|
410
|
+
https://github.com/fluent/fluentd/pull/1690
|
411
|
+
* cert_option: Improve generated certificates' conformance to X.509 specification
|
412
|
+
https://github.com/fluent/fluentd/pull/1714
|
413
|
+
* buffer: Always lock chunks first to avoid deadlock
|
414
|
+
https://github.com/fluent/fluentd/pull/1721
|
415
|
+
|
416
|
+
## Release v0.14.21 - 2017/09/07
|
417
|
+
|
418
|
+
### New features / Enhancements
|
419
|
+
|
420
|
+
* filter_parser: Support record_accessor in key_name
|
421
|
+
https://github.com/fluent/fluentd/pull/1654
|
422
|
+
* buffer: Support record_accessor in chunk keys
|
423
|
+
https://github.com/fluent/fluentd/pull/1662
|
424
|
+
|
425
|
+
### Bug fixes
|
426
|
+
|
427
|
+
* compat_parameters: Support all syslog parser parameters
|
428
|
+
https://github.com/fluent/fluentd/pull/1650
|
429
|
+
* filter_record_transformer: Don't create new keys if the original record doesn't have `keep_keys` keys
|
430
|
+
https://github.com/fluent/fluentd/pull/1663
|
431
|
+
* in_tail: Fix the error when 'tag *' is configured
|
432
|
+
https://github.com/fluent/fluentd/pull/1664
|
433
|
+
* supervisor: Clear previous worker pids when receive kill signals.
|
434
|
+
https://github.com/fluent/fluentd/pull/1683
|
435
|
+
|
436
|
+
## Release v0.14.20 - 2017/07/31
|
437
|
+
|
438
|
+
### New features / Enhancements
|
439
|
+
|
440
|
+
* plugin: Add record_accessor plugin helper
|
441
|
+
https://github.com/fluent/fluentd/pull/1637
|
442
|
+
* log: Add format and time_format parameters to `<system>` setting
|
443
|
+
https://github.com/fluent/fluentd/pull/1644
|
444
|
+
|
445
|
+
### Bug fixes
|
446
|
+
|
447
|
+
* buf_file: Improve file handling to mitigate broken meta file
|
448
|
+
https://github.com/fluent/fluentd/pull/1628
|
449
|
+
* in_syslog: Fix the description of resolve_hostname parameter
|
450
|
+
https://github.com/fluent/fluentd/pull/1633
|
451
|
+
* process: Fix signal handling. Send signal to all workers
|
452
|
+
https://github.com/fluent/fluentd/pull/1642
|
453
|
+
* output: Fix error message typo
|
454
|
+
https://github.com/fluent/fluentd/pull/1643
|
455
|
+
|
456
|
+
## Release v0.14.19 - 2017/07/12
|
457
|
+
|
458
|
+
### New features / Enhancements
|
459
|
+
|
460
|
+
* in_syslog: More characters are available in tag part of syslog format
|
461
|
+
https://github.com/fluent/fluentd/pull/1610
|
462
|
+
* in_syslog: Add resolve_hostname parameter
|
463
|
+
https://github.com/fluent/fluentd/pull/1616
|
464
|
+
* filter_grep: Support new configuration format by config_section
|
465
|
+
https://github.com/fluent/fluentd/pull/1611
|
466
|
+
|
467
|
+
### Bug fixes
|
468
|
+
|
469
|
+
* output: Fix race condition of retry state in flush thread
|
470
|
+
https://github.com/fluent/fluentd/pull/1623
|
471
|
+
* test: Fix typo in test_in_tail.rb
|
472
|
+
https://github.com/fluent/fluentd/pull/1622
|
473
|
+
|
474
|
+
## Release v0.14.18 - 2017/06/21
|
475
|
+
|
476
|
+
### New features / Enhancements
|
477
|
+
|
478
|
+
* parser: Add rfc5424 regex without priority
|
479
|
+
https://github.com/fluent/fluentd/pull/1600
|
480
|
+
|
481
|
+
### Bug fixes
|
482
|
+
|
483
|
+
* in_tail: Fix timing issue that the excluded_path doesn't apply.
|
484
|
+
https://github.com/fluent/fluentd/pull/1597
|
485
|
+
* config: Fix broken UTF-8 encoded configuration file handling
|
486
|
+
https://github.com/fluent/fluentd/pull/1592
|
487
|
+
* out_forward: Don't stop heartbeat when error happen
|
488
|
+
https://github.com/fluent/fluentd/pull/1602
|
489
|
+
* Fix command name typo in plugin template
|
490
|
+
https://github.com/fluent/fluentd/pull/1603
|
491
|
+
|
3
492
|
## Release v0.14.17 - 2017/05/29
|
4
493
|
|
5
494
|
### New features / Enhancements
|
@@ -44,7 +533,7 @@
|
|
44
533
|
|
45
534
|
### New features / Enhancements
|
46
535
|
|
47
|
-
* Add
|
536
|
+
* Add `<worker N>` directive
|
48
537
|
https://github.com/fluent/fluentd/pull/1507
|
49
538
|
* in_tail: Do not warn that directories are unreadable in the in_tail plugin
|
50
539
|
https://github.com/fluent/fluentd/pull/1540
|
@@ -99,7 +588,7 @@
|
|
99
588
|
https://github.com/fluent/fluentd/pull/1477
|
100
589
|
* Fix Input and Output deadlock when buffer is full during startup
|
101
590
|
https://github.com/fluent/fluentd/pull/1502
|
102
|
-
* config: Fix log_level handling in
|
591
|
+
* config: Fix log_level handling in `<system>`
|
103
592
|
https://github.com/fluent/fluentd/pull/1501
|
104
593
|
* Fix typo in root agent error log
|
105
594
|
https://github.com/fluent/fluentd/pull/1491
|
@@ -194,7 +683,7 @@
|
|
194
683
|
## Release v0.14.11 - 2016/12/26
|
195
684
|
|
196
685
|
### New features / Enhancements
|
197
|
-
* Add "root_dir" parameter in
|
686
|
+
* Add "root_dir" parameter in `<system>` directive to configure server root directory, used for buffer/storage paths
|
198
687
|
https://github.com/fluent/fluentd/pull/1374
|
199
688
|
* Fix not to restart Fluentd processes when unrecoverable errors occur
|
200
689
|
https://github.com/fluent/fluentd/pull/1359
|
@@ -322,7 +811,7 @@
|
|
322
811
|
https://github.com/fluent/fluentd/pull/1207
|
323
812
|
* Add a feature to parse/format numeric time (unix time [+ subsecond value])
|
324
813
|
https://github.com/fluent/fluentd/pull/1254
|
325
|
-
* Raise configuration errors for inconsistent
|
814
|
+
* Raise configuration errors for inconsistent `<label>` configurations
|
326
815
|
https://github.com/fluent/fluentd/pull/1233
|
327
816
|
* Fix to instantiate an unconfigured section even for multi: true
|
328
817
|
https://github.com/fluent/fluentd/pull/1210
|
@@ -648,7 +1137,7 @@ This list includes changes of 0.14.0.pre.1 and release candidates.
|
|
648
1137
|
https://github.com/fluent/fluentd/pull/838
|
649
1138
|
* Move TypeConverter mixin to mixin.rb
|
650
1139
|
https://github.com/fluent/fluentd/pull/842
|
651
|
-
* Override default configurations by
|
1140
|
+
* Override default configurations by `<system>`
|
652
1141
|
https://github.com/fluent/fluentd/pull/854
|
653
1142
|
* Suppress Ruby level warnings
|
654
1143
|
https://github.com/fluent/fluentd/pull/846
|
@@ -658,4 +1147,4 @@ This list includes changes of 0.14.0.pre.1 and release candidates.
|
|
658
1147
|
https://github.com/fluent/fluentd/pull/955
|
659
1148
|
https://github.com/fluent/fluentd/pull/966
|
660
1149
|
|
661
|
-
See https://github.com/fluent/fluentd/blob/v0.12/
|
1150
|
+
See https://github.com/fluent/fluentd/blob/v0.12/CHANGELOG.md for v0.12 changelog
|