Hello,
I have two dashboards, both with some input fields, with one of them being common between both; a multiselect input field.
This multiselect input field has a token prefix and a suffix with the delimiter OR.
<label>Application</label>
<choice value="app1">A</choice>
<choice value="app2">B</choice>
<valuePrefix>index=phase-</valuePrefix>
<valueSuffix>-app</valueSuffix>
<delimiter> OR </delimiter>
</input>
and in the search query, I have
| tstats count as Total WHERE ($app$)
So in the original dashboard, the search is fine.
However, in drilldown, I have Link to another dashboard
form.app=$app$
and this causes problems as it passes "index=phase-A-app OR index=phase-B-app" in form.app and in the target dashboard, due to the same token suffix and prefix , the token changes to "index=phase-index=phase-A-app OR index=phase-B-app-app" which is wrong.
So, my question is, how do I deal with this to be able to send form.app=A form.app=B to the destination dashboard?
Thanks in advance,
Regards,
aahiri
... View more