zabbix api 정리
## 그래프 생성 curl -s -X POST -H 'Content-Type: application/json' \ -d '{ "jsonrpc": "2.0", "method": "graph.create", "params": { "name": "'${ID}_${HOST}_${i}'", "width": 900, "height": 200, "gitems": [ { "itemid": '${1}', "color": "00AA00" } ] }, "auth": '$token', "id": 1 }' \ http://$zabbixserver/zabbix/api_jsonrpc.php ## 그래프 정보 가져오기 curl -s -X POST -H 'Content-Type: application/json' \ -d '{ "jso..