XMPPLogger 0.1.1

There is a little bugfix release of our little XMPPLogger. It fixed an issue with a (dead-)lock in combination with syslog-ng and added a (re-)start notification to all recipients. You can download version 0.1.1 here.

If you want to use this software in combination with syslog-ng you have to add the following lines to your /etc/syslog-ng/syslog-ng.conf

# jabber
destination df_jabber {
pipe(”/var/log/jabber”
owner(”root”)
group(”root”)
perm(0666)
log_fifo_size(2)
template(”$TAG [$FACILITY.$LEVEL] $MESSAGE\n”)
);};

# *.at_least_crit                 |/var/log/jabber
log {
source(s_all);
filter(f_at_least_crit);
destination(df_jabber);
};

You probably want to change the owner, group and permissions on your system ;) !

Now you can test your syslog-ng setup by typing:

logger -p crit test1234

Recent Entries

Leave a Reply

Enter this code