我有一个Logstash配置,我一直在使用该配置转发电子邮件中的日志消息。它使用json
和json_encode
解析和重新编码JSON日志消息。json_encode
用于漂亮地打印JSON,从而使电子邮件看起来非常漂亮。不幸的是,随着最近Logstash的升级,它不再具有漂亮的打印效果。
有什么办法可以将事件的漂亮形式放入可用于电子邮件正文的字段中?我对JSON,Ruby调试或大多数其他人类可读格式都满意。
filter {
if [type] == "bunyan" {
# Save a copy of the message, in case we need to pretty-print later
mutate {
add_field => { "@orig_message" => "%{message}" }
}
json {
source => "message"
add_tag => "json"
}
}
// other filters that might add an "email" tag
if "email" in [tags] {
# pretty-print JSON for the email
if "json" in [tags] {
# re-parse the message into a field we can encode
json {
source => "@orig_message"
target => "body"
}
# encode the message, but pretty this time
json_encode {
source => "body"
target => "body"
}
}
# escape the body for HTML output
mutate {
add_field => { htmlbody => "%{body}" }
}
mutate {
gsub => [
'htmlbody', '&', '&',
'htmlbody', '<', '<'
]
}
}
}
output {
if "email" in [tags] and "throttled" not in [tags] {
email {
options => {
# config stuff...
}
body => "%{body}"
htmlbody => "
<table>
<tr><td>host:</td><td>%{host}</td></tr>
<tr><td>when:</td><td>%{@timestamp}</td></tr>
</table>
<pre>%{htmlbody}</pre>
"
}
}
}
最佳答案
正如roxiblue所说,此问题是由logstash的new JSON parser(JrJackson)引起的。您可以使用old parser作为解决方法,直到再次添加漂亮打印支持。方法如下:
您需要更改插件的ruby文件的两行。路径应类似于:
LS_HOME/vendor/bundle/jruby/1.9/gems/logstash-filter-json_encode-0.1.5/lib/logstash/filters/json_encode.rb
更改行 5
require "logstash/json"
进入
require "json"
并更改行 44
event[@target] = LogStash::Json.dump(event[@source])
进入
event[@target] = JSON.pretty_generate(event[@source])
就这样。重新启动后,logstash应该再次打印漂亮。
补充:
如果您不喜欢更改红宝石源,也可以使用红宝石过滤器代替json_encode:
# encode the message, but pretty this time
ruby {
init => "require 'json'"
code => "event['body'] = JSON.pretty_generate(event['body'])"
}
关于json - 如何在Logstash中为电子邮件正文漂亮地打印JSON?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32077228/