0
2

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.

AWS EC2の負荷試験[CPU/メモリ/Disk]

Last updated at Posted at 2021-02-17

はじめに

CloudWatchアラームをアラート状態にして、発報を確認する際に、CPU/メモリ/Diskに対する負荷をかけるコマンドまとめます。

実行コマンド

  1. 下記を実行してCPUに負荷をかけます。

    CPU負荷コマンド
    # 実行コマンド
    while true; do (/dev/null < $(yes) &); done
    
    # 確認用コマンド
    top
    
  2. 下記を実行してメモリに負荷をかけます。

    メモリ負荷コマンド
    # インストール
    sudo yum install stress -y
    
    # 実行コマンド
    stress --vm 3 --vm-bytes 6G --vm-keep
    
    # 確認用コマンド
    watch 'free -mh'
    

※ オプションのvmはプロセス数、vm-bytesはメモリサイズ、vm-keepは処理を持続させます。

  1. 下記を実行してDiskに負荷をかけます。

    Disk負荷コマンド
    # 実行コマンド
    dd if=/dev/zero of=70G.dummy bs=700M count=100
    
    # 確認用コマンド
    watch 'df -h'
    

※ オプションのofはファイル名、bsはバイト数、countは生成処理の実行回数です。

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?