I know this isn't the first issue with ganglia, but I've dug through all the other forum posts on it and it's not getting anywhere. I've established through the command "tcpdump -i any udp" that I'm getting the UDP ganlia packets on port 8649, so there isn't an issue with ganglia or the network getting the packets to the logstash server.
My pipeline is as follows (right now I'm trying to troubleshoot ganglia, so that's the only one I'm dealing with):
input {
ganglia {
port => 8649
}
}
output {
stdout {
codec => rubydebug
}
}
I've checked my listening ports, and I had an issue with it only listening on ipv6 (what's up with that?), which was solved through this post. So now, I'm listening on the right ports, getting the right packets to the server, but getting nothing through logstash. Any ideas?