Hi, I was having the same issue at first. Looks like you will just need to make your url one whole line for this to have the functionality you want. {
"type": "drilldown.customUrl",
"options": {
"url": "/en-US/app/search/search?q=search%20index%3D\$index$\%20url%3D\$click.value$\",
"newTab": true
}
} If it isn't working then you may need to add the whole url path to the url input: {
"type": "drilldown.customUrl",
"options": {
"url": "https://my-splunkpath.com/en-US/app/search/search?q=search%20index%3D\$index$\%20url%3D\$click.value$\",
"newTab": true
}
} If the click value isn't working you may want to look at your tokens above. I added another token event handler to set the token before the url handle. It does have a bit of a delay on my end though. Hopefully this adds a bit of direction for further use. "eventHandlers": [
{
"type": "drilldown.setToken",
"options": {
"tokens": [
{
"token": "selection_tok",
"key": "click.value"
}
]
}
},{
"type": "drilldown.customUrl",
"options": {
"url": "/en-US/app/search/search?q=search%20index%3D\$index$\%20url%3D\$selection_tok$\",
"newTab": true
}
} Hope that helps / fills in some of the gaps for new people looking into adding dynamic search to their dashboard.
... View more