Skip to content

Commit

Permalink
default config: comment out out_forward setting
Browse files Browse the repository at this point in the history
It would be not desirable to try to connect with `192.168.0.11` or
`192.168.0.12` by default.
This causes the following warning log:

    ... detached forwarding server ...

Also, this could cause some unintended problems.

Signed-off-by: Daijiro Fukuda <[email protected]>
  • Loading branch information
daipom committed Jun 6, 2024
1 parent 0d9f3a6 commit 620895a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions fluent.conf
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,20 @@
@id stdout_output
</match>

# match tag=system.** and forward to another fluent server
<match system.**>
@type forward
@id forward_output

<server>
host 192.168.0.11
</server>
<secondary>
<server>
host 192.168.0.12
</server>
</secondary>
</match>
## match tag=system.** and forward to another fluent server
#<match system.**>
# @type forward
# @id forward_output
#
# <server>
# host 192.168.0.11
# </server>
# <secondary>
# <server>
# host 192.168.0.12
# </server>
# </secondary>
#</match>

## match tag=myapp.** and forward and write to file
#<match myapp.**>
Expand Down

0 comments on commit 620895a

Please sign in to comment.