Skip to content

Commit

Permalink
Rephrase the words
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhonghui Hu committed Oct 13, 2020
1 parent d63f5e0 commit 22a09fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you think you’ve found a potential security issue, please do not post it in
* `experimental_concurrency_retries`: Specify a limit to the number of retries concurrent goroutines will attempt. By default `4` retries will be attempted before records are dropped.
* `aggregation`: Setting `aggregation` to `true` will enable KPL aggregation of records sent to Kinesis. This feature isn't compatible with the `partition_key` feature. See the KPL aggregation section below for more details.
* `compression`: Setting `compression` to `zlib` will enable zlib compression of each record. By default this feature is disabled and records are not compressed.
* `replace_dots`: A string which will be what you replace the dots in the key name with. By default, it will be empty which means the feature is disabled.
* `replace_dots`: Replace dot characters in key names with the value of this option. For example, if you add `replace_dots _` in your config then all occurrences of `.` will be replaced with an underscore. By default, dots will not be replaced.

### Permissions

Expand Down
4 changes: 0 additions & 4 deletions fluent-bit-kinesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@ func newKinesisOutput(ctx unsafe.Pointer, pluginID int) (*kinesis.OutputPlugin,
appendNL = true
}

if replaceDots == "" {
logrus.Infof("[kinesis %d] No replacement provided. Do not need to replace dots with other symbols.", pluginID)
}

isAggregate := false
if strings.ToLower(aggregation) == "true" {
isAggregate = true
Expand Down

0 comments on commit 22a09fb

Please sign in to comment.