Dashboards & Visualizations

link does not work if the token click.value2 contains a URL

burgi500
New Member

Hi

I try to make field which contains a plain URL (https://www.example.com/?parmaters) clickable. Therefore I use the drilldown feature with

        <condition field="session_url">
          <link>
             $click.value2$
          </link>
      </condition>
    </drilldown>

If I click on the field I get an error message. Does someone know a solution for this?

Regards,
Egon

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

You would need to use external java script to achieve the same. Have a look at following link

https://answers.splunk.com/answers/85517/drill-down-to-absolute-url-using-click-value.html

OR see the example "Drilldown URL Field Value" in the Splunk 6.x Dashboard example app (https://splunkbase.splunk.com/app/1603/)

View solution in original post

0 Karma

michtek
Explorer

For me it works once I concatenate the static part of the URL with the parameters as in the example below. In your case you would need to extract the "sessionid" field.

<drilldown target="_blank">
   <condition field="session_url">
     <link>http://www.example.com?sessionid=$row.sessionid$</link>
   </condition>
 </drilldown>
0 Karma

burgi500
New Member

Hi michtek

I know concatenate works. But if you the variable contains the whole URL, splunk prepends:
http://yoursplunkserver:8080/de-DE/app/search/

This is the problem I am facing

Regards,
Egon

0 Karma

somesoni2
Revered Legend

You would need to use external java script to achieve the same. Have a look at following link

https://answers.splunk.com/answers/85517/drill-down-to-absolute-url-using-click-value.html

OR see the example "Drilldown URL Field Value" in the Splunk 6.x Dashboard example app (https://splunkbase.splunk.com/app/1603/)

0 Karma

sundareshr
Legend

Try using CDATA to encode the URL. Like this `'

Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...