I am creating a splunk dashboard with a few reports.
On one report (outputted as a table), I want a long url to be replaced by a short number.
When clicking that number (VIA THE PDF DASHBOARD REPORT) , I want it to go to the external url.
Placing just the url works, but it's broken cause it's to long and wont open the full URL.
I followed the following guide:
https://answers.splunk.com/answers/542437/how-can-i-show-customized-hyperlink-text-on-a-dash.html
It works while viewing the dashboard in a browser except for I still don't know how to edit the link correctly.
<row>
<panel>
<html>
<style>
</style>
</html>
<table>
<title>Report</title>
<search ref="Report"></search>
<fields>Name, QueueTime, FinishTime, Result, BuildId</fields>
<option name="count">10</option>
<option name="drilldown">cell</option>
<drilldown target="_blank">
<condition field="BuildId">
<link target="_blank">
$row.URL$ # Not working . URL is the name of the filed with the long url that I want replaced by another field with a short number
https://google.com # Works
</link>
</condition>
</drilldown>
</table>
</panel>
</row>
index="reports"
| where (source LIKE "%Report%")
| eval BuildId = Id + ""
| table Name, QueueTime, FinishTime, Result
... View more