2008-06-06 09:13:16 +00:00
|
|
|
{config, pkgs}:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
stateDir = "/var/run/zabbix";
|
|
|
|
|
|
|
|
logDir = "/var/log/zabbix";
|
|
|
|
|
|
|
|
pidFile = "${stateDir}/zabbix_agentd.pid";
|
|
|
|
|
|
|
|
configFile = pkgs.writeText "zabbix_agentd.conf" ''
|
|
|
|
Server = 127.0.0.1
|
|
|
|
|
|
|
|
LogFile = ${logDir}/zabbix_agentd
|
|
|
|
|
|
|
|
DebugLevel = 4
|
|
|
|
|
|
|
|
PidFile = ${pidFile}
|
|
|
|
|
2008-06-06 12:38:40 +00:00
|
|
|
StartAgents = 5
|
2008-06-06 09:13:16 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "zabbix-agent";
|
|
|
|
|
|
|
|
users = [
|
|
|
|
{ name = "zabbix";
|
|
|
|
uid = (import ../system/ids.nix).uids.zabbix;
|
|
|
|
description = "Zabbix daemon user";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
job = ''
|
|
|
|
description "Zabbix agent daemon"
|
|
|
|
|
|
|
|
start script
|
|
|
|
mkdir -m 0755 -p ${stateDir} ${logDir}
|
|
|
|
chown zabbix ${stateDir} ${logDir}
|
|
|
|
|
|
|
|
export PATH=${pkgs.nettools}/bin:$PATH
|
|
|
|
${pkgs.zabbixAgent}/sbin/zabbix_agentd --config ${configFile}
|
|
|
|
end script
|
|
|
|
|
|
|
|
respawn sleep 100000
|
|
|
|
|
|
|
|
stop script
|
|
|
|
# !!! this seems to leave processes behind.
|
|
|
|
#pid=$(cat ${pidFile})
|
|
|
|
#if test -n "$pid"; then
|
|
|
|
# kill $pid
|
|
|
|
#fi
|
|
|
|
|
|
|
|
# So instead kill the agent in a brutal fashion.
|
|
|
|
while ${pkgs.procps}/bin/pkill -u zabbix zabbix_agentd; do true; done
|
|
|
|
end script
|
|
|
|
'';
|
|
|
|
|
|
|
|
}
|