0

I want to create media types or script to send alerts to external form and submit the form with zabbix ?

version zabbix 5.0

Bijan Zand
  • 415
  • 4
  • 14

1 Answers1

1

You can call any external URl with parameters using a WebHook: there are lots of existing integrations or you can write your own.

You can't compile and submit a form directly: you should analyze the form to find out the called URL and parameters, manage authentication etc., then implement your webhook.

As a last resort, which I do not recommend, you can write an external script with Selenium or similar tools to open a headless browser, follow the XPaths to the fields, compile them and finally submit the form.

Simone Zabberoni
  • 2,024
  • 1
  • 10
  • 15