I'm totally new to kibana.
I have the current problem, I created a visualisation chart which is splitting rows based on the UUID. In this Index, I unfortunately don't have the related organisation name to the UUID.
My question now is can I map the UUIDs to a specific String value using "advanced JSON input"? So i see the organisation names instead of the UUIDs.
Eg.
if organisation_uuid == "1001" {
organisation_uuid = "Organisation 1"
} else if organisation_uuid == "1002" {
organisation_uuid = "Organisation 2"
} else if ...
Thank you in advance for helping a newbie