반응형
실질 메모리 사용률
실질 메모리 사용량
캐시 영역을 제외한 메모리 사용량
공식
real_usage=usedtotal∗100(%)
계산 명령어
free | grep ^Mem | awk '{printf "actual_usage=%s, total=%s, actual_usage_ratio=%.2f%% \n", $3, $2, $3*100/$2}'
명목 메모리 사용률
명목 메모리 사용량
실질 메모리 사용량과 캐시 영역을 포함한 메모리 사용량을 더한 양
공식
usage=used+buff/cachetotal∗100(%)
계산 명령어
free | grep ^Mem | awk '{printf "nominal_usage=%s, total=%s, nominal_usage_ratio=%.2f%% \n", $3+$6, $2, ($3+$6)*100/$2}'
CentOS6 버전일 경우 아래 링크 참고
https://intro0517.tistory.com/246
반응형
'Server' 카테고리의 다른 글
[CentOS] tar를 이용한 백업/복구 (0) | 2023.01.21 |
---|---|
인터넷 안되는 환경에서 yum 설치 (rpm 패키지 다운로드) (1) | 2022.09.29 |
[CentOS6] 메모리 실제 사용률 스크립트 확인 (0) | 2022.03.15 |
[Debian] Apache 모듈 활성화 및 로드된 모듈 확인 (0) | 2022.02.04 |
Nginx 13: Permission denied) while connecting to upstream (해결법3) (0) | 2021.04.07 |
댓글