<?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: Subreport from form view with table and multiple fields in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74984#M4028</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Thanks for your answer.&lt;BR /&gt;
It doesn't work correctly, because If I go to the line in the table on the second field it highlights the  first two fields. If I would like to include the third field in the drilldown too and go on the third field in the row, then only the first and the third field is highlighted and the subsearch include only the first and the third field but not the second field.&lt;/P&gt;

&lt;P&gt;Here the view xml file&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;  
   &amp;lt;label&amp;gt;App - Overview&amp;lt;/label&amp;gt; 
      &amp;lt;searchTemplate&amp;gt;index="app" sourcetype="app_status" $Arg1$ | stats count by app_name, app_server, app_status&amp;lt;/searchTemplate&amp;gt; 

  &amp;lt;fieldset autoRun="false"&amp;gt;
      &amp;lt;input type="text" token="Arg1"&amp;gt; 
         &amp;lt;label&amp;gt;Choose how many hours ago it should display&amp;lt;/label&amp;gt; 
         &amp;lt;prefix&amp;gt;starthoursago="&amp;lt;/prefix&amp;gt;
         &amp;lt;default&amp;gt;12&amp;lt;/default&amp;gt; 
         &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt; 
         &amp;lt;seed&amp;gt;12&amp;lt;/seed&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;App Overview&amp;lt;/title&amp;gt;
        &amp;lt;option name="count"&amp;gt;100&amp;lt;/option&amp;gt; 
        &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&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;Did you have any hint why this happens ?&lt;/P&gt;

&lt;P&gt;Many Thanks&lt;BR /&gt;
Rob&lt;/P&gt;</description>
    <pubDate>Thu, 15 Sep 2011 07:17:17 GMT</pubDate>
    <dc:creator>RobertRi</dc:creator>
    <dc:date>2011-09-15T07:17:17Z</dc:date>
    <item>
      <title>Subreport from form view with table and multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74982#M4026</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;I have a simple view which outputs a table with 4 fields in a row which are grouped.&lt;/P&gt;

&lt;P&gt;This is an example of the output&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;AppName Servers  Status
App1    Server1  OK
App1    Server2  NotOK
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If I click the second result in this view to see the events that are in status NotOK for App1 and Server2, than all Servers from App1 with all Statis where displayed. Is there a possibility to show only the events which are in Status NotOK for Server2 and App1 ?&lt;/P&gt;

&lt;P&gt;Thanks for your hints&lt;BR /&gt;
Robert&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2011 09:24:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74982#M4026</guid>
      <dc:creator>RobertRi</dc:creator>
      <dc:date>2011-09-14T09:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Subreport from form view with table and multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74983#M4027</link>
      <description>&lt;P&gt;Yes.&lt;/P&gt;

&lt;P&gt;This is controlled by what drilldown type is defined for your table. By default drilldown is based on row, which means Splunk takes the first value of the row you're clicking on and drills down based on that. The other option is to have drilldown on cell, which means the value of the specific cell you're clicking on is used instead. To change the drilldown type, either use the &lt;A href="http://docs.splunk.com/Documentation/Splunk/4.2.3/User/CreateSimpleDashboards"&gt;Visual Dashboard Editor&lt;/A&gt; and edit the panel in question, or edit the XML yourself. If you go for the latter, what you want is to put the following option inside the &lt;CODE&gt;&amp;lt;table&amp;gt;&lt;/CODE&gt; section:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Sep 2011 15:22:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74983#M4027</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2011-09-14T15:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Subreport from form view with table and multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74984#M4028</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Thanks for your answer.&lt;BR /&gt;
It doesn't work correctly, because If I go to the line in the table on the second field it highlights the  first two fields. If I would like to include the third field in the drilldown too and go on the third field in the row, then only the first and the third field is highlighted and the subsearch include only the first and the third field but not the second field.&lt;/P&gt;

&lt;P&gt;Here the view xml file&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;  
   &amp;lt;label&amp;gt;App - Overview&amp;lt;/label&amp;gt; 
      &amp;lt;searchTemplate&amp;gt;index="app" sourcetype="app_status" $Arg1$ | stats count by app_name, app_server, app_status&amp;lt;/searchTemplate&amp;gt; 

  &amp;lt;fieldset autoRun="false"&amp;gt;
      &amp;lt;input type="text" token="Arg1"&amp;gt; 
         &amp;lt;label&amp;gt;Choose how many hours ago it should display&amp;lt;/label&amp;gt; 
         &amp;lt;prefix&amp;gt;starthoursago="&amp;lt;/prefix&amp;gt;
         &amp;lt;default&amp;gt;12&amp;lt;/default&amp;gt; 
         &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt; 
         &amp;lt;seed&amp;gt;12&amp;lt;/seed&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;App Overview&amp;lt;/title&amp;gt;
        &amp;lt;option name="count"&amp;gt;100&amp;lt;/option&amp;gt; 
        &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&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;Did you have any hint why this happens ?&lt;/P&gt;

&lt;P&gt;Many Thanks&lt;BR /&gt;
Rob&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2011 07:17:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74984#M4028</guid>
      <dc:creator>RobertRi</dc:creator>
      <dc:date>2011-09-15T07:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Subreport from form view with table and multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74985#M4029</link>
      <description>&lt;P&gt;You cannot drilldown on multiple values with standard Splunk modules. Check out Sideview Utils which can do this.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2011 08:22:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74985#M4029</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2011-09-15T08:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Subreport from form view with table and multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74986#M4030</link>
      <description>&lt;P&gt;Sorry but advanced xml is too difficult.&lt;BR /&gt;
I have combined the second and third field and this works too&lt;/P&gt;

&lt;P&gt;Thanks &lt;BR /&gt;
Robert&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2011 04:24:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subreport-from-form-view-with-table-and-multiple-fields/m-p/74986#M4030</guid>
      <dc:creator>RobertRi</dc:creator>
      <dc:date>2011-09-16T04:24:14Z</dc:date>
    </item>
  </channel>
</rss>

