-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
in_syslog cannot handle custom-formatted syslogs that do not start with <pri> #363
Comments
I don't want to add new functionality to I have two ideas:
In general, |
I agree with you on in_/out_forward. They should be primarily for Fluentd-to-Fluentd. |
I'm considering which is better separating protocol or setting protocol via options.
or
I think former case is good for users. it is clear plugin name. |
If no one is using |
Merged #368. So I closed this issue. |
👍 |
in_syslog has two parsing logics:
format
parameter is provided, then it parses the leading and uses the provided format for the rest of the message.format
parameter is provided, it uses the default syslog message format, which also starts with <pri>.This means that in_syslog barfs if the incoming message does not start with <pri>. This may happen if the user has custom syslog format that does not start with <pri>.
Should in_syslog support this? Or should it be in_forward?
The text was updated successfully, but these errors were encountered: