Hi,
I want to do this, but I'd prefer to do it in Simple XML. Is it possible?
http://docs.splunk.com/Documentation/Splunk/6.3.1/AdvancedDev/TableChartDrilldown#Swap_out_the_underlying_search
I have a table in a dashboard, that shows available log files to the users.
When I drill down, I want to use the values from the row that was clicked, but I don't want the search from the table to go into the drilldown search. That would make the user search in the summary index - and that doesn't make sense, since the index is part of the row clicked!
<dashboard>
<label>View all logs</label>
<row>
<panel>
<table>
<search>
<query>index=* | dedup sourcetype, index, source | table sourcetype, index, source</query>
<earliest>-15m</earliest>
<latest>now</latest>
</search>
<option name="wrap">true</option>
<option name="rowNumbers">true</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">row</option>
<option name="count">100</option>
<option name="table.sortColumn">index</option>
</table>
</panel>
</row>
</dashboard>
Once I get it right, I'll change the dashboard to be powered by a summary index. That just makes it even more important that the drilldown search does not contain the table search.
... View more