Kibana Visualization - DataTable filtering

Hi Everyone,

I have created a datatable visualization which contains several columns.There is a field status which contains PASS/ FAIL. If the status is PASS some of the columns are empty, I want to update those values as NA.Is there any possibility to do that.can anyone please help me with this?

My visualization is somewhat similar to the below image.I want to update bytes,Average bytes column as NA if Min bytes is empty.

A scripted field on the index pattern would do the trick. I created one called formattedBytes, made it of type string, and used this script:

return doc['bytes'].value != 0 ? doc['bytes'].value : 'N/A'

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.