I'm not seeing Redis Protocol logs, but I am seeing flows to and from the Redis port. Why would that the case?
I have the Redis Protocol enabled in my packetbeat.yml file:
packetbeat.protocols.redis:
# Configure the ports where to listen for Redis traffic. You can disable
# the Redis protocol by commenting out the list of ports.
ports: [6379]
But I am not getting any Redis protocol logs. The same packetbeat instance is, however, reporting flows coming to and from that port. The following two search strings in kibana are returning results:
@metadata.beat: "packetbeat" AND type: "flow" AND dest.port: 6379 AND final: true
@metadata.beat: "packetbeat" AND type: "flow" AND packetbeatSource.port: 6379 AND final: true
Is there a reason I'd be seeing flows to and from that port, without seeing corresponding redis protocol logs?