Pada pebaharuan Zabbix 5.4 sudah terdapat feature schedule report yang mana report tersebut nantinya dikirimkan ke email dalam bentuk PDF. Namun untuk menggunakan feature schedule report ini Anda perlu install zabbix-web-service dan google chrome browser di machine yang sama dengan zabbix server itu diinstall.
- Install the zabbix-web-service package
# apt install zabbix-web-service
- Install the Goole Chrome package
# wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# apt install ./google-chrome-stable_current_amd64.deb
- Configure the
StartReportWriters
edit file/etc/zabbix/zabbix_server.conf
StartReportWriters=1
WebServiceURL=http://localhost:10053/report
- Enable communication antara zabbix frontend and web service
Click Administration > General > Other
Pada bagian Frontend URL Anda dapat input alamat zabbix server yang dimiliki
- Restart zabbix-web-service and zabbix-server
# service zabbix-web-service restart
# service zabbix-server restart
add a comment