Is there any way to add a hyperlink to the data table? A clickable hyperlink? I am concatenating the field called Id, which lives in my document.
I can get a url into the document, but it's not clickable, it's just plain text.
This is what I am using:
filter {
mutate {
add_field => { "data Record" => "https://hyperlink_url/%{Id}" }
}
}