-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Add support for ~UDP~ Datagram unix socket input #18632
Comments
Pinging @elastic/integrations-services (Team:Services) |
We currently support Thanks |
i followed the above instructions, and then set That didnt work, as in i received no logs. I then tested by creating a socket connection to the First with I then tried again with This may work with other implementations of |
To be absolutely clear this is regarding unix socket input - no doubt network |
I think the specific request is support for UNIX datagram socket versus the newly added support for UNIX stream socket. |
mostly yes - but the protocol isnt really |
## What does this PR do? This PR adds support for reading from UNIX datagram sockets both from the `unix` input and the `syslog` input. A new option is added to select the type of the socket named `socket_type`. Available options are: `stream` and `datagram`. ## Why is it important? A few applications which send logs over Unix sockets, use datagrams not streams. From now on, Filebeat can accept input from these applications as well. Closes #18632
## What does this PR do? This PR adds support for reading from UNIX datagram sockets both from the `unix` input and the `syslog` input. A new option is added to select the type of the socket named `socket_type`. Available options are: `stream` and `datagram`. ## Why is it important? A few applications which send logs over Unix sockets, use datagrams not streams. From now on, Filebeat can accept input from these applications as well. Closes elastic#18632 (cherry picked from commit 3a1d1ae)
## What does this PR do? This PR adds support for reading from UNIX datagram sockets both from the `unix` input and the `syslog` input. A new option is added to select the type of the socket named `socket_type`. Available options are: `stream` and `datagram`. ## Why is it important? A few applications which send logs over Unix sockets, use datagrams not streams. From now on, Filebeat can accept input from these applications as well. Closes #18632 (cherry picked from commit 3a1d1ae)
Describe the enhancement:
There is support for unix socket inputs in
filebeat
from version7.8
This is done using
protocol.unix
as described hereThis creates a
TCP
socket - but eg rsyslog assumesUDP
for ref, the ticket where support was added #10934
Describe a specific use case for the enhancement or feature:
use with any
syslog
engine that outputs to aUDP
socketThe text was updated successfully, but these errors were encountered: