I am currently using rsyslog with php-syslog-ng as my frontend. Everything works great but rsyslog puts values into mysql for fields "facility" and "priority". php-syslog-ng requires values in there instead of numbers. When numbers are entered it does not show the log entries correctly in the interface. Using the words resolve the issue.
example:
rsyslog puts "facility=0" and "priority=6" into logs
php-syslog-ng needs "facility=kern" and "priority=info" into logs.
How do i get rsyslog to enter the corresponding values instead of the numbers?
Thank you.


