hello
I dont succeed to round the fiel ResponseTime which is a decimaf field with a point instaed a comma
index=tutu
| eval web_duration_ms=round('web_duration_ms', 0)
| timechart avg(web_duration_ms) as ResponseTime by Url
what is wrong please?
@jip31 Please try using the below code:
index=tutu
| timechart avg(web_duration_ms) as ResponseTime by Url
| eval ResponseTime=round(ResponseTime, 3)
Also, if this reply helped you a thumbs up would be appreciated.
hi
it dont works
is anybody can help please?