Add_field to add a custom hyperlink

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}" }
  }
}

It's Kibana you're talking about, right? If so I suggest you edit your post and move it to the Kibana category.

Anyway, have a look at field formatters: https://www.elastic.co/blog/kibana-4-1-field-formatters

1 Like

Finally got it to work. Thanks!