Hi I have had a passive setup working for a little while now and want to enable active checks so i can monitor windows event logs.
I have been looking through the forums and the suggestions re: active checks dont seem to be helping me, if anyone has a chance to review this and help me out let me know.
basically i am testing active checks on disk space free, which was working fine. i set the item type to zabbix item (active) and its no longer graphing data.
here is my agentd.conf file:
when i telnet from the windows server to the zabbix server at port 10051 it just sits there, when i start typing anything it kicks me back to the telnet prompt, so im not sure how to troubleshoot further. there are no firewalls setup, these are both sandbox vms so i can do whatever i need to with them. any advice is appreciated!
I have been looking through the forums and the suggestions re: active checks dont seem to be helping me, if anyone has a chance to review this and help me out let me know.
basically i am testing active checks on disk space free, which was working fine. i set the item type to zabbix item (active) and its no longer graphing data.
here is my agentd.conf file:
Code:
Server=mbroers-zabbix3 # Server port for sending active checks ServerPort=10051 # Unique hostname. Required for active checks. Hostname=mbroers-zabbix3 # Listen port. Default is 10050 ListenPort=10050 # IP address to bind agent # If missing, bind to all available IPs #ListenIP=127.0.0.1 # Number of pre-forked instances of zabbix_agentd. # Default value is 5 # This parameter must be between 1 and 16 StartAgents=5 # How often refresh list of active checks. 2 minutes by default. #RefreshActiveChecks=120 # Disable active checks. The agent will work in passive mode listening server. DisableActive=0 # Enable remote commands for ZABBIX agent. By default remote commands disabled. EnableRemoteCommands=0 # Specifies debug level # 0 - debug is not created # 1 - critical information # 2 - error information # 3 - warnings # 4 - information (default) # 5 - for debugging (produces lots of information) DebugLevel=4 # Name of PID file #PidFile=C:\Program Files\Zabbix Agent/Zabbix_agentd.pid # Name of log file. # If not set, syslog will be used LogFile=C:\Program Files\Zabbix Agent\Zabbix_agentd.log # Spend no more than Timeout seconds on processing # Must be between 1 and 30 Timeout=5
Comment