アプリのストレステストにイナゴを使用しています。
POST 呼び出しが正しくないように見えるため、エラーが発生します。イナゴのログはどこで確認できますか? 何が問題なのかを確認するために、post 呼び出しがどのように見えるかを確認したいと思います。
誰かが私が間違っていることを教えてくれる場合に備えて、私のコードは次のとおりです。
from locust import HttpLocust, TaskSet, task
json3 = """{"stack_name": "beenz-php-app-12", "disable_rollback": true, "template": "php", "timeout_mins": 60}"""
class MyTaskSet(TaskSet):
@task
def send(self):
response = self.client.post("/stacks", json3, headers={'X-Auth-Key': 'xxxx', 'Content-Type': 'application/json', 'X-Auth-User': 'xxxx', 'Accept': 'application/json', 'X-Auth-Token':'xxxx'})
print "Response status code:", response.status_code
print "Response content:", response.content
class MyLocust(HttpLocust):
task_set = MyTaskSet
min_wait = 5000
max_wait = 15000
ありがとう!