我应该如何使用systemd处理远程日志记录?

前端之家收集整理的这篇文章主要介绍了我应该如何使用systemd处理远程日志记录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在Google Compute Engine(GCE)上运行多个CoreOS实例. CoreOS使用systemd的日志记录功能.如何将所有日志推送到远程目标?据我所知,systemd日志没有远程日志记录功能.我目前的解决方案看起来像这样:

journalctl -o short -f | ncat 

随着https://logentries.com使用他们的Token-based input via TCP

journalctl -o short -f | awk '{ print "

还有更好的方法吗?

编辑:https://medium.com/coreos-linux-for-massive-server-deployments/defb984185c5

systemd过去版本216包括通过客户端/服务器进程对的远程日志记录功能.

http://www.freedesktop.org/software/systemd/man/systemd-journal-remote.html

原文链接:https://www.f2er.com/docker/437031.html

猜你在找的Docker相关文章