fluentd 1.16.4 → 1.17.0
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.
- checksums.yaml +4 -4
- data/.github/DISCUSSION_TEMPLATE/q-a-japanese.yml +50 -0
- data/.github/DISCUSSION_TEMPLATE/q-a.yml +47 -0
- data/.github/workflows/test-ruby-head.yml +31 -0
- data/.github/workflows/test.yml +3 -3
- data/CHANGELOG.md +50 -0
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/fluentd.gemspec +9 -1
- data/lib/fluent/command/binlog_reader.rb +1 -1
- data/lib/fluent/config/configure_proxy.rb +2 -2
- data/lib/fluent/config/types.rb +1 -1
- data/lib/fluent/configurable.rb +2 -2
- data/lib/fluent/counter/mutex_hash.rb +1 -1
- data/lib/fluent/fluent_log_event_router.rb +0 -2
- data/lib/fluent/plugin/buf_file.rb +1 -1
- data/lib/fluent/plugin/buffer/file_chunk.rb +1 -1
- data/lib/fluent/plugin/buffer/file_single_chunk.rb +2 -3
- data/lib/fluent/plugin/buffer.rb +75 -68
- data/lib/fluent/plugin/filter_parser.rb +26 -8
- data/lib/fluent/plugin/in_http.rb +18 -53
- data/lib/fluent/plugin/in_tail.rb +34 -2
- data/lib/fluent/plugin/out_http.rb +125 -13
- data/lib/fluent/plugin/owned_by_mixin.rb +0 -1
- data/lib/fluent/plugin/parser_json.rb +22 -5
- data/lib/fluent/plugin/parser_msgpack.rb +24 -3
- data/lib/fluent/plugin_helper/metrics.rb +2 -2
- data/lib/fluent/registry.rb +6 -6
- data/lib/fluent/test/output_test.rb +1 -1
- data/lib/fluent/unique_id.rb +1 -1
- data/lib/fluent/version.rb +1 -1
- data/test/log/test_console_adapter.rb +10 -3
- data/test/plugin/data/log_numeric/01.log +0 -0
- data/test/plugin/data/log_numeric/02.log +0 -0
- data/test/plugin/data/log_numeric/12.log +0 -0
- data/test/plugin/data/log_numeric/14.log +0 -0
- data/test/plugin/test_buffer.rb +59 -0
- data/test/plugin/test_in_http.rb +23 -1
- data/test/plugin/test_in_tail.rb +141 -0
- data/test/plugin/test_out_http.rb +128 -0
- data/test/plugin/test_owned_by.rb +0 -1
- data/test/plugin/test_parser_json.rb +106 -0
- data/test/plugin/test_parser_msgpack.rb +127 -0
- data/test/plugin/test_storage.rb +0 -1
- data/test/plugin_helper/test_child_process.rb +4 -4
- metadata +101 -4
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluentd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-04-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -200,6 +200,48 @@ dependencies:
|
|
|
200
200
|
- - "~>"
|
|
201
201
|
- !ruby/object:Gem::Version
|
|
202
202
|
version: '1.4'
|
|
203
|
+
- !ruby/object:Gem::Dependency
|
|
204
|
+
name: base64
|
|
205
|
+
requirement: !ruby/object:Gem::Requirement
|
|
206
|
+
requirements:
|
|
207
|
+
- - "~>"
|
|
208
|
+
- !ruby/object:Gem::Version
|
|
209
|
+
version: '0.2'
|
|
210
|
+
type: :runtime
|
|
211
|
+
prerelease: false
|
|
212
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
213
|
+
requirements:
|
|
214
|
+
- - "~>"
|
|
215
|
+
- !ruby/object:Gem::Version
|
|
216
|
+
version: '0.2'
|
|
217
|
+
- !ruby/object:Gem::Dependency
|
|
218
|
+
name: csv
|
|
219
|
+
requirement: !ruby/object:Gem::Requirement
|
|
220
|
+
requirements:
|
|
221
|
+
- - "~>"
|
|
222
|
+
- !ruby/object:Gem::Version
|
|
223
|
+
version: '3.2'
|
|
224
|
+
type: :runtime
|
|
225
|
+
prerelease: false
|
|
226
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
227
|
+
requirements:
|
|
228
|
+
- - "~>"
|
|
229
|
+
- !ruby/object:Gem::Version
|
|
230
|
+
version: '3.2'
|
|
231
|
+
- !ruby/object:Gem::Dependency
|
|
232
|
+
name: drb
|
|
233
|
+
requirement: !ruby/object:Gem::Requirement
|
|
234
|
+
requirements:
|
|
235
|
+
- - "~>"
|
|
236
|
+
- !ruby/object:Gem::Version
|
|
237
|
+
version: '2.2'
|
|
238
|
+
type: :runtime
|
|
239
|
+
prerelease: false
|
|
240
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
241
|
+
requirements:
|
|
242
|
+
- - "~>"
|
|
243
|
+
- !ruby/object:Gem::Version
|
|
244
|
+
version: '2.2'
|
|
203
245
|
- !ruby/object:Gem::Dependency
|
|
204
246
|
name: rake
|
|
205
247
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -360,6 +402,48 @@ dependencies:
|
|
|
360
402
|
- - ">="
|
|
361
403
|
- !ruby/object:Gem::Version
|
|
362
404
|
version: 0.50.0
|
|
405
|
+
- !ruby/object:Gem::Dependency
|
|
406
|
+
name: aws-sigv4
|
|
407
|
+
requirement: !ruby/object:Gem::Requirement
|
|
408
|
+
requirements:
|
|
409
|
+
- - "~>"
|
|
410
|
+
- !ruby/object:Gem::Version
|
|
411
|
+
version: '1.8'
|
|
412
|
+
type: :development
|
|
413
|
+
prerelease: false
|
|
414
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
415
|
+
requirements:
|
|
416
|
+
- - "~>"
|
|
417
|
+
- !ruby/object:Gem::Version
|
|
418
|
+
version: '1.8'
|
|
419
|
+
- !ruby/object:Gem::Dependency
|
|
420
|
+
name: aws-sdk-core
|
|
421
|
+
requirement: !ruby/object:Gem::Requirement
|
|
422
|
+
requirements:
|
|
423
|
+
- - "~>"
|
|
424
|
+
- !ruby/object:Gem::Version
|
|
425
|
+
version: '3.191'
|
|
426
|
+
type: :development
|
|
427
|
+
prerelease: false
|
|
428
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
429
|
+
requirements:
|
|
430
|
+
- - "~>"
|
|
431
|
+
- !ruby/object:Gem::Version
|
|
432
|
+
version: '3.191'
|
|
433
|
+
- !ruby/object:Gem::Dependency
|
|
434
|
+
name: rexml
|
|
435
|
+
requirement: !ruby/object:Gem::Requirement
|
|
436
|
+
requirements:
|
|
437
|
+
- - "~>"
|
|
438
|
+
- !ruby/object:Gem::Version
|
|
439
|
+
version: '3.2'
|
|
440
|
+
type: :development
|
|
441
|
+
prerelease: false
|
|
442
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
443
|
+
requirements:
|
|
444
|
+
- - "~>"
|
|
445
|
+
- !ruby/object:Gem::Version
|
|
446
|
+
version: '3.2'
|
|
363
447
|
description: Fluentd is an open source data collector designed to scale and simplify
|
|
364
448
|
log management. It can collect, process and ship many kinds of data in near real-time.
|
|
365
449
|
email:
|
|
@@ -379,12 +463,15 @@ extensions: []
|
|
|
379
463
|
extra_rdoc_files: []
|
|
380
464
|
files:
|
|
381
465
|
- ".deepsource.toml"
|
|
466
|
+
- ".github/DISCUSSION_TEMPLATE/q-a-japanese.yml"
|
|
467
|
+
- ".github/DISCUSSION_TEMPLATE/q-a.yml"
|
|
382
468
|
- ".github/ISSUE_TEMPLATE.md"
|
|
383
469
|
- ".github/ISSUE_TEMPLATE/bug_report.yml"
|
|
384
470
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
385
471
|
- ".github/ISSUE_TEMPLATE/feature_request.yml"
|
|
386
472
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
387
473
|
- ".github/workflows/stale-actions.yml"
|
|
474
|
+
- ".github/workflows/test-ruby-head.yml"
|
|
388
475
|
- ".github/workflows/test.yml"
|
|
389
476
|
- ".gitignore"
|
|
390
477
|
- ADOPTERS.md
|
|
@@ -756,6 +843,10 @@ files:
|
|
|
756
843
|
- test/plugin/data/log/foo/bar.log
|
|
757
844
|
- test/plugin/data/log/foo/bar2
|
|
758
845
|
- test/plugin/data/log/test.log
|
|
846
|
+
- test/plugin/data/log_numeric/01.log
|
|
847
|
+
- test/plugin/data/log_numeric/02.log
|
|
848
|
+
- test/plugin/data/log_numeric/12.log
|
|
849
|
+
- test/plugin/data/log_numeric/14.log
|
|
759
850
|
- test/plugin/data/sd_file/config
|
|
760
851
|
- test/plugin/data/sd_file/config.json
|
|
761
852
|
- test/plugin/data/sd_file/config.yaml
|
|
@@ -840,6 +931,7 @@ files:
|
|
|
840
931
|
- test/plugin/test_parser_csv.rb
|
|
841
932
|
- test/plugin/test_parser_json.rb
|
|
842
933
|
- test/plugin/test_parser_labeled_tsv.rb
|
|
934
|
+
- test/plugin/test_parser_msgpack.rb
|
|
843
935
|
- test/plugin/test_parser_multiline.rb
|
|
844
936
|
- test/plugin/test_parser_nginx.rb
|
|
845
937
|
- test/plugin/test_parser_none.rb
|
|
@@ -949,14 +1041,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
949
1041
|
requirements:
|
|
950
1042
|
- - ">="
|
|
951
1043
|
- !ruby/object:Gem::Version
|
|
952
|
-
version: '2.
|
|
1044
|
+
version: '2.7'
|
|
953
1045
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
954
1046
|
requirements:
|
|
955
1047
|
- - ">="
|
|
956
1048
|
- !ruby/object:Gem::Version
|
|
957
1049
|
version: '0'
|
|
958
1050
|
requirements: []
|
|
959
|
-
rubygems_version: 3.4.
|
|
1051
|
+
rubygems_version: 3.4.13
|
|
960
1052
|
signing_key:
|
|
961
1053
|
specification_version: 4
|
|
962
1054
|
summary: Fluentd event collector
|
|
@@ -999,6 +1091,10 @@ test_files:
|
|
|
999
1091
|
- test/plugin/data/log/foo/bar.log
|
|
1000
1092
|
- test/plugin/data/log/foo/bar2
|
|
1001
1093
|
- test/plugin/data/log/test.log
|
|
1094
|
+
- test/plugin/data/log_numeric/01.log
|
|
1095
|
+
- test/plugin/data/log_numeric/02.log
|
|
1096
|
+
- test/plugin/data/log_numeric/12.log
|
|
1097
|
+
- test/plugin/data/log_numeric/14.log
|
|
1002
1098
|
- test/plugin/data/sd_file/config
|
|
1003
1099
|
- test/plugin/data/sd_file/config.json
|
|
1004
1100
|
- test/plugin/data/sd_file/config.yaml
|
|
@@ -1083,6 +1179,7 @@ test_files:
|
|
|
1083
1179
|
- test/plugin/test_parser_csv.rb
|
|
1084
1180
|
- test/plugin/test_parser_json.rb
|
|
1085
1181
|
- test/plugin/test_parser_labeled_tsv.rb
|
|
1182
|
+
- test/plugin/test_parser_msgpack.rb
|
|
1086
1183
|
- test/plugin/test_parser_multiline.rb
|
|
1087
1184
|
- test/plugin/test_parser_nginx.rb
|
|
1088
1185
|
- test/plugin/test_parser_none.rb
|