1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
$seekfilesdir = '/var/tmp';
# where the state information will be saved.
$protocolsdir = '/var/tmp';
# where protocols with found patterns will be stored.
$scriptpath = '/var/tmp';
# where scripts will be searched for.
$MACROS = {};
@searches = (
{
tag => 'cccsssp1',
logfile => '/var/log/rhosts/linux1.log',
rotation => 'LOGROTATE',
warningpatterns => '.*[Ww]arning.*',
criticalpatterns => '.*([Ff]ail|[Ee]rror).*',
criticalexceptions => [ '.*(smb|nmb)d.*',
'.*xxx.*', ],
});
|