我需要每分钟(近实时模式)将保存在临时文件中的 nmon 信息存储在外部存储库中。
那么最好的情况是什么样的呢:
1)我每分钟打开一个 ssh shell,运行以下命令并将其导出到外部存储库
nmon -F filename -c 1 -s 15
在哪里
parameter c -> Specifies the number snapshots that must be taken by the command
parameter s -> Specifies the interval in seconds between 2 consecutive recording snapshots
2)每 10 分钟我打开一个 ssh shell,运行以下命令并将其导出到外部存储库
nmon -F filename -c 10 -s 60
为了减少资源消耗,您有什么建议?
提前致谢