Ngxtop -l file_name
仅接受 1 个日志文件作为输入,有什么方法可以将 2 个日志文件传递给 ngxtop 进行监控?或者将两个文件合并为 1 个,以便可以同时监控它们?
答案1
如果您有多个文件,一种方法是cat
先使用连接文件。
前任:cat file_new.log >> file_old.log
然后你可以使用ngxtop -l file_old.log
您可以轻松扩展此方法以通过 ngxtop 使用任意数量的文件。
Ngxtop -l file_name
仅接受 1 个日志文件作为输入,有什么方法可以将 2 个日志文件传递给 ngxtop 进行监控?或者将两个文件合并为 1 个,以便可以同时监控它们?
如果您有多个文件,一种方法是cat
先使用连接文件。
前任:cat file_new.log >> file_old.log
然后你可以使用ngxtop -l file_old.log
您可以轻松扩展此方法以通过 ngxtop 使用任意数量的文件。