Tagged Questions
The syslog-ng tag has no wiki summary.
3
votes
5answers
537 views
How do you know if syslog-ng stops your listening daemon?
I wrote a PHP program that hooks into syslog-ng (via syslog-ng.conf) and it's basically this:
while (!feof(STDIN)) {
$input = fgets(STDIN);
process($input);
}
cleanup();
where process() and ...
0
votes
0answers
5 views
how to send structured-data to syslog-ng?
SDATA format is used in syslog-ng
now i want to use it to classify myself data.
but the message format: [A B=\"C\"]XXX does not work.
SDATA.meta.sequenceId can be used, why can't self defined SDATA?
...
0
votes
1answer
57 views
How does syslog-ng validate the header?
I am wondering how syslog-ng validates that the header is in the correct format (pri, timestamp, hostname). Does it use regular expressions for this purpose?
0
votes
0answers
15 views
syslog-ng adds <14> to handler name in log file
After I upgraded syslog-ng from version 3.0 to 3.1 I somehow get <14> and sometimes
<12> before the handler name in my syslog files for my django website, like this:
Nov 2 17:11:15 servername ...
0
votes
1answer
61 views
how to syslog-ng to remote facility
i have a host running syslog-ng. it does all it's stuff locally fine (creating log files etc). however, i would like to forward ALL of it's logs to a remote machine - specifically to one facility on ...
0
votes
0answers
20 views
Syslog-ng not sending to fifo when template directive is used
So I set my destination as follows...
destination d_pipe { pipe("/var/run/some_pipe.fifo"); };
This works fine and all of the logs come through nicely. However when I try to apply a template to it, ...
0
votes
1answer
69 views
How to get data from Syslog-NG / Syslog
I am looking to create a C++ socket app that will listen on a port, and receive data from Syslog and Syslog-NG. Is there documentation anywhere about how it will come through the socket?
0
votes
1answer
234 views
Can I use a more advanced template for extracting $PROGRAM in syslog-ng?
I am sending messages to Syslog using two Apache SyslogAppenders in Java. My ConversionPatterns are:
Instance-${jboss.server.name}: %d %-5p [%c] (%t) %m%n
Application-MyApp: ${jboss.server.name} - %d ...