Is there a way to format the floating values displayed on the charts?
Round is not valid within the stats command. That's why I said to add it after stats.
Hello Rich, Thank you for getting back so quickly. Can I use round with stats?
ie. | stats avg(A), avg(B) by hardware, build
When I try
Error in 'stats' command: The argument 'round(avg(A),2)' is invalid.
Round is not valid within the stats command. That's why I said to add it after stats.
Thank you!!
Use the round function after the stats or chart command.
| eval foo = round(foo, 2)