5
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

kubectl topで負荷順にソートする方法

Posted at

kubectl topでメモリやcpuの負荷順に見たい場合の対応方法がgithubのissueで公開されていたのでここで紹介します.

--sort-by オプションが利用可能ですが、バグが含まれていて正常にソートされず、v1.18で修正されているようです(未確認).

ということで、v1.18未満の場合は以下のシェルでソートしましょうとのこと

# CPUで降順ソートする場合
kubectl top pod | sort --reverse --key 2 --numeric

# メモリで降順ソートする場合
kubectl top pod | sort --reverse --key 3 --numeric

NAME CPU(cores) MEMORY(bytes)

この順で出力されるので、 --key 2を指定すれば二列目のCPUで、 --key 3を指定すれば三列目のMEMORYでソートされるというわけです.

5
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?