1
1

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.

Locust (Python製の負荷試験ツール) のメモ

Last updated at Posted at 2021-07-21

Python 製負荷試験ツールの Locust が良い感じだったので共有します。
ちなみに Locust っていうのはトビバッタの事らしくて、センスを感じますね。


↑ image by https://locust.io/

負荷試験ツールに求めていたこと

簡単な試験をしたいので、ツールに求めていたのは以下の事柄です。

  • 設定ファイルができればxmlでないもの
  • 負荷を徐々に上げる設定ができるもの
  • dokcerコンテナで動かせること
  • ツールがメンテナンスされていること

手順

  • locustfile.py(シナリオや設定)を準備する
  • docker run -p 8089:8089 -v $PWD:/mnt/locust locustio/locust -f /mnt/locust/locustfile.py で実行する

ref

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?