[syslog-ng]What means "dropped" ?

Loubet Jean-Michel syslog-ng@lists.balabit.hu
Tue, 10 Jun 2003 09:22:29 +0200


> the relevant part is what kind of destinations you have. (e.g. the rest of
> the config)


destination std { 
        file("/var/log/HOSTS/$HOST/$YEAR/$MONTH/$DAY/syslog"
                owner(admsys) group(system) perm(0600) dir_perm(0700)
create_dirs(yes)
                template ("$DATE $FULLHOST $FACILITY.$PRIORITY $MSG\n")
        ); 
};
log { 
        source(src); 
        destination(std); 
};


destination std_syslog_collector { 
        file("/var/log/syslog_collector"
                owner(admsys) group(system) perm(0600) dir_perm(0700)
create_dirs(yes)
                template ("LOG $FULLHOST $FACILITY.$PRIORITY $DATE $MSG\n")
        ); 
};
log { 
        source(src); 
        destination(std_syslog_collector); 
};


JM Loubet