본문 바로가기

⭐ Kubernetes & EKS/명령어 모음

pod cpu 및 메모리 사용량 확인

728x90
반응형

# 실행중인 pod의 CPU 및 메모리의 사용량을 확인해보자.

1. 우선 top로 리소스를 확인하기 위해서는 Metric이 설치 되어 있어야 한다.

# kubectl top nodes
NAME                           CPU(cores)   CPU%   MEMORY(bytes)   MEMORY%
ap-northeast-2.compute.internal   65m          0%     600Mi           1%
ap-northeast-2.compute.internal    65m          0%     668Mi           2

2. pod의 CPU와 Memory의 사용량을 확인하는 방법은 아래와 같다.

kubectl top pod
kubectl top pod -n [namespace_name]
kubectl top pod [pod_name] -n [namespace_name]

- 끝 -

728x90
반응형

'⭐ Kubernetes & EKS > 명령어 모음' 카테고리의 다른 글

eks 클러스터 확인  (0) 2022.07.25
쿠버네티스 주요명령어 모음  (0) 2021.10.09
쿠버네티스 주요 명령어 설명  (0) 2021.10.07