Skip to content
Snippets Groups Projects
Commit 0af7178d authored by Bertrand Lallau's avatar Bertrand Lallau
Browse files

Fluentd: progname field is missing with Rsyslog

progname is actually only fullfilled for Openstack logs and infra logs.
They are missing for program logging in RSYSLOG: HAPROXY and SWIFT.
When using Kibana, "progname" field appears empty, hence it's difficult
to know where logs come from.

Change-Id: Iae98af083cfb79d2a64fa0b70c86b0a01f7a336f
Closes-Bug: #1716051
parent c61d4e7e
No related branches found
No related tags found
No related merge requests found
......@@ -13,3 +13,17 @@
programname ${tag_parts[1]}
</record>
</filter>
<filter syslog.local0.**>
@type record_transformer
<record>
programname swift
</record>
</filter>
<filter syslog.local1.**>
@type record_transformer
<record>
programname haproxy
</record>
</filter>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment