Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump fluentd and fluent-plugin-kubernetes_metadata_filter in /fluentd #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 23, 2023

Bumps fluentd and fluent-plugin-kubernetes_metadata_filter. These dependencies needed to be updated together.
Updates fluentd from 1.9.3 to 1.16.2

Release notes

Sourced from fluentd's releases.

Fluentd v1.16.2

Bug Fix

  • #4208 in_tail: Fix new watcher is wrongly detached on rotation when follow_inodes, which causes stopping tailing the file
  • #4237 in_tail: Prevent wrongly unwatching when follow_inodes, which causes log duplication
  • #4214 in_tail: Fix warning log about overwriting entry when follow_inodes
  • #4239 in_tail: Ensure to discard TailWatcher with missing target when follow_inodes
  • #4178 MessagePackFactory: Make sure to reset local unpacker to prevent received broken data from affecting other receiving data
  • #4188 Fix failure to launch Fluentd on Windows when the log path isn't specified in the command line
  • #4229 logger: Prevent growing cache size of ignore_same_log_interval unlimitedly
  • #4225 Update sigdump to 0.2.5 to fix wrong value of object counts

Misc

  • #4191 in_tail: Check detaching inode when follow_inodes
  • #4228 in_tail: Add debug log for pos file compaction
  • #4201 #4210 Code improvements detected by RuboCop Performance
  • #4159 Add notice for unused argument unpacker of ChunkMessagePackEventStreamer.each

Contributors to this release (Alphabetical order)

  • Christian Menges
  • Daijiro Fukuda
  • Gary Zhu
  • Katuya Kawakami
  • Masaki Hatada
  • Takuro Ashie

Fluentd v1.16.1

Enhancement

  • #4137 in_tcp: Add message_length_limit to drop large incoming data

Bug Fix

  • #4124 Fix NameError of SecondaryFileOutput when setting secondary other than out_secondary_file
  • #4131 Server helper: Suppress error of UDPServer over max_bytes on Windows
  • #4147 Buffer: Fix that compress setting causes unexpected error when receiving already compressed MessagePack

Misc

  • #4119 Update MAINTAINERS.md
  • #4123 Update security policy
  • #4128 Plugin template: Remove unnecessary code
  • #4116 Revive issue auto closer
  • #4145 Fix a link for the repository of td-agent
  • #4117 in_udp: add test of message_length_limit
  • #4148 Fix a typo of an argument of Fluent::EventStream#each
  • #4138 Test in_tcp: Fix undesirable way to assert logs

... (truncated)

Changelog

Sourced from fluentd's changelog.

Release v1.16.2 - 2023/07/14

Bug Fix

  • in_tail: Fix new watcher is wrongly detached on rotation when follow_inodes, which causes stopping tailing the file fluent/fluentd#4208
  • in_tail: Prevent wrongly unwatching when follow_inodes, which causes log duplication fluent/fluentd#4237
  • in_tail: Fix warning log about overwriting entry when follow_inodes fluent/fluentd#4214
  • in_tail: Ensure to discard TailWatcher with missing target when follow_inodes fluent/fluentd#4239
  • MessagePackFactory: Make sure to reset local unpacker to prevent received broken data from affecting other receiving data fluent/fluentd#4178
  • Fix failure to launch Fluentd on Windows when the log path isn't specified in the command line fluent/fluentd#4188
  • logger: Prevent growing cache size of ignore_same_log_interval unlimitedly fluent/fluentd#4229
  • Update sigdump to 0.2.5 to fix wrong value of object counts fluent/fluentd#4225

Misc

Release v1.16.1 - 2023/04/17

Enhancement

Bug Fix

  • Fix NameError of SecondaryFileOutput when setting secondary other than out_secondary_file fluent/fluentd#4124
  • Server helper: Suppress error of UDPServer over max_bytes on Windows

... (truncated)

Commits
  • d5685ad v1.16.2
  • 32082ea Merge pull request #4239 from daipom/in_tail-ensure-discard-watcher-with-miss...
  • 781e313 in_tail: Ensure to discard TailWatcher with missing target when follow_inodes
  • d05f592 Merge pull request #4237 from daipom/in_tail-prevent-wrongly-unwatching-2
  • 51848da in_tail: prevent wrongly unwatching with follow_inodes
  • e120693 Merge pull request #4159 from daipom/fix-ChunkMessagePackEventStreamer-invali...
  • 5121054 Fix ChunkMessagePackEventStreamer's invalid argument
  • aaa40f7 Merge pull request #4228 from daipom/in_tail-add-debug-log-for-pos-file-compa...
  • 09617b4 Merge pull request #4229 from daipom/fix-log-cache-growing-unlimitedly
  • 82fc146 logger: Fix cache growing unlimitedly
  • Additional commits viewable in compare view

Updates fluent-plugin-kubernetes_metadata_filter from 2.4.6 to 3.2.0

Changelog

Sourced from fluent-plugin-kubernetes_metadata_filter's changelog.

Release Notes

2.9.4

As of this release, the 'de_dot' functionality is depricated and will be removed in future releases. Ref: fabric8io/fluent-plugin-kubernetes_metadata_filter#320

v2.1.4

The use of use_journal is DEPRECATED. If this setting is not present, the plugin will attempt to figure out the source of the metadata fields from the following:

  • If lookup_from_k8s_field true (the default) and the following fields are present in the record: docker.container_id, kubernetes.namespace_name, kubernetes.pod_name, kubernetes.container_name, then the plugin will use those values as the source to use to lookup the metadata
  • If use_journal true, or use_journal is unset, and the fields CONTAINER_NAME and CONTAINER_ID_FULL are present in the record, then the plugin will parse those values using container_name_to_kubernetes_regexp and use those as the source to lookup the metadata
  • Otherwise, if the tag matches tag_to_kubernetes_name_regexp, the plugin will parse the tag and use those values to lookup the metdata

v2.1.x

As of the release 2.1.x of this plugin, it no longer supports parsing the source message into JSON and attaching it to the payload. The following configuration options are removed:

  • merge_json_log
  • preserve_json_log

One way of preserving JSON logs can be through the parser plugin. It can parsed with the parser plugin like this:

<filter kubernetes.**>
  @type parser
  key_name log
  <parse>
    @type json
    json_parser json
  </parse>
  replace_invalid_sequence true
  reserve_data true # this preserves unparsable log lines
  emit_invalid_record_to_error false # In case of unparsable log lines keep the error log clean
  reserve_time # the time was already parsed in the source, we don't want to overwrite it with current time.
</filter>
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [fluentd](https://github.com/fluent/fluentd) and [fluent-plugin-kubernetes_metadata_filter](https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter). These dependencies needed to be updated together.

Updates `fluentd` from 1.9.3 to 1.16.2
- [Release notes](https://github.com/fluent/fluentd/releases)
- [Changelog](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md)
- [Commits](fluent/fluentd@v1.9.3...v1.16.2)

Updates `fluent-plugin-kubernetes_metadata_filter` from 2.4.6 to 3.2.0
- [Release notes](https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter/releases)
- [Changelog](https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter/blob/master/release_notes.md)
- [Commits](fabric8io/fluent-plugin-kubernetes_metadata_filter@v2.4.6...v3.2.0)

---
updated-dependencies:
- dependency-name: fluentd
  dependency-type: direct:production
- dependency-name: fluent-plugin-kubernetes_metadata_filter
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Development

Successfully merging this pull request may close these issues.

0 participants