我在Google Compute Engine(GCE)上运行多个CoreOS实例.CoreOS使用systemd的日志记录功能.如何将所有日志推送到远程目标?据我所知,systemd日志没有远程日志记录功能.我目前的解决方案看起来像这样:
journalctl -o short -f | ncat
使用https://logentries.com 通过TCP使用基于令牌的输入:
journalctl -o short -f | awk '{ print "", $0; fflush(); }' | ncat data.logentries.com 10000
还有更好的方法吗?
编辑: https ://medium.com/coreos-linux-for-massive-server-deployments/defb984185c5
systemd过去版本216包括通过客户端/服务器进程对的远程日志记录功能.
http://www.freedesktop.org/software/systemd/man/systemd-journal-remote.html
使用的缺点-o short
是格式难以解析; short-iso
更好.如果您使用的是ELK堆栈,那么以JSON格式导出会更好.像下面这样的系统服务可以很好地将JSON格式的日志发送到远程主机.
[Unit] Description=Send Journalctl to Syslog [Service] TimeoutStartSec=0 ExecStart=/bin/sh -c '/usr/bin/journalctl -o json -f | /usr/bin/ncat syslog 515' Restart=always RestartSec=5s [Install] WantedBy=multi-user.target
在远端,logstash.conf
对我来说包括:
input { tcp { port => 1515 codec => json_lines type => "systemd" } } filter { if [type] == "systemd" { mutate { rename => [ "MESSAGE", "message" ] } mutate { rename => [ "_SYSTEMD_UNIT", "program" ] } } }
这导致整个journalctl数据结构可供Kibana/Elasticsearch使用.