Hi!
I have a dashboard with a statistics table.
I would like to open a URL when I click on one value of that table.
The problem is that the url is like this:
http://mywebsite.com/no/report.asp?ticket_id=xxxx&TIPO_STAMPA=INT
and I have to replace the "xxxx" value with a click value.
I tried to modify my XML in this way:
<drilldown>
<link>http://mywebsite.com/no/report.asp?ticket_id=$click.value2$&TIPO_STAMPA=INT</link>
</drilldown>
but it doesn't work maybe because there is "&TIPO_STAMPA=INT" after the token.
Anyone can help me?
Thanks a lot!
Hi ngerosa,
did you alredy tried to replace &
with &
?
Bye.
Giuseppe
Have you tried "CDATA", like this:
<link>
<![CDATA[http://mywebsite.com/no/report.asp?ticket_id=$click.value2$&TIPO_STAMPA=INT]>
</link>
more infos: docs.splunk.com
Hi ngerosa,
did you alredy tried to replace &
with &
?
Bye.
Giuseppe
It works!
Thanks a lot Giuseppe