一時ファイルに保存された nmon 情報を、1 分ごとに (ほぼリアルタイム モードで) 外部リポジトリに保存する必要があります。
では、最良のシナリオは何でしょうか:
1) 1分ごとにsshシェルを開き、以下のコマンドを実行して外部リポジトリにエクスポートします。
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シェルを開き、以下のコマンドを実行して外部リポジトリにエクスポートします。
nmon -F filename -c 10 -s 60
資源消費を削減するために、どのような提案がありますか?
よろしくお願いします