Hi Guys,
before someone posts a reply i have RTFM but its not exactly based at someone who does'nt know a lot about Zabbix, linux and windows....
I am struggling to grasp how you setup a new item to be monitored on a windows 2003 server, i have installed the Zabbix_agentd.exe and its running Zabbix server is reporting things are fine, but i would like to keep an eye on things like
MYSQL
MS SQL
and a bunch of custom services our company has written, is there an idiots guide out there on how you go about setting this sort of thing up.
The first thing that is confusing me is the agent config file, there is nothing of interest in this file but the zabbix server is reporting on a load of information.
where is it getting this from if its not in the config file and how to i go about adding to it????
This is my agents config file,
as you can see there is nothing in this file execept some connection parameters.
Please guys give us a hint, i was told with great praise that this is easier to use than Nagios, so far im 50/50 on that statement, as this seems just as difficult to configure as Nagios.
thanks in advance
Kris
before someone posts a reply i have RTFM but its not exactly based at someone who does'nt know a lot about Zabbix, linux and windows....
I am struggling to grasp how you setup a new item to be monitored on a windows 2003 server, i have installed the Zabbix_agentd.exe and its running Zabbix server is reporting things are fine, but i would like to keep an eye on things like
MYSQL
MS SQL
and a bunch of custom services our company has written, is there an idiots guide out there on how you go about setting this sort of thing up.
The first thing that is confusing me is the agent config file, there is nothing of interest in this file but the zabbix server is reporting on a load of information.
where is it getting this from if its not in the config file and how to i go about adding to it????
This is my agents config file,
Code:
# This is config file for zabbix_agent # To get more information about ZABBIX, # go http://www.zabbix.com # IP address of ZABBIX server # Connections from other hosts will be denied Server=10.0.0.192 # Spend no more than Timeout seconds on processing # Must be between 1 and 30 ListenPort=10050 Timeout=3 ####### USER-DEFINED MONITORED PARAMETERS ####### # Format: UserParameter=<key>,<shell command> # Note that shell command must not return empty string or EOL only #UserParameter=system.test,who|wc -l ### Set of parameter for monitoring MySQL server (v3.23.42 and later) ### Change -u<username> and add -p<password> if required #UserParameter=mysql.ping,mysqladmin -uroot ping|grep alive|wc -l #UserParameter=mysql.uptime,mysqladmin -u root status|cut -f2 -d":"|cut -f1 -d"T" #UserParameter=mysql.threads,mysqladmin -uroot status|cut -f3 -d":"|cut -f1 -d"Q" #UserParameter=mysql.questions,mysqladmin -uroot status|cut -f4 -d":"|cut -f1 -d"S" #UserParameter=mysql.slowqueries,mysqladmin -uroot status|cut -f5 -d":"|cut -f1 -d"O" #UserParameter=mysql.qps,mysqladmin -uroot status|cut -f9 -d":" #UserParameter=mysql.version,mysql -V
Please guys give us a hint, i was told with great praise that this is easier to use than Nagios, so far im 50/50 on that statement, as this seems just as difficult to configure as Nagios.
thanks in advance
Kris
Comment