I have two fields total_size and size_used
How can I calculate %used and output as a new field %used
TIA
Hi @nathanluke86
Try this:
<your search>|eval used_perc=round((total_used/total_size)*100,2)
Hi @nathanluke86
Try this:
<your search>|eval used_perc=round((total_used/total_size)*100,2)
Great Thanks