I have a table with a few columns in it. One of the columns is 'url'. I would like to construct a relative search URL that opens in a new tab.
{
"type": "drilldown.customUrl",
"options": {
"url": "/en-US/app/search/search?q=search%20index%3D\"$index$\"%20url%3D\"$click.value$\"",
"newTab": true
}
}
Token resolution works. $index$ is replaced as it should be (this is an existing token on my dashboard). But I can't seem to access anything in table. $click.value$ is clearly wrong. I've tried a bunch of other styles from the docs too.
$row.url.value$
$row.url$
$row.value.2$
$url.value$
The problem I think is that I'm looking at documentation for older Splunk versions and/or documentation for the classic xml dashboard.
What's the correct way to do this? Also, is there up-to-date documentation available for this?
... View more