e5d564136b
The message field for these format files wasn't renamed when the input field was renamed. This problem was masked by Monasca which renames the message field back to 'message' for the Fluentd Monasca output plugin. Change-Id: I2674958b1e64efddbca4765fefa55431261648e6 Closes-Bug: #1819168
11 lines
489 B
Django/Jinja
11 lines
489 B
Django/Jinja
<filter openstack_python>
|
|
@type parser
|
|
reserve_data true
|
|
format grok
|
|
key_name Payload
|
|
grok_pattern %{TIMESTAMP_ISO8601:Timestamp} %{NUMBER:Pid} %{LOGLEVEL:log_level} %{NOTSPACE:python_module} \[(?:req-(?:%{NOTSPACE:request_id}) (?:%{NOTSPACE:user_id}) (?:%{NOTSPACE:tenant_id}) (?:%{NOTSPACE:domain_id}) (?:%{NOTSPACE:user_domain}) (?:%{NOTSPACE:project_domain})|-)\] %{GREEDYDATA:Payload}
|
|
time_format "%Y-%m-%d %H:%M:%S.%L"
|
|
time_key Timestamp
|
|
keep_time_key true
|
|
</filter>
|