Hello,
I´m using Kibana in combination of ES for a Managed File System and I created recently a Retention Handler that cleans up my File System from old files.
For each deleted File I created a simple document in ES. That looks like this:
Important is here the Field _source.File.ResultFilename because I want to create, using script field function of the index pattern, a URL that gives the user a direct link to the File System for Debugging.
So I created my own scripted field that looks like:
I want to create a URL like file:///{path}. But Kibana behaves differently: If I use the discover function of Kibana and click on the label "Goto Dir".
It opens a new tab and goes to the link "http://localhost:5601/app/file:///{path}". I want to remove by default "http://localhost:5601/app/" from the URL. Please can you help me to solve this problem and sorry for my bad English.
Chris