I just installed Zabbix 5.4 and i want to test 'scheduled reports' but i keep getting:
Report manager is disabled.
Since the feature is new i can't find a solution. so if someone is familiar please help me fix it and enable the report manager.
I just installed Zabbix 5.4 and i want to test 'scheduled reports' but i keep getting:
Report manager is disabled.
Since the feature is new i can't find a solution. so if someone is familiar please help me fix it and enable the report manager.
You need to enable report writer in server config. In
/etc/zabbix/zabbix_server.conf
(assuming you are running Zabbix on a Linux machine) change the value ofStartReportWriters
to at least 1, then restart the server.Edit
You also need to set
WebServiceURL
parameter inzabbix_server.conf
. The URL should be in format<host>:<port>/report
. Default port is 10053./report
path is mandatory and hardcoded, and so can not be changed.Next, Frontend URL parameter must be set. Go to Administration → General → Other parameters, and specify the full URL of the Zabbix web interface in the Frontend URL parameter.
More detailed instructions can be found in official documentation.