-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Status: in progressIssue that is currently being worked on. Waffle label.Issue that is currently being worked on. Waffle label.Type: enhancement
Description
The current behavior adds to nginx files when archivematica_src_syslog_enabled=true :
{% if archivematica_src_syslog_enabled|bool %}
error_log syslog:server={{ archivematica_src_syslog_server }},tag=dashboard info;
access_log syslog:server={{ archivematica_src_syslog_server }},tag=dashboard combined;
{% endif %}
{% if archivematica_src_syslog_enabled|bool %}
error_log syslog:server={{ archivematica_src_syslog_server }},tag=storage info;
access_log syslog:server={{ archivematica_src_syslog_server }},tag=storage combined;
{% endif %}
There's no way to difference from rsyslog when the message is error or access because they are using same programname and severity (info).
We should add more variables, to make configurable:
- programname
- severity
- log_format
- don't use syslog with nginx
- etc
scollazo
Metadata
Metadata
Assignees
Labels
Status: in progressIssue that is currently being worked on. Waffle label.Issue that is currently being worked on. Waffle label.Type: enhancement