<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help On Drill Down Using Avanced XML in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-On-Drill-Down-Using-Avanced-XML/m-p/66131#M3493</link>
    <description>&lt;P&gt;First, it's worth saying that if your advanced XML was ever converted from Simple XML (which most is),  then a lot of the XML content and the indentation is actually unnecessary cruft carried along by the conversion process or introduced by the simple XML code itself. &lt;/P&gt;

&lt;P&gt;Here's a quickly cleaned up version of the same XML you posted.  removing the cruft makes it a &lt;EM&gt;bit&lt;/EM&gt; easier to read. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row5_col1" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-1d@d&amp;lt;/param&amp;gt;
  &amp;lt;param name="latest"&amp;gt;@d&amp;lt;/param&amp;gt;
  &amp;lt;module name="StaticContentSample"&amp;gt;
    &amp;lt;param name="text"&amp;gt;&amp;lt;![CDATA[&amp;lt;H1&amp;gt;Top N&amp;lt;/H1&amp;gt;]]&amp;gt;&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="JobProgressIndicator"/&amp;gt;
  &amp;lt;module name="EnablePreview"&amp;gt;
    &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="Paginator"&amp;gt;
    &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
    &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;

    &amp;lt;module name="SimpleResultsTable"&amp;gt;
      &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
      &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;
      &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
    &amp;lt;module name="ViewRedirectorLink"&amp;gt;
      &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;To answer your question,  with just the Core Splunk UI I believe you can use the SimpleDrilldown module. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row5_col1" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-1d@d&amp;lt;/param&amp;gt;
  &amp;lt;param name="latest"&amp;gt;@d&amp;lt;/param&amp;gt;
  &amp;lt;module name="StaticContentSample"&amp;gt;
    &amp;lt;param name="text"&amp;gt;&amp;lt;![CDATA[&amp;lt;H1&amp;gt;Top N&amp;lt;/H1&amp;gt;]]&amp;gt;&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="JobProgressIndicator"/&amp;gt;
  &amp;lt;module name="EnablePreview"&amp;gt;
    &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="Paginator"&amp;gt;
    &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
    &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;
    &amp;lt;module name="SimpleResultsTable"&amp;gt;
      &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
      &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;
      &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;

      &amp;lt;module name="SimpleDrilldown"&amp;gt;
        &amp;lt;param name="links"&amp;gt;
          &amp;lt;param name="*"&amp;gt;/app/search/flashtimeline?q=search splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank AND LastQuery="$row.LastQuery$" |sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
        &amp;lt;/param&amp;gt;
      &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
    &amp;lt;module name="ViewRedirectorLink"&amp;gt;
      &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Although NOTE 1: that example will result in an all-time search in the flashtimeline view (I'm not sure how you pass the current timerange using the core systems). &lt;/P&gt;

&lt;P&gt;and NOTE 2: if you have characters in your search or in the actual $row.LastQuery$ that might need to be url-encoded, I'm not sure what facility SimpleDrilldown has to do that (I suspect none)&lt;/P&gt;

&lt;P&gt;And if you're used to using the modules from Sideview Utils, and you have a reasonably current version of Sideview Utils, it would look like this, and it would url-encode weird characters correctly, as well as pass on the drilldown timerange: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="Hidden" layoutPanel="panel_row5_col1" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-1d@d&amp;lt;/param&amp;gt;
  &amp;lt;param name="latest"&amp;gt;@d&amp;lt;/param&amp;gt;
  &amp;lt;module name="HTML"&amp;gt;
    &amp;lt;param name="html"&amp;gt;&amp;lt;![CDATA[&amp;lt;H1&amp;gt;Top N&amp;lt;/H1&amp;gt;]]&amp;gt;&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="JobProgressIndicator"/&amp;gt;
  &amp;lt;module name="EnablePreview"&amp;gt;
    &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="Pager"&amp;gt;
    &amp;lt;module name="Table"&amp;gt;
      &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;
      &amp;lt;module name="Redirector"&amp;gt;
        &amp;lt;param name="url"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
        &amp;lt;param name="arg.q"&amp;gt;search splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank AND LastQuery="$row.fields.LastQuery$" |sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
        &amp;lt;param name="arg.earliest"&amp;gt;$search.timeRange.earliest$&amp;lt;/param&amp;gt;
        &amp;lt;param name="arg.latest"&amp;gt;$search.timeRange.latest$&amp;lt;/param&amp;gt;
      &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
    &amp;lt;module name="ViewRedirectorLink"&amp;gt;
      &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 19 Mar 2013 22:42:04 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2013-03-19T22:42:04Z</dc:date>
    <item>
      <title>Help On Drill Down Using Avanced XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-On-Drill-Down-Using-Avanced-XML/m-p/66130#M3492</link>
      <description>&lt;P&gt;I have the following data set :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Date        rank    LastQuery   count   percent
03/18/2013  1   THE     51870   2.641512
03/18/2013  2   SEX     12562   0.639728
03/18/2013  3   BIBLE       11629   0.592214
03/18/2013  4   TWILIGHT    10622   0.540932
03/18/2013  5   THE+BIBLE   10136   0.516182
03/18/2013  6   HOUSE       6611    0.336669
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I need help to create a drill down by the selected LastQuery using the following query:&lt;/P&gt;

&lt;P&gt;Example:User clicked on LastQuery=HOUSE. This query should be used by the drill down:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank AND LastQuery=HOUSE|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This is my xml panel. It works fine. I just need to include the drill down.&lt;/P&gt;

&lt;P&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row5_col1" autoRun="True"&amp;gt;&lt;BR /&gt;
&amp;lt;module name="StaticContentSample"&amp;gt;&lt;BR /&gt;
    &amp;lt;param name="text"&amp;gt;&amp;lt;![CDATA[&amp;lt;H1&amp;gt;Top N&amp;lt;/H1&amp;gt;]]&amp;gt;&amp;lt;/param&amp;gt;&lt;BR /&gt;
 &amp;lt;/module&amp;gt;&lt;BR /&gt;
    &amp;lt;param name="earliest"&amp;gt;-1d@d&amp;lt;/param&amp;gt;&lt;BR /&gt;
    &amp;lt;param name="groupLabel"&amp;gt;Vespa - Combined Top N Distinct Searches - Yesterday&amp;lt;/param&amp;gt;&lt;BR /&gt;
    &amp;lt;param name="search"&amp;gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;&lt;BR /&gt;
    &amp;lt;param name="latest"&amp;gt;@d&amp;lt;/param&amp;gt;&lt;BR /&gt;
    &amp;lt;module name="ViewstateAdapter"&amp;gt;&lt;BR /&gt;
      &amp;lt;param name="suppressionList"&amp;gt;&lt;BR /&gt;
        &amp;lt;item&amp;gt;displayRowNumbers&amp;lt;/item&amp;gt;&lt;BR /&gt;
        &amp;lt;item&amp;gt;drilldown&amp;lt;/item&amp;gt;&lt;BR /&gt;
        &amp;lt;item&amp;gt;count&amp;lt;/item&amp;gt;&lt;BR /&gt;
      &amp;lt;/param&amp;gt;&lt;BR /&gt;
      &amp;lt;module name="HiddenFieldPicker"&amp;gt;&lt;BR /&gt;
        &amp;lt;param name="strictMode"&amp;gt;True&amp;lt;/param&amp;gt;&lt;BR /&gt;
        &amp;lt;module name="JobProgressIndicator"/&amp;gt;&lt;BR /&gt;
        &amp;lt;module name="Paginator"&amp;gt;&lt;BR /&gt;
          &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;&lt;BR /&gt;
          &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;&lt;BR /&gt;
          &amp;lt;module name="EnablePreview"&amp;gt;&lt;BR /&gt;
            &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;&lt;BR /&gt;
            &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;&lt;BR /&gt;
            &amp;lt;module name="SimpleResultsTable"&amp;gt;&lt;BR /&gt;
              &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;&lt;BR /&gt;
              &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;&lt;BR /&gt;
              &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;&lt;BR /&gt;
              &amp;lt;param name="allowTransformedFieldSelect"&amp;gt;True&amp;lt;/param&amp;gt;&lt;BR /&gt;
              &amp;lt;module name="Gimp"/&amp;gt;&lt;BR /&gt;
            &amp;lt;/module&amp;gt;&lt;BR /&gt;
            &amp;lt;module name="ViewRedirectorLink"&amp;gt;&lt;BR /&gt;
              &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;&lt;BR /&gt;
            &amp;lt;/module&amp;gt;&lt;BR /&gt;
          &amp;lt;/module&amp;gt;&lt;BR /&gt;
        &amp;lt;/module&amp;gt;&lt;BR /&gt;
      &amp;lt;/module&amp;gt;&lt;BR /&gt;
    &amp;lt;/module&amp;gt;&lt;BR /&gt;
  &amp;lt;/module&amp;gt;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Lp&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:32:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-On-Drill-Down-Using-Avanced-XML/m-p/66130#M3492</guid>
      <dc:creator>lpolo</dc:creator>
      <dc:date>2020-09-28T13:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help On Drill Down Using Avanced XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-On-Drill-Down-Using-Avanced-XML/m-p/66131#M3493</link>
      <description>&lt;P&gt;First, it's worth saying that if your advanced XML was ever converted from Simple XML (which most is),  then a lot of the XML content and the indentation is actually unnecessary cruft carried along by the conversion process or introduced by the simple XML code itself. &lt;/P&gt;

&lt;P&gt;Here's a quickly cleaned up version of the same XML you posted.  removing the cruft makes it a &lt;EM&gt;bit&lt;/EM&gt; easier to read. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row5_col1" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-1d@d&amp;lt;/param&amp;gt;
  &amp;lt;param name="latest"&amp;gt;@d&amp;lt;/param&amp;gt;
  &amp;lt;module name="StaticContentSample"&amp;gt;
    &amp;lt;param name="text"&amp;gt;&amp;lt;![CDATA[&amp;lt;H1&amp;gt;Top N&amp;lt;/H1&amp;gt;]]&amp;gt;&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="JobProgressIndicator"/&amp;gt;
  &amp;lt;module name="EnablePreview"&amp;gt;
    &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="Paginator"&amp;gt;
    &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
    &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;

    &amp;lt;module name="SimpleResultsTable"&amp;gt;
      &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
      &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;
      &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
    &amp;lt;module name="ViewRedirectorLink"&amp;gt;
      &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;To answer your question,  with just the Core Splunk UI I believe you can use the SimpleDrilldown module. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row5_col1" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-1d@d&amp;lt;/param&amp;gt;
  &amp;lt;param name="latest"&amp;gt;@d&amp;lt;/param&amp;gt;
  &amp;lt;module name="StaticContentSample"&amp;gt;
    &amp;lt;param name="text"&amp;gt;&amp;lt;![CDATA[&amp;lt;H1&amp;gt;Top N&amp;lt;/H1&amp;gt;]]&amp;gt;&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="JobProgressIndicator"/&amp;gt;
  &amp;lt;module name="EnablePreview"&amp;gt;
    &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="Paginator"&amp;gt;
    &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
    &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;
    &amp;lt;module name="SimpleResultsTable"&amp;gt;
      &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
      &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;
      &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;

      &amp;lt;module name="SimpleDrilldown"&amp;gt;
        &amp;lt;param name="links"&amp;gt;
          &amp;lt;param name="*"&amp;gt;/app/search/flashtimeline?q=search splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank AND LastQuery="$row.LastQuery$" |sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
        &amp;lt;/param&amp;gt;
      &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
    &amp;lt;module name="ViewRedirectorLink"&amp;gt;
      &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Although NOTE 1: that example will result in an all-time search in the flashtimeline view (I'm not sure how you pass the current timerange using the core systems). &lt;/P&gt;

&lt;P&gt;and NOTE 2: if you have characters in your search or in the actual $row.LastQuery$ that might need to be url-encoded, I'm not sure what facility SimpleDrilldown has to do that (I suspect none)&lt;/P&gt;

&lt;P&gt;And if you're used to using the modules from Sideview Utils, and you have a reasonably current version of Sideview Utils, it would look like this, and it would url-encode weird characters correctly, as well as pass on the drilldown timerange: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="Hidden" layoutPanel="panel_row5_col1" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank|sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-1d@d&amp;lt;/param&amp;gt;
  &amp;lt;param name="latest"&amp;gt;@d&amp;lt;/param&amp;gt;
  &amp;lt;module name="HTML"&amp;gt;
    &amp;lt;param name="html"&amp;gt;&amp;lt;![CDATA[&amp;lt;H1&amp;gt;Top N&amp;lt;/H1&amp;gt;]]&amp;gt;&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="JobProgressIndicator"/&amp;gt;
  &amp;lt;module name="EnablePreview"&amp;gt;
    &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="Pager"&amp;gt;
    &amp;lt;module name="Table"&amp;gt;
      &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;
      &amp;lt;module name="Redirector"&amp;gt;
        &amp;lt;param name="url"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
        &amp;lt;param name="arg.q"&amp;gt;search splunk_server=io-splunk-03.example.com index="si_top_n" Sampling_Rate=Daily AND rank AND LastQuery="$row.fields.LastQuery$" |sort + rank|eval Date=strftime(_time, "%m/%d/%Y") |table Date rank LastQuery count percent&amp;lt;/param&amp;gt;
        &amp;lt;param name="arg.earliest"&amp;gt;$search.timeRange.earliest$&amp;lt;/param&amp;gt;
        &amp;lt;param name="arg.latest"&amp;gt;$search.timeRange.latest$&amp;lt;/param&amp;gt;
      &amp;lt;/module&amp;gt;
    &amp;lt;/module&amp;gt;
    &amp;lt;module name="ViewRedirectorLink"&amp;gt;
      &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Mar 2013 22:42:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-On-Drill-Down-Using-Avanced-XML/m-p/66131#M3493</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2013-03-19T22:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help On Drill Down Using Avanced XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-On-Drill-Down-Using-Avanced-XML/m-p/66132#M3494</link>
      <description>&lt;P&gt;Thanks,&lt;BR /&gt;
Lp&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2013 11:12:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-On-Drill-Down-Using-Avanced-XML/m-p/66132#M3494</guid>
      <dc:creator>lpolo</dc:creator>
      <dc:date>2013-03-20T11:12:20Z</dc:date>
    </item>
  </channel>
</rss>

