You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The failures line chart does not show the current number of failures over time.
I have to refresh the page to get the line chart updated on the chart, The green RPS line does update and show up however the red line goes to 0 and it stays there.
Opens the charts tab
The next time the chart refreshes the failures line goes to zero and stays there
Refresh the page to see the failures.
Red line goes to zero and stays there over time.
Command line
-f my_test.py --autostart --modern-ui
Locustfile contents
N/A
Python version
3.11
Locust version
2.18.3
Operating system
MacOS
The text was updated successfully, but these errors were encountered:
Are you able to reproduce this issue using the old UI?
No I am not, the issue is not present in the old UI when running the same test.
If possible, could you include the contents of your locust file?
Below relevant details about the locust file,
classFastUser(FastHttpUser):
tasks= [FastUserTasks]
classFastUserTasks(TaskSet):
@tag("Task1")@task(1)deftask1(self):
""" I omitted how below variables are generated. Overall, there is some logic that generates protobuf messages that are sent as binary over http post action when executing the tasks, I have around 22 tasks that send different protobuf messages. """self.client.post(
url,
name=f"/{message_type}",
data=message,
headers={
"Content-Type": "application/octet-stream"
}
)
Please let me know if you need any extra information.
Prerequisites
Description
The failures line chart does not show the current number of failures over time.
I have to refresh the page to get the line chart updated on the chart, The green RPS line does update and show up however the red line goes to 0 and it stays there.
Command line
-f my_test.py --autostart --modern-ui
Locustfile contents
Python version
3.11
Locust version
2.18.3
Operating system
MacOS
The text was updated successfully, but these errors were encountered: