Hi there, i'm having issues with a recent configuration on my logstash and i can't understand why it's not working.
I have multiple configuration files running, and working. This one was working also as of a week ago, but we changed the source IP that was sending the logs, that is all, so we updated the filter in our configuration file and nothing is showinf anymore.
# FIle
input {
udp {
port => 10000
}
}
filter {
# empty for now
}
output {
stdout { codec => rubydebug { metadata => true } }
kafka {
...
}
}
Pretty basic configuration, please ignore the "..." under kafka, that is working i just removed it here for clarity.
If i do a tcpdump on the port we receive the logs, the server is listeneing on the port on udp, but i never see anything via the stdout and i can't understand why. Any ideas please?