fluentd 1.16.4-x86-mingw32 → 1.17.0-x86-mingw32
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: x86-mingw32
|
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: win32-service
|
205
247
|
requirement: !ruby/object:Gem::Requirement
|
@@ -416,6 +458,48 @@ dependencies:
|
|
416
458
|
- - ">="
|
417
459
|
- !ruby/object:Gem::Version
|
418
460
|
version: 0.50.0
|
461
|
+
- !ruby/object:Gem::Dependency
|
462
|
+
name: aws-sigv4
|
463
|
+
requirement: !ruby/object:Gem::Requirement
|
464
|
+
requirements:
|
465
|
+
- - "~>"
|
466
|
+
- !ruby/object:Gem::Version
|
467
|
+
version: '1.8'
|
468
|
+
type: :development
|
469
|
+
prerelease: false
|
470
|
+
version_requirements: !ruby/object:Gem::Requirement
|
471
|
+
requirements:
|
472
|
+
- - "~>"
|
473
|
+
- !ruby/object:Gem::Version
|
474
|
+
version: '1.8'
|
475
|
+
- !ruby/object:Gem::Dependency
|
476
|
+
name: aws-sdk-core
|
477
|
+
requirement: !ruby/object:Gem::Requirement
|
478
|
+
requirements:
|
479
|
+
- - "~>"
|
480
|
+
- !ruby/object:Gem::Version
|
481
|
+
version: '3.191'
|
482
|
+
type: :development
|
483
|
+
prerelease: false
|
484
|
+
version_requirements: !ruby/object:Gem::Requirement
|
485
|
+
requirements:
|
486
|
+
- - "~>"
|
487
|
+
- !ruby/object:Gem::Version
|
488
|
+
version: '3.191'
|
489
|
+
- !ruby/object:Gem::Dependency
|
490
|
+
name: rexml
|
491
|
+
requirement: !ruby/object:Gem::Requirement
|
492
|
+
requirements:
|
493
|
+
- - "~>"
|
494
|
+
- !ruby/object:Gem::Version
|
495
|
+
version: '3.2'
|
496
|
+
type: :development
|
497
|
+
prerelease: false
|
498
|
+
version_requirements: !ruby/object:Gem::Requirement
|
499
|
+
requirements:
|
500
|
+
- - "~>"
|
501
|
+
- !ruby/object:Gem::Version
|
502
|
+
version: '3.2'
|
419
503
|
description: Fluentd is an open source data collector designed to scale and simplify
|
420
504
|
log management. It can collect, process and ship many kinds of data in near real-time.
|
421
505
|
email:
|
@@ -435,12 +519,15 @@ extensions: []
|
|
435
519
|
extra_rdoc_files: []
|
436
520
|
files:
|
437
521
|
- ".deepsource.toml"
|
522
|
+
- ".github/DISCUSSION_TEMPLATE/q-a-japanese.yml"
|
523
|
+
- ".github/DISCUSSION_TEMPLATE/q-a.yml"
|
438
524
|
- ".github/ISSUE_TEMPLATE.md"
|
439
525
|
- ".github/ISSUE_TEMPLATE/bug_report.yml"
|
440
526
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
441
527
|
- ".github/ISSUE_TEMPLATE/feature_request.yml"
|
442
528
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
443
529
|
- ".github/workflows/stale-actions.yml"
|
530
|
+
- ".github/workflows/test-ruby-head.yml"
|
444
531
|
- ".github/workflows/test.yml"
|
445
532
|
- ".gitignore"
|
446
533
|
- ADOPTERS.md
|
@@ -812,6 +899,10 @@ files:
|
|
812
899
|
- test/plugin/data/log/foo/bar.log
|
813
900
|
- test/plugin/data/log/foo/bar2
|
814
901
|
- test/plugin/data/log/test.log
|
902
|
+
- test/plugin/data/log_numeric/01.log
|
903
|
+
- test/plugin/data/log_numeric/02.log
|
904
|
+
- test/plugin/data/log_numeric/12.log
|
905
|
+
- test/plugin/data/log_numeric/14.log
|
815
906
|
- test/plugin/data/sd_file/config
|
816
907
|
- test/plugin/data/sd_file/config.json
|
817
908
|
- test/plugin/data/sd_file/config.yaml
|
@@ -896,6 +987,7 @@ files:
|
|
896
987
|
- test/plugin/test_parser_csv.rb
|
897
988
|
- test/plugin/test_parser_json.rb
|
898
989
|
- test/plugin/test_parser_labeled_tsv.rb
|
990
|
+
- test/plugin/test_parser_msgpack.rb
|
899
991
|
- test/plugin/test_parser_multiline.rb
|
900
992
|
- test/plugin/test_parser_nginx.rb
|
901
993
|
- test/plugin/test_parser_none.rb
|
@@ -1005,14 +1097,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1005
1097
|
requirements:
|
1006
1098
|
- - ">="
|
1007
1099
|
- !ruby/object:Gem::Version
|
1008
|
-
version: '2.
|
1100
|
+
version: '2.7'
|
1009
1101
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1010
1102
|
requirements:
|
1011
1103
|
- - ">="
|
1012
1104
|
- !ruby/object:Gem::Version
|
1013
1105
|
version: '0'
|
1014
1106
|
requirements: []
|
1015
|
-
rubygems_version: 3.4.
|
1107
|
+
rubygems_version: 3.4.13
|
1016
1108
|
signing_key:
|
1017
1109
|
specification_version: 4
|
1018
1110
|
summary: Fluentd event collector
|
@@ -1055,6 +1147,10 @@ test_files:
|
|
1055
1147
|
- test/plugin/data/log/foo/bar.log
|
1056
1148
|
- test/plugin/data/log/foo/bar2
|
1057
1149
|
- test/plugin/data/log/test.log
|
1150
|
+
- test/plugin/data/log_numeric/01.log
|
1151
|
+
- test/plugin/data/log_numeric/02.log
|
1152
|
+
- test/plugin/data/log_numeric/12.log
|
1153
|
+
- test/plugin/data/log_numeric/14.log
|
1058
1154
|
- test/plugin/data/sd_file/config
|
1059
1155
|
- test/plugin/data/sd_file/config.json
|
1060
1156
|
- test/plugin/data/sd_file/config.yaml
|
@@ -1139,6 +1235,7 @@ test_files:
|
|
1139
1235
|
- test/plugin/test_parser_csv.rb
|
1140
1236
|
- test/plugin/test_parser_json.rb
|
1141
1237
|
- test/plugin/test_parser_labeled_tsv.rb
|
1238
|
+
- test/plugin/test_parser_msgpack.rb
|
1142
1239
|
- test/plugin/test_parser_multiline.rb
|
1143
1240
|
- test/plugin/test_parser_nginx.rb
|
1144
1241
|
- test/plugin/test_parser_none.rb
|