Hi, i want to use the items from Application.MySQL. I have added the items to my zabbixserver host to get infromation about the mysql database. But even i changed the status to monitored and i refesh the page i got not supported. Have anyone an idea why?
For your infromation i uncomment the following lines in zabbix_agentd.conf
For your infromation i uncomment the following lines in zabbix_agentd.conf
Code:
UserParameter=mysql.ping,mysqladmin -uroot -ppassword ping|grep alive|wc -l UserParameter=mysql.uptime,mysqladmin -uroot -ppassword status|cut -f2 -d":"|cut -f1 -d"T" UserParameter=mysql.threads,mysqladmin -uroot -ppassword status|cut -f3 -d":"|cut -f1 -d"Q" UserParameter=mysql.questions,mysqladmin -uroot -ppassword status|cut -f4 -d":"|cut -f1 -d"S" UserParameter=mysql.slowqueries,mysqladmin -uroot -ppassword status|cut -f5 -d":"|cut -f1 -d"O" UserParameter=mysql.qps,mysqladmin -uroot -ppassword status|cut -f9 -d":" UserParameter=mysql.version,mysql -V
Comment