<?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 how to drilldown a row element to a child into splunk 6? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177024#M10951</link>
    <description>&lt;P&gt;Hi, I have something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;test&amp;lt;/label&amp;gt;
    &amp;lt;searchTemplate&amp;gt;index=* sourcetype=$sourcetype$&amp;lt;/searchTemplate&amp;gt;
    &amp;lt;fieldset&amp;gt;
      &amp;lt;input type="time"&amp;gt;
          &amp;lt;label&amp;gt;1. Select a time range&amp;lt;/label&amp;gt;
          &amp;lt;default&amp;gt;Always&amp;lt;/default&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="dropdown" token="sourcetype"&amp;gt;
        &amp;lt;label&amp;gt;2. Select a sourcetype&amp;lt;/label&amp;gt;
          &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
          &amp;lt;populatingSearch fieldForValue="sourcetype" fieldForLabel="sourcetype"&amp;gt;
              | metadata type=sourcetypes index=* | fields sourcetype
          &amp;lt;/populatingSearch&amp;gt;
      &amp;lt;/input&amp;gt;
    &amp;lt;/fieldset&amp;gt;
    &amp;lt;row&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;test table&amp;lt;/title&amp;gt;
        &amp;lt;searchPostProcess&amp;gt;
          | stats count by ID
        &amp;lt;/searchPostProcess&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How can I pass the field ID to a child element, ie a graph?&lt;BR /&gt;
I took a look at the simple drilldown table into the splunk example app but I cannot understand.&lt;/P&gt;

&lt;P&gt;With splunk 5 I did something like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;test table&amp;lt;/title&amp;gt;
        &amp;lt;searchPostProcess&amp;gt;
          | stats count by ID
        &amp;lt;/searchPostProcess&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;
        &amp;lt;html&amp;gt;
          &amp;lt;h1&amp;gt;$row.ID$&amp;lt;/h1&amp;gt;
        &amp;lt;/html&amp;gt;
      &amp;lt;/table&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but now in splunk 6 it doesn't work, it pass the value to the search app (changing the current page) and not to the HTML child element.&lt;/P&gt;</description>
    <pubDate>Fri, 23 May 2014 14:16:27 GMT</pubDate>
    <dc:creator>RiccardoV</dc:creator>
    <dc:date>2014-05-23T14:16:27Z</dc:date>
    <item>
      <title>how to drilldown a row element to a child into splunk 6?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177024#M10951</link>
      <description>&lt;P&gt;Hi, I have something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;test&amp;lt;/label&amp;gt;
    &amp;lt;searchTemplate&amp;gt;index=* sourcetype=$sourcetype$&amp;lt;/searchTemplate&amp;gt;
    &amp;lt;fieldset&amp;gt;
      &amp;lt;input type="time"&amp;gt;
          &amp;lt;label&amp;gt;1. Select a time range&amp;lt;/label&amp;gt;
          &amp;lt;default&amp;gt;Always&amp;lt;/default&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="dropdown" token="sourcetype"&amp;gt;
        &amp;lt;label&amp;gt;2. Select a sourcetype&amp;lt;/label&amp;gt;
          &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
          &amp;lt;populatingSearch fieldForValue="sourcetype" fieldForLabel="sourcetype"&amp;gt;
              | metadata type=sourcetypes index=* | fields sourcetype
          &amp;lt;/populatingSearch&amp;gt;
      &amp;lt;/input&amp;gt;
    &amp;lt;/fieldset&amp;gt;
    &amp;lt;row&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;test table&amp;lt;/title&amp;gt;
        &amp;lt;searchPostProcess&amp;gt;
          | stats count by ID
        &amp;lt;/searchPostProcess&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How can I pass the field ID to a child element, ie a graph?&lt;BR /&gt;
I took a look at the simple drilldown table into the splunk example app but I cannot understand.&lt;/P&gt;

&lt;P&gt;With splunk 5 I did something like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;test table&amp;lt;/title&amp;gt;
        &amp;lt;searchPostProcess&amp;gt;
          | stats count by ID
        &amp;lt;/searchPostProcess&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;
        &amp;lt;html&amp;gt;
          &amp;lt;h1&amp;gt;$row.ID$&amp;lt;/h1&amp;gt;
        &amp;lt;/html&amp;gt;
      &amp;lt;/table&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but now in splunk 6 it doesn't work, it pass the value to the search app (changing the current page) and not to the HTML child element.&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2014 14:16:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177024#M10951</guid>
      <dc:creator>RiccardoV</dc:creator>
      <dc:date>2014-05-23T14:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to drilldown a row element to a child into splunk 6?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177025#M10952</link>
      <description>&lt;P&gt;Take a look at this: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.1/Viz/Understandbasictableandchartdrilldownactions#Basic_contextual_drilldown_example"&gt;http://docs.splunk.com/Documentation/Splunk/6.1.1/Viz/Understandbasictableandchartdrilldownactions#Basic_contextual_drilldown_example&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2014 17:14:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177025#M10952</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-05-23T17:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to drilldown a row element to a child into splunk 6?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177026#M10953</link>
      <description>&lt;P&gt;Correct, contextual drilldown is new to Simple XML in Splunk 6.1.&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2014 17:31:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177026#M10953</guid>
      <dc:creator>nfilippi_splunk</dc:creator>
      <dc:date>2014-05-23T17:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to drilldown a row element to a child into splunk 6?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177027#M10954</link>
      <description>&lt;P&gt;thanks! it works like a charm &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2014 08:07:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-drilldown-a-row-element-to-a-child-into-splunk-6/m-p/177027#M10954</guid>
      <dc:creator>RiccardoV</dc:creator>
      <dc:date>2014-05-26T08:07:19Z</dc:date>
    </item>
  </channel>
</rss>

