매분마다(거의 실시간 모드에서) 임시 파일에 저장된 nmon 정보를 외부 저장소에 저장해야 합니다.
그렇다면 가장 좋은 시나리오는 무엇입니까?
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
자원 소비를 줄이기 위해 무엇을 제안하시나요?
미리 감사드립니다