2007-08-23 Sancho Lerena <slerena@artica.es>
* bin/pandora_agent.conf: More comple sample config. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@615 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
8663924c94
commit
f263c28ac8
|
@ -1,3 +1,7 @@
|
||||||
|
2007-08-23 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
|
* bin/pandora_agent.conf: More comple sample config.
|
||||||
|
|
||||||
2007-08-23 Esteban Sanchez <estebans@artica.es>
|
2007-08-23 Esteban Sanchez <estebans@artica.es>
|
||||||
|
|
||||||
* pandora_windows_service.cc: Reduced output log level in normal use.
|
* pandora_windows_service.cc: Reduced output log level in normal use.
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Fichero de configuracion base de agentes de Pandora
|
# Fichero de configuracion base de agentes de Pandora
|
||||||
# Base config file for Pandora FMS Windows Agent
|
# Base config file for Pandora FMS Windows Agent
|
||||||
# Version 1.3.0
|
# Version 1.3.0
|
||||||
# (c) 2006 Esteban Sanchez
|
# (c) 2006-207 Esteban Sanchez
|
||||||
# (c) 2006 Artica Soluciones Tecnologicas
|
# (c) 2006-2007 Artica Soluciones Tecnologicas
|
||||||
# This program is Free Software, you can redistribute it and/or modify it
|
# This program is Free Software, you can redistribute it and/or modify it
|
||||||
# under the terms of the GNU General Public Licence as published by the Free Software
|
# under the terms of the GNU General Public Licence as published by the Free Software
|
||||||
# Foundation; either version 2 of the Licence or any later version.
|
# Foundation; either version 2 of the Licence or any later version.
|
||||||
|
@ -13,12 +13,14 @@
|
||||||
# General Parameters
|
# General Parameters
|
||||||
# ==================
|
# ==================
|
||||||
|
|
||||||
server_ip 192.168.50.100
|
server_ip 192.168.50.107
|
||||||
server_path /var/spool/pandora/data_in
|
server_path /var/spool/pandora/data_in
|
||||||
temporal "C:\windows\temp"
|
temporal "C:\windows\temp"
|
||||||
interval 300
|
interval 300
|
||||||
agent_name caprica
|
agent_name caprica
|
||||||
#debug 1
|
transfer_mode ftp
|
||||||
|
ftp_password pandora123
|
||||||
|
debug 1
|
||||||
|
|
||||||
# Module Definition
|
# Module Definition
|
||||||
# =================
|
# =================
|
||||||
|
@ -49,28 +51,28 @@ module_service Eventlog
|
||||||
module_description Eventlog Service
|
module_description Eventlog Service
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
# Is lsass.exe process alive ?
|
# Is SecureClient Service alive ?
|
||||||
module_begin
|
module_begin
|
||||||
module_name Proc_lsass
|
module_name Checkpoint_SecureClient
|
||||||
module_type generic_proc
|
module_type generic_proc
|
||||||
module_proc lsass.exe
|
module_proc SR_Service.exe
|
||||||
module_description LSASS Process
|
module_description Checkpoint Secure Client VPN client
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
# Is lsass.exe process alive ?
|
# Is description Network Connect Service VPN Client from Juniper alive ?
|
||||||
module_begin
|
module_begin
|
||||||
module_name Proc_winlogon
|
module_name Juniper_VPN
|
||||||
module_type generic_proc
|
module_type generic_proc
|
||||||
module_proc winlogon.exe
|
module_proc dsNcService.exe
|
||||||
module_description Winlogon
|
module_description Network Connect Service VPN Client from Juniper
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
# Is lsass.exe process alive ?
|
# Is Microsoft Messenger running ?
|
||||||
module_begin
|
module_begin
|
||||||
module_name Proc_cmd
|
module_name MSN_Messenger
|
||||||
module_type generic_proc
|
module_type generic_proc
|
||||||
module_proc cmd.exe
|
module_proc msmsgs.exe
|
||||||
module_description cmd
|
module_description Microsoft Messenger (MSN)
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
# Received packets
|
# Received packets
|
||||||
|
@ -81,7 +83,7 @@ module_exec netstat -s | grep "Packets Received" | tr -d " " | cut -f 2 -d "=" |
|
||||||
module_description Received packets (interval 2)
|
module_description Received packets (interval 2)
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
# Free space on disk
|
# Free space on disk C:
|
||||||
module_begin
|
module_begin
|
||||||
module_name FreeDiskC
|
module_name FreeDiskC
|
||||||
module_type generic_data
|
module_type generic_data
|
||||||
|
@ -89,6 +91,14 @@ module_freedisk C:
|
||||||
module_description Free space on drive C:
|
module_description Free space on drive C:
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
|
# Free space on disk D:
|
||||||
|
module_begin
|
||||||
|
module_name FreeDiskD
|
||||||
|
module_type generic_data
|
||||||
|
module_freedisk D:
|
||||||
|
module_description Free space on drive D:
|
||||||
|
module_end
|
||||||
|
|
||||||
# CPU usage percentage
|
# CPU usage percentage
|
||||||
module_begin
|
module_begin
|
||||||
module_name CPUUse0
|
module_name CPUUse0
|
||||||
|
|
Loading…
Reference in New Issue