Dashboards & Visualizations

passing two tokens using simple xml

himynamesdave
Contributor

<drilldown>
<link>manual_search-verification?form.index="$index$"&field="$field$"</link>
</drilldown>

I am trying to pass two tokens using a drilldown on a table object.

Splunk will not let me pass two tokens using an & operator (see code) - I get an XML syntax error (says it is expecting [;]... not sure how to implement this)

How should I be writing this query?

Thanks for the help all!

Tags (1)
0 Karma
1 Solution

himynamesdave
Contributor

OK I've solved this myself, hope it helps someone else out too...

So instead of using "&" to join the query use "&amp;". For example:

<link>view?form.index="$index$"&amp;field="$field$"</link>

NOT:

<link>view?form.index="$index$"&field="$field$"</link>

View solution in original post

himynamesdave
Contributor

OK I've solved this myself, hope it helps someone else out too...

So instead of using "&" to join the query use "&amp;". For example:

<link>view?form.index="$index$"&amp;field="$field$"</link>

NOT:

<link>view?form.index="$index$"&field="$field$"</link>

marciniega
Explorer

Old post, but this helped me out. Thanks for checking back in!

0 Karma

lguinn2
Legend

You could also use CDATA to enclose text that you don't want to be processed as XML, like this

<link><![CDATA[view?form.index="$index$"&field="$field$"]]></link>
0 Karma

rroberts
Splunk Employee
Splunk Employee

CDATA block is the way to go I think. Much easier.

0 Karma

marciniega
Explorer

Also helpful, thank you!

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...