Is it possible to fetch data from zabbix graph for reporting? For example, i would like to fetch memory utilization value from xxx to xxx (date/time).
My zabbix server version is 5.0.17 and appreciate if someone can help me using api from scratch.
I have tried using the api below which i found on one of the post but i could not find zabbix api token auth in my zabbix frontend
curl -L -k -i -X POST -H 'Content-Type:application/json' -d '{"jsonrpc":"2.0","method":"trend.get","id":1,"aut h":"1a543455bd48e6ddc222219acccb52e9","params" : {"output": ["clock","value_avg","value_min","value_max","num", "itemid"],"itemids":["10234"],"time_from": "1632112200","time_till": "1632198600", "limit": "1"}}' https://172.30.134.03:423//api_jsonrpc.php
The post that i found related to my needs.