QuestionHello. Now I'm gathering security events with json format from the Tetragon solution. Now I hope to send them to Wazuh server without Wazuh agent. Additionally, Wazuh solution recommand using Wazuh agent to get Tetragon events with following connections Do you happen to have a good idea for it? Vector ConfigNo response Vector LogsNo response |
Replies: 1 comment
|
Yes. For a self-managed Wazuh manager, the supported agentless path is its remote syslog listener. Vector should send syslog to that listener; it should not try to imitate the encrypted Wazuh agent protocol on port 1514. On the Wazuh manager, add a listener inside Then restart Since the file source places each Tetragon JSON line in the event's Before sending production traffic, copy one emitted line and run Two operational caveats:
Relevant docs: Wazuh remote syslog setup, Wazuh JSON decoder and |
Yes. For a self-managed Wazuh manager, the supported agentless path is its remote syslog listener. Vector should send syslog to that listener; it should not try to imitate the encrypted Wazuh agent protocol on port 1514.
On the Wazuh manager, add a listener inside
ossec_config(use the real Vector source IP/CIDR):Then restart
wazuh-manager.allowed-ipsis mandatory for a syslog connection, and the firewall/security policy must also permit TCP 514 from the Vector host/pod network.Since the file source places each Tetragon JSON line in t…