我有来自 locustio 文档的下一个代码:
from locust import HttpLocust, TaskSet, between
def login(l):
l.client.post("/login", {"username":"ellen_key", "password":"education"})
def logout(l):
l.client.post("/logout", {"username":"ellen_key", "password":"education"})
def index(l):
l.client.get("/")
def profile(l):
l.client.get("/profile")
class UserBehavior(TaskSet):
tasks = {index: 2, profile: 1}
def on_start(self):
login(self)
def on_stop(self):
logout(self)
class WebsiteUser(HttpLocust):
task_set = UserBehavior
wait_time = between(5.0, 9.0)
在 locust 日志和 locust web (localhost:8089) 我看到了下一个任务
- /login
- /logout
- /
- /profile
但是,如果我需要在一项任务中获得很少的请求并从完整任务(不是 1 个请求)中获取度量,该怎么办。
我想看到的是:
- login
- logout
- index
- profile
我想查看任务名称而不是请求 url。在 Jmeter 中,我可以在一个操作中插入少量请求并获得操作时间(不是请求)。