updated on Wed Jan 11 00:07:16 UTC 2012
[aur-mirror.git] / zabbix-agent / zabbix_agent.conf
blobdfa5c1bd3dee2357b7b155fc8473e96b1e236eee
1 # This is config file for zabbix_agent
2 # To get more information about ZABBIX, 
3 # go http://www.zabbix.com
5 # IP address of ZABBIX server
6 # Connections from other hosts will be denied
8 Server=127.0.0.1
10 # Spend no more than Timeout seconds on processing
11 # Must be between 1 and 30
13 Timeout=3
15 ####### USER-DEFINED MONITORED PARAMETERS #######
16 # Format: UserParameter=<key>,<shell command>
17 # Note that shell command must not return empty string or EOL only
18 #UserParameter=system.test,who|wc -l
19 ### Set of parameter for monitoring MySQL server (v3.23.42 and later)
20 ### Change -u<username> and add -p<password> if required
21 #UserParameter=mysql.ping,mysqladmin -uroot ping|grep alive|wc -l
22 #UserParameter=mysql.uptime,mysqladmin -uroot status|cut -f2 -d":"|cut -f1 -d"T"
23 #UserParameter=mysql.threads,mysqladmin -uroot status|cut -f3 -d":"|cut -f1 -d"Q"
24 #UserParameter=mysql.questions,mysqladmin -uroot status|cut -f4 -d":"|cut -f1 -d"S"
25 #UserParameter=mysql.slowqueries,mysqladmin -uroot status|cut -f5 -d":"|cut -f1 -d"O"
26 #UserParameter=mysql.qps,mysqladmin -uroot status|cut -f9 -d":"
27 #UserParameter=mysql.version,mysql -V