- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

memarshall63
Communicator
03-11-2019
12:40 PM
I coded this drill down from my panel:
<panel>
<table>
<search>
<query>| makeresults
| eval base = "www.google.com"
| eval full = "http://www.google.com"
| eval word = "google"</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="count">10</option>
<option name="drilldown">cell</option>
<drilldown>
<link target="_blank">$row.full$</link>
</drilldown>
</table>
</panel>
I want the drill down to go to the full URL that's in $row.full$. However, Splunk seems to assume this is a relative path. If I use
<drilldown>
<link target="_blank">http://$row.base$</link>
</drilldown>
It works as expected. The field I want to use as a target URL has the full path in it. So I'd rather just use $row.full$ as the target.
Is there a way to tell splunk it's a full URL?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

niketn
Legend
03-11-2019
01:27 PM
@memarshall63 try with Token Filter |n
which means no filter on existing token.
<link target="_blank">$row.full|n$</link>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
| makeresults | eval message= "Happy Splunking!!!"
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

niketn
Legend
03-11-2019
01:27 PM
@memarshall63 try with Token Filter |n
which means no filter on existing token.
<link target="_blank">$row.full|n$</link>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
| makeresults | eval message= "Happy Splunking!!!"
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

memarshall63
Communicator
03-12-2019
07:17 AM
Nice. Thanks very much.
