-
Notifications
You must be signed in to change notification settings - Fork 590
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
Queries with runtime over 1s are not summed up. #876
Comments
Hey there, Unfortunately we don't support this version anymore. Please check out our support policy on which versions we are currently supporting. Can you please try to upgrade to the latest version and see if your problem persists? We'll help you out and re-open this issue if so. Thanks! |
Hi, The code hasn't changed in the 3.x branch, it still uses the same |
@janolivermr let's see how the pr goes |
[3.x] Remove thousands separator in time records (#876)
Description:
Queries that run longer than 1 second are not summed in the request queries list.
This is likely due to the use of the
number_format
function, which adds thousands separators.In the vue frontend, the reduce function uses a
parse_float
which can't handle the thousands separator.Steps To Reproduce:
Make a DB query that takes longer than 1 second inside a request.
View the request in Telescope and check the queries list. The long running query time will not be taken into account for the query time total.
The text was updated successfully, but these errors were encountered: