如何在 systemd 的 journalctl 中显示 syslog 优先级

如何在 systemd 的 journalctl 中显示 syslog 优先级

journalctl允许我根据优先级进行过滤(-p)并在输出中对优先级进行颜色编码。但是有没有办法让它直接以文本形式输出优先级?

答案1

以下输出选项显示优先级(和设施),但格式不同:

journalctl -o verbose
journalctl -o json (and json-pretty)
journalctl -o export

答案2

journalctl --output cat --output-fields MESSAGE,PRIORITY

不幸的是,优先级只打印在一行上,并且是数字。

相关内容