In 1.1b2, I had the following user parameter configured in the zabbix server configuration file which worked perfectly.
In 1.1b3 the format has changed to
What I noticed in 1.1b3 is that when I changed the store value from "as is" to "delta, simple change" the UI stopped reporting values.
When I looked into the database (select * from history where itemid = <id of that rule> I noticed that there were no values in the history table. Further checking showed that none of the user parameters were being stored in the history table.
Does anyone know where in the code that the user definable parameters are collected and saved into the database so I can track down why it no longer works in 1.1b3?
Thanks.
Code:
UserParameter=mysql[questions],mysqladmin -uroot status|cut -f4 -d":"|cut -f1 -d"S"
Code:
UserParameter=mysql.questions,mysqladmin -uroot status|cut -f4 -d":"|cut -f1 -d"S"
When I looked into the database (select * from history where itemid = <id of that rule> I noticed that there were no values in the history table. Further checking showed that none of the user parameters were being stored in the history table.
Does anyone know where in the code that the user definable parameters are collected and saved into the database so I can track down why it no longer works in 1.1b3?
Thanks.
Comment