2006-07-06 16:14:09 +02:00
|
|
|
# Fichero de configuracion base de agentes de Pandora
|
|
|
|
# Base config file for Pandora agents
|
2024-03-14 11:52:58 +01:00
|
|
|
# Version 7.0NG.776, HPUX Version
|
2006-07-06 16:14:09 +02:00
|
|
|
|
|
|
|
# General Parameters
|
|
|
|
# ==================
|
|
|
|
server_ip pandora_server
|
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-07-06 16:14:09 +02:00
|
|
|
interval 300
|
|
|
|
#agent_name satellite_system
|
|
|
|
checksum 1
|
2017-07-18 13:31:50 +02:00
|
|
|
# Debug mode renames XML in the temp folder and continues running
|
2006-07-06 16:14:09 +02:00
|
|
|
debug 0
|
|
|
|
|
|
|
|
# Module Definition
|
|
|
|
# =================
|
|
|
|
# HPUX 11.x
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name cpu_user
|
|
|
|
module_type generic_data
|
|
|
|
module_exec vmstat 2 2 | tail -1 | awk '{ print $16 }'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name cpu_sys
|
|
|
|
module_type generic_data
|
|
|
|
module_exec vmstat 2 2 | tail -1 | awk '{ print $17 }'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name disk_var_free
|
|
|
|
module_type generic_data
|
|
|
|
module_exec vmstat | tail -1 | awk '{print ($5*4)/1024}'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name total_proc
|
|
|
|
module_type generic_data
|
|
|
|
module_exec ps -e | wc -l
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name mem_free_mb
|
|
|
|
module_type generic_data
|
|
|
|
module_exec vmstat | tail -1 | awk '{print ($5*4)/1024}'
|
|
|
|
module_end
|
|
|
|
|
|
|
|
module_begin
|
|
|
|
module_name sendmail
|
|
|
|
module_type generic_proc
|
|
|
|
module_exec ps -e | grep sendmail | grep -v grep | wc -l
|
|
|
|
module_end
|