2

I want to use Zabbix to make a Restful GET call periodically and check a return value.

For example I have a URL like https://mysite/api/performCheck. This endpoint returns JSON data that would look something like this:

{ "status": 0 }

If the status is 0 it indicates the site is performing as expected while none zero values would indicate an error code.

I would like Zabbix to make this restful call every 5 minutes and check that the value of "status" is 0. If the value is not zero I want Zabbix to send an alert.

How do I configure the Zabbix server with this type of robotic job?

William Ross
  • 3,568
  • 7
  • 42
  • 73

1 Answers1

3

Based on your example, you can simply setup a web scenario, that will search for the string "status : 0". Then you define your trigger, if pattern found, all is ok, else error.

SBO
  • 423
  • 1
  • 6
  • 17