nmon 정보가 임시 파일에 저장된 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
자원 소비를 줄이기 위해 무엇을 제안합니까?
고마워요