I have a dashboard in which i have one table chart. In column a of that table i have some 5-7 values. Whenever i click any value of table it is getting drill-down to other dashboard. Each value of column A has different kind of drilldown dashboard. for example if i click on first value it shows 4 charts in drilldown dashboard and when click on second value drilldown to separate dashboard having 3 charts. None of the drilldown dashboard shows same kind of data and charts.
So is it possible in splunk that i can have one dynamic drilldown dashboard for all value and whenever i click on any column A value the drilldown dashboard must show all the panels as per the click value. It will pass the table's column A value in drilldown dashboard and accorrding to that value the drilldown dashboard shows charts.
Hi @anirudhgl,
Please try this.
<drilldown>
<condition match="$click.value2|s$=" <some-value-here-no-space-on-both-the-sides> "">
<link>
<![CDATA[
/app/your_app_name/dashboard_name?column_clicked=$click.name2$&value_clicked=$click.value2$
]]>
</link>
</condition>
...... more conditions with match ...........
<condition> <!-- condition without match is like else, if nothing matched this link will be used. -->
<link>
<![CDATA[
/app/your_app_name/dashboard_name?column_clicked=$click.name2$&value_clicked=$click.value2$
]]>
</link>
</condition>
</drilldown>
Hope this helps!!!
Hi Harsh,
With your above resolution we have to create separate drilldown dashboard for all value present in source dashboard So whichever value gets clicked it will drilldown to that specific dahboard.
Is there any way that we can have one drilldown dashboard and whatever value we click on in source dashboard it should update the panels in that dashboard only.
Thanks,
Sachin
Hi @sachinbansal,
You don't have to create different dashboards. You can show panels based on tokens set like the following:
<panel depends="$token1$">
your panel xml here...
</panel>
Hi @harshpatel ,
Sorry man but did not get your point. In which dashboard we need to use that and how is it gonna work?
Thanks
@sachinbansal - What Harsh is saying is that, with depends
in row and panel you can hide row or panel from the dashboard, when you set the $token1$ then only panel will be shown to dashboard.
When you go to /app/your_app_name/dashboard_name?column_clicked=$click.name2$ link Splunk automatically set token column_clicked
in the dashboard.
So if you have some panel depends on this token it will be visible in dashboard. Other panels might be depends on other token will not be visible.
@VatsalJagani - So we will get the clicked value in column_clicked token and in drill down dashboard we have to set different token as per the value we have in column_clicked token and then make specific panel depends on specific token.
Am i right?
Thanks
@sachinbansal Yes correct
Great. So one more thing can iwe similarly change the panel and dashboard label of drilldown dashboard as per the value we have clicked on in source dashboard.
Does tokens work under label tag?
Not sure about dashboard label, but it works in panel or chart title.
Hi @anirudhgl ,
You can set the value of the token passed to the drilldown dashboard based on the column clicked as follows:
<drilldown>
<link>
<![CDATA[
/app/your_app_name/dashboard_name?column_clicked=$click.name2$&value_clicked=$click.value2$
]]>
</link>
</drilldown>
Also, you can find different tokens available at drilldown here: https://docs.splunk.com/Documentation/Splunk/7.2.6/Viz/PanelreferenceforSimplifiedXML#Predefined_dri...