Skip to content

Commit

Permalink
Update fluent-bit submodule to v1.7.4. (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
qingling128 authored Apr 22, 2021
1 parent d3cce4a commit 2c14157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/fluent-bit
Submodule fluent-bit updated 93 files
+80 −0 .github/workflows/unit-tests.yaml
+0 −92 .travis.yml
+7 −1 CMakeLists.txt
+2 −2 Dockerfile
+8 −2 README.md
+2 −2 appveyor.yml
+2 −2 ci/do-ut.ps1
+6 −1 conf/parsers_extra.conf
+1 −1 fluent-bit_1.7.4.bb
+2 −0 include/fluent-bit/flb_coro.h
+10 −1 include/fluent-bit/flb_input.h
+3 −0 include/fluent-bit/flb_mp.h
+17 −9 include/fluent-bit/flb_output.h
+8 −0 include/fluent-bit/flb_output_thread.h
+1 −1 include/fluent-bit/flb_storage.h
+1 −1 lib/chunkio/CMakeLists.txt
+5 −4 lib/chunkio/include/chunkio/chunkio.h
+7 −0 lib/chunkio/include/chunkio/cio_chunk.h
+9 −5 lib/chunkio/include/chunkio/cio_stream.h
+10 −0 lib/chunkio/src/chunkio.c
+45 −4 lib/chunkio/src/cio_chunk.c
+11 −4 lib/chunkio/src/cio_file.c
+1 −1 lib/chunkio/src/cio_scan.c
+45 −0 lib/chunkio/src/cio_stream.c
+97 −0 lib/chunkio/tests/fs.c
+8 −2 lib/monkey/mk_core/mk_event_epoll.c
+13 −1 plugins/filter_kubernetes/kube_conf.c
+7 −0 plugins/filter_kubernetes/kube_conf.h
+322 −78 plugins/filter_kubernetes/kube_meta.c
+1 −0 plugins/filter_kubernetes/kube_meta.h
+17 −3 plugins/filter_kubernetes/kubernetes.c
+36 −4 plugins/in_dummy/in_dummy.c
+31 −16 plugins/in_storage_backlog/sb.c
+7 −0 plugins/in_tail/tail.c
+1 −0 plugins/in_tail/tail_config.h
+11 −7 plugins/in_tail/tail_db.c
+1 −1 plugins/in_tail/tail_file.c
+7 −2 plugins/in_winlog/pack.c
+101 −13 plugins/out_es/es.c
+6 −0 plugins/out_es/es.h
+2 −0 plugins/out_es/es_bulk.h
+15 −0 plugins/out_es/es_conf.c
+9 −2 plugins/out_http/http.c
+3 −0 plugins/out_http/http.h
+43 −2 plugins/out_influxdb/influxdb.c
+13 −0 plugins/out_influxdb/influxdb.h
+64 −3 plugins/out_s3/s3.c
+4 −0 plugins/out_s3/s3.h
+28 −1 plugins/out_s3/s3_multipart.c
+8 −2 plugins/out_splunk/splunk.c
+9 −27 plugins/out_splunk/splunk_conf.c
+14 −2 plugins/out_stackdriver/stackdriver.c
+3 −0 plugins/out_stackdriver/stackdriver.h
+16 −0 plugins/out_stackdriver/stackdriver_conf.c
+1 −1 snap/snapcraft.yaml
+3 −1 src/aws/flb_aws_credentials_ec2.c
+3 −1 src/aws/flb_aws_credentials_http.c
+24 −5 src/aws/flb_aws_util.c
+14 −0 src/flb_coro.c
+1 −0 src/flb_engine_dispatch.c
+5 −0 src/flb_gzip.c
+5 −3 src/flb_http_client.c
+135 −31 src/flb_input_chunk.c
+2 −2 src/flb_io.c
+86 −0 src/flb_mp.c
+13 −4 src/flb_network.c
+1 −0 src/flb_oauth2.c
+4 −2 src/flb_output.c
+32 −0 src/flb_output_thread.c
+6 −0 src/flb_pack.c
+12 −3 src/flb_record_accessor.c
+5 −7 src/flb_scheduler.c
+3 −0 src/flb_sds.c
+15 −12 src/flb_storage.c
+9 −1 src/flb_task.c
+63 −11 src/flb_upstream.c
+3 −21 src/flb_utils.c
+1 −1 tests/internal/data/pack/mixed_002.json
+1 −1 tests/internal/data/pack/mixed_003.json
+1 −1 tests/internal/data/pack/utf8_bell.json
+1 −1 tests/internal/data/pack/utf8_copyright.json
+1 −1 tests/internal/data/pack/utf8_hokke.json
+1 −1 tests/internal/data/pack/utf8_relaxed.json
+56 −0 tests/internal/record_accessor.c
+3 −2 tests/internal/utils.c
+1 −0 tests/runtime/data/kubernetes/log/options/options_use-kubelet-disabled_fluent-bit.log
+1 −0 tests/runtime/data/kubernetes/log/options/options_use-kubelet-enabled_fluent-bit.log
+116 −0 tests/runtime/data/kubernetes/meta/options_use-kubelet-disabled.meta
+109 −0 tests/runtime/data/kubernetes/meta/options_use-kubelet-enabled.meta
+1 −0 tests/runtime/data/kubernetes/out/options/options_use-kubelet-disabled_fluent-bit.out
+1 −0 tests/runtime/data/kubernetes/out/options/options_use-kubelet-enabled_fluent-bit.out
+27 −0 tests/runtime/filter_kubernetes.c
+57 −0 tests/runtime/out_elasticsearch.c

0 comments on commit 2c14157

Please sign in to comment.