2006-03-27 05:37:27 +02:00
|
|
|
# Fichero de configuracion base de agentes de Pandora
|
|
|
|
# Base config file for Pandora agents
|
2014-10-28 16:11:20 +01:00
|
|
|
# Version 6.0dev, Solaris version
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
# General Parameters
|
|
|
|
# ==================
|
2007-06-12 11:32:54 +02:00
|
|
|
server_ip 192.168.50.1
|
2007-04-11 16:14:32 +02:00
|
|
|
server_path /var/spool/pandora/data_in
|
2007-04-11 Manuel Arostegui <marostegui@artica.es>
* pandora_agents/linux/pandora_agent.conf, pandora_agents.spec: Changed
PATHS to adapt them to the upcoming 1.3 release.
* pandora_agents/bsd-ipso/pandora_agent_daemon, pandora_agent.conf,
pandora_agent.sh: Changed PATHS to adapt them to
the upcoming 1.3 release.
* pandora_agents/aix/pandora_agent_daemon, pandora_agent.conf,
pandora_agent.sh: Changed PATHS to adapt them
to the upcoming 1.3 release.
* pandora_agents/hp-ux/pandora_agent_daemon, pandora_agent.conf,
pandora_agent.sh: Changed PATHS to adapt them
to the upcoming 1.3 release.
* pandora_agents/win32/bin/pandora_agent.conf: Changed PATHS to
adapt them to the upcoming 1.3 release.
* pandora_agents/meta_agent/pandora_agent_sim.sh, pandora_agent_daemon,
pandora_agent_1.conf, pandora_agent_2.conf, pandora_agent_3.conf,
pandora_agent_4.conf, pandora_agent_5.conf: Changed PATHS
to adapt them to the upcoming 1.3 release.
* pandora_agents/solaris/pandora_agent_daemon, pandora_agent.conf,
pandora_agent.sh: Changed PATHS to adapt them to the upcoming
1.3 release.
* pandora_server/pandora_network, pandora_snmpconsole, pandora_server
pandora_recon: Changed PATHS to adapt them to the
upcoming 1.3 release.
* pandora_server/specs/fedoracore5/pandora_server.spec: Changed
PATHS to adapt them to the upcoming 1.3 release.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@418 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-11 14:52:04 +02:00
|
|
|
pandora_path /usr/share/pandora_agent/
|
2007-04-11 16:14:32 +02:00
|
|
|
temporal /var/spool/pandora/data_out
|
2006-03-27 05:37:27 +02:00
|
|
|
interval 300
|
|
|
|
#agent_name satellite_system
|
2006-07-06 19:17:49 +02:00
|
|
|
checksum 0
|
2007-06-25 13:23:43 +02:00
|
|
|
debug 0
|
2007-06-12 11:32:54 +02:00
|
|
|
# By default is 22 (for ssh)
|
|
|
|
#server_port 22
|
|
|
|
|
|
|
|
# ftp, ssh or local
|
|
|
|
transfer_mode ssh
|
|
|
|
|
|
|
|
# delayed_startup defines number of MINUTES before start execution
|
|
|
|
# for first time when startup Pandora Agent
|
2007-06-14 17:27:04 +02:00
|
|
|
#delayed_startup 90
|
2007-06-12 11:32:54 +02:00
|
|
|
|
|
|
|
#Pandora nice defines priority of execution. Less priority means more intensive execution
|
2007-06-25 13:23:43 +02:00
|
|
|
#A recommended value for Solaris stressed systems is 30. 20 priority means no Pandora CPU protection enabled
|
|
|
|
# pandora_nice 20
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
# Module Definition
|
|
|
|
# =================
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name cpu_user
|
|
|
|
module_type generic_data
|
|
|
|
module_exec vmstat 2 2| tail -1 | awk '{ print $20 }'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name cpu_sys
|
|
|
|
module_type generic_data
|
|
|
|
module_exec vmstat 2 2 | tail -1 | awk '{ print $21 }'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name disk_var_free
|
|
|
|
module_type generic_data
|
|
|
|
module_exec df -k | grep /var | tr -s "%" " " | tail -1 | awk '{ print 100 - $5 }'
|
2006-07-06 19:17:49 +02:00
|
|
|
module_interval 10
|
2006-03-27 05:37:27 +02:00
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name memfree
|
|
|
|
module_type generic_data
|
|
|
|
module_exec vmstat 2 2| tail -1 | awk '{ print $5 }'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name proctotal
|
|
|
|
module_type generic_data
|
|
|
|
module_exec ps -A | wc -l | awk '{ print $1 }'
|
2006-07-06 19:17:49 +02:00
|
|
|
module_interval 4
|
2006-03-27 05:37:27 +02:00
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name IP_Packet_OUT
|
|
|
|
module_type generic_data
|
|
|
|
module_exec netstat -as | grep "ipOutRequest" | tr "=" " " | awk '{ print $4 }'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name IP_Packet_IN
|
|
|
|
module_type generic_data
|
|
|
|
module_exec netstat -as | grep "ipInReceives" | tr "=" " " | awk ' { print $2 }'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name SSH_Daemon
|
|
|
|
module_type generic_proc
|
|
|
|
module_exec ps -Af | grep sshd | grep -v "grep" | wc -l
|
|
|
|
module_end
|
|
|
|
|