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

blog: Add Fluentd v1.17.0 release announcement #312

Merged
merged 8 commits into from
Jun 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions content/blog/20240430_fluentd-v1.17.0-has-been-released.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Fluentd v1.17.0 has been released

Hi users!

We have released v1.17.0 on 2024-04-30. ChangeLog is [here](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1170---20240430).

This release is a new release of v1.17 series.
In this release, we added some new features for some plugins, and fixed bugs of Parser.
daipom marked this conversation as resolved.
Show resolved Hide resolved

## Enhancement

### `in_tail`: Add `glob_policy` option for expanding glob capability of `path` and `exclude_path`

In this release, we added a new option [glob_policy](https://docs.fluentd.org/input/tail#glob_policy) for [in_tail](https://docs.fluentd.org/input/tail) plugin.

In previous versions, we can use only `*` in glob patterns for [path](https://docs.fluentd.org/input/tail#path) and [exclude_path](https://docs.fluentd.org/input/tail#exclude_path) option.

Example:

```
path /path/to/*
exclude_path ["/path/to/*.gz", "/path/to/*.zip"]
```

From this version, we can also use `[]`, `?` and `{}` in glob patterns depending on the `glob_policy` option.
daipom marked this conversation as resolved.
Show resolved Hide resolved

Example:

```
path "[0-1][2-3].log"
glob_policy extended
```

Please see [the document](https://docs.fluentd.org/input/tail#glob_policy) and [#4401](https://github.com/fluent/fluentd/pull/4401) for more information.

### `out_http`: Support AWS Signature Version 4 authentication

### `out_http`: Add option to reuse connections

### `in_http`: Recognize CSP reports as JSON data

## Bug Fixes

### Make sure parser returns hash

Enjoy logging!

TAG: Fluentd Announcement
AUTHOR: clearcode