Hello,
I'm new to zabbix and I find it very useful. I have a vulnerability scanner (OpenVAS) that is running and I would like to generate alerts from a generated xml file that follow this schema
I've seen the usecases for templates with items/triggers but I'm not sure this is the correct way to do what I want. As the XML file already contains the alerts I would like zabbix to show, I wonder if it was possible for zabbix to just check the file (for exemple everyday) and pops alert for each host that is in the file.
It doesn't matter if the host concerned by zabbix's alert is my scanner's server if I can just display the hostname in the alert's name.
I hope I made my problem clear enough.
Thank you in advance.
edit: I can also just create a text file with every hostname in each line without noticing the severity like following:
siteA.org
siteB.org
siteC.org
I'm new to zabbix and I find it very useful. I have a vulnerability scanner (OpenVAS) that is running and I would like to generate alerts from a generated xml file that follow this schema
Code:
<hosts>
<host>
<report>abcd123zyx</report>
<hostname> siteA.org </hostname>
<severity> 8 </severity>
</host>
<host>
<report>abcd456zyx</report>
<hostname> siteB.org </hostname>
<severity> 7 </severity>
</host>
</hosts>
It doesn't matter if the host concerned by zabbix's alert is my scanner's server if I can just display the hostname in the alert's name.
I hope I made my problem clear enough.
Thank you in advance.
edit: I can also just create a text file with every hostname in each line without noticing the severity like following:
siteA.org
siteB.org
siteC.org
Comment