I am trying to display the response times of services for the last 7 days in a chart , but I want to round the response time .
for example I only want 2 digits to be displayed after decimal .
My query :-
| chart avg(response_time) over services by Date
| foreach * [eval response_time = round(response_time,2)]
But the above query doesn't work for me
↧