mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-28 04:19:08 +02:00
* win32/bin/pandora_agent.conf, win32/installer/pandora.mpi, win32/versioninfo.rc, win32/pandora.cc, pc/AIX/pandora_agent.conf, pc/Linux/pandora_agent.conf, pc/HP-UX/pandora_agent.conf, pc/Win32/pandora_agent.conf, pc/NT4/pandora_agent.conf, pc/SunOS/pandora_agent.conf, pc/FreeBSD/pandora_agent.conf, unix/AIX/pandora_agent.conf, unix/DEBIAN/control, unix/DEBIAN/make_deb_package.sh, unix/pandora_agent.spec, unix/Linux/pandora_agent.conf, unix/HP-UX/pandora_agent.conf, unix/pandora_agent.redhat.spec, unix/pandora_agent, unix/NT4/pandora_agent.conf, unix/SunOS/pandora_agent.conf, unix/FreeBSD/pandora_agent.conf, shellscript/linux/pandora_agent.conf, shellscript/bsd-ipso/pandora_agent.conf, shellscript/aix/pandora_agent.conf, shellscript/hp-ux/pandora_agent.conf, shellscript/mac_osx/pandora_agent.conf, shellscript/solaris/pandora_agent.conf, shellscript/openWRT/pandora_agent.conf: Updated version strings. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6672 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
88 lines
2.0 KiB
Plaintext
Executable File
88 lines
2.0 KiB
Plaintext
Executable File
# Fichero de configuracion base de agentes de Pandora
|
|
# Base config file for Pandora agents
|
|
# Version 5.0dev, AIX version
|
|
|
|
# General Parameters
|
|
# ==================
|
|
|
|
server_ip 192.168.50.1
|
|
server_path /var/spool/pandora/data_in
|
|
pandora_path /usr/share/pandora_agent
|
|
temporal /var/spool/pandora/data_out
|
|
interval 300
|
|
checksum 0
|
|
#agent_name adama
|
|
debug 0
|
|
# 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
|
|
|
|
#delayed_startup 90
|
|
|
|
#Pandora nice defines priority of execution. Less priority means more intensive execution
|
|
#A recommended value for stressed sytems is 10. 0 priority means no Pandora CPU protection enabled
|
|
#pandora_nice 0
|
|
|
|
# Module Definition
|
|
# =================
|
|
|
|
#packets sent
|
|
module_begin
|
|
module_name packets_sent
|
|
module_type generic_data_inc
|
|
module_exec netstat -as | grep "packets sent from this host" | head -1 | awk ' { print $1 } '
|
|
module_end
|
|
|
|
#packets for this host
|
|
module_begin
|
|
module_name packets_rcv
|
|
module_type generic_data_inc
|
|
module_exec netstat -as | grep "packets for this host" | head -1 | awk ' { print $1 } '
|
|
module_end
|
|
|
|
#total packets received
|
|
module_begin
|
|
module_name packets_rcv_total
|
|
module_type generic_data_inc
|
|
module_exec netstat -as | grep "total packets received" | head -1 |awk ' { print $1 } '
|
|
module_end
|
|
|
|
module_begin
|
|
module_name process
|
|
module_type generic_data
|
|
module_exec ps -A | wc -l | awk '{ print $1 }'
|
|
module_end
|
|
|
|
|
|
module_begin
|
|
module_name cpu_user
|
|
module_type generic_data
|
|
module_exec vmstat | tail -1 | awk '{ print $14 }'
|
|
module_end
|
|
|
|
module_begin
|
|
module_name cpu_sys
|
|
module_type generic_data
|
|
module_interval 2
|
|
module_exec vmstat | tail -1 | awk '{ print $15 }'
|
|
module_end
|
|
|
|
|
|
module_begin
|
|
module_name disk_var_free
|
|
module_type generic_data
|
|
module_exec df -k | grep /var | tr -s "%" " " | awk '{ print 100 - $4 }'
|
|
module_end
|
|
|
|
module_begin
|
|
module_name mem_free
|
|
module_type generic_data
|
|
module_exec vmstat | tail -1 | awk '{ print $4 }'
|
|
module_end
|
|
|