The syslog-ng tag has no wiki summary.
0
votes
0answers
232 views
Are there any Cisco syslog parsers (preferably open source)?
I'm looking for a library that is able to parse cisco syslog's. I'd like to output things like blocked connection, or suspicious traffic. I've done some Googling but I haven't been able to find ...
0
votes
1answer
115 views
Open Source syslog-ng RPM for SLES
Can anyone point me to an Open source syslog-ng RPM package for SLES 11 (x86, 64-bit)?
3
votes
3answers
3k views
Software to send windows notification eventlogs to linux syslog server and encode to utf8
I am trying to setup a windows 2008 server so it's able to send the eventlog messages to an syslog-ng server running linux. I'd prefer something native but I guess it won't be possible.
UPDATE
The ...
1
vote
1answer
143 views
Log “date -s” command
I know that the date -s <STRING> command sets the time described by the string STRING.
What i want is to log the above command whenever it is used to set the time into the file ...
0
votes
1answer
1k views
Remote logging for multiple Apache virtual hosts using syslog-ng
I'm running a couple Apache web servers that each have 4-8 separate virtual hosts on each of them. I'm trying to setup a dedicated log server that stores each virtual host access and errors logs in a ...
0
votes
1answer
929 views
Syslog-ng log format
I am using a centralised syslog-ng loghost to collect logs and syslog-ng on some of the clients.
On one particular client, running syslog-ng on Devil Linux, syslog entries are sent ( confirmed with ...
1
vote
2answers
311 views
Syslog - capturing event logs from Win2k boxes
I asked this question in SuperUser without much luck and so I am posting it here to see if anyone can assist.
We have a central syslog server and we want it to capture event log events from Windows ...
0
votes
1answer
567 views
how do you convert this syslog-ng cfg to rsyslog?
How do I convert the following to rsyslog syntax?
filter local2 { facility(local2); };
filter not_local2 { not facility(local2); };
destination server2 { tcp("server2" port(1111)); };
...
2
votes
0answers
510 views
How does syslog-ng handles flush_lines(0)?
I wanted to make sure my syslog-ng was doing async logging.
Reading through the documentation I see the flush_lines() option for file() destinations, if unspecified, will use the global default. Then ...
4
votes
3answers
2k views
Syslog-ng: how to log severity/facility?
Here is the system:
SUSE Linux Enterprise Server 10
syslog-ng with predefined syslog-ng.conf
messages in /var/log/messages look like:
Feb 8 09:29:53 sles1 sshd[17529]: Accepted ...
6
votes
2answers
3k views
syslog-ng on Solaris 10 (how to install and configure)
If anyone has got syslog-ng working on Solaris 10, do you have a set of instructions I could follow to get it installed and working?
I tried following this ...
1
vote
2answers
303 views
Is there a reason to use /dev/lognull instead of /dev/null when logging with syslog-ng?
At my office I recently wondered aloud to all, "Why shouldn't these logs be redirected to /dev/null instead of /dev/lognull?" I was told that there is (or was) a reason, but no one could remember it. ...