-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More information in csv reports #1292
Comments
Hi, I also would agree with alien11689's request. |
I have run some tests on current master with option '--csv=result --csv-full-history' then I receive error When I change property from the error: - def __init__(self, stats, name, method, use_response_times_cache=False):
+ def __init__(self, stats, name, method, use_response_times_cache=True): Specific entries for tasks are collected, but after a few seconds percentiles are set to 0:
|
I have found that the problem is with if percent == 0.5:
print("Acceptable timestamps %s" % (acceptable_timestamps))
print("Response time cache %s" % (self.response_times_cache.keys())) and in master logs I saw only at the beginning:
and at the end:
|
I have created PR: #1297 |
I added total_users count for detailed stats. |
This feature makes sense.
Ah, you've discovered a bug. I've opened up a new issue for this: #1315 |
Problem
I am going to run tests with locust without web ui and it would be great to have much more detail information in locust csv report to create some charts on my own.
What I need
I would like to have in
*_stats_history.csv
file information about:None,Aggregated
)Alternatives
As an alternative I have considered console output, but it is not very convienient for parsing.
The text was updated successfully, but these errors were encountered: