Skip to content

Sync changes in fluent/fluentd-docs #23

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

Merged
merged 1 commit into from
May 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion guides/parse-syslog.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Here is the final configuration.
key_name message
<parse>
@type regexp
expresssion /USER=(?<sudoer>[^ ]+) ; COMMAND=(?<command>.*)$/
expression /USER=(?<sudoer>[^ ]+) ; COMMAND=(?<command>.*)$/
</parse>
</filter>

Expand Down
25 changes: 25 additions & 0 deletions plugins/output/forward.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,23 @@ The client private key path for TLS.

The client private key passphrase for TLS.

### keepalive

| type | default | version |
|:----:|:-------:|:-------:|
| bool | fales | 1.4.3 |

Enable keepalive connection.

### keepalive\_timeout

| type | default | version |
|:----:|:-------:|:-------:|
| time | nil | 1.4.3 |

Expired time of keepalive. Default value is nil, which means to keep connection
as long as possible.

### &lt;security&gt; section

| required | multi | version |
Expand Down Expand Up @@ -427,6 +444,14 @@ The backup destination that is used when all servers are unavailable.

For more details, see [Secondary Output](/plugins/output/README.md/#secondary-output).

### verify\_connection\_at\_startup

| type | default | version |
|:----:|:-------:|:-------:|
| bool | false | 1.3.1 |

Verify that a connection can be made with one of `out_forward` nodes
at the time of startup.

## Tips & Tricks

Expand Down