<?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: Drilldown question from UI Examples dashboard (panel_row7) in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95910#M5224</link>
    <description>&lt;P&gt;Ok cause I was able to take your XML and use a sourcetype for iis that would work with my searches and get a flash chart with a table of the results below that match the flash chart.  Then when I click on something in the flash chart another table populate with the top 10 c_ip.  Thats why I wondered if you were getting events under the threatid field.  And my transforms.conf uses comma delimited expressions for my iis sourcetype.  What version of Splunk are you using?  Is there a More info... link besides the No results found?  Travis.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Dec 2010 03:40:57 GMT</pubDate>
    <dc:creator>thall79</dc:creator>
    <dc:date>2010-12-01T03:40:57Z</dc:date>
    <item>
      <title>Drilldown question from UI Examples dashboard (panel_row7)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95907#M5221</link>
      <description>&lt;P&gt;Hello,
I'm having difficulty implementing the drilldown from the example UI dashboard. The search itself works on it's own but this is my first stab at drilldowns and I've hit a wall. After I select a severity from the column chart I am told my drilldown table finishes without any results. Any help is appreciated, I've pasted my code below.
Thanks!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      &amp;lt;module name="HiddenSearch" autoRun="True" layoutPanel="panel_row1_col1_grp1"&amp;gt;
    &amp;lt;param name="search"&amp;gt;sourcetype="pan_threat" subtype="spyware" | chart count by severity&amp;lt;/param&amp;gt;
    &amp;lt;module name="HiddenChartFormatter"&amp;gt;
      &amp;lt;param name="chart"&amp;gt;column&amp;lt;/param&amp;gt;
      &amp;lt;param name="chartTitle"&amp;gt;Count by Severity&amp;lt;/param&amp;gt;
      &amp;lt;param name="legend.placement"&amp;gt;none&amp;lt;/param&amp;gt;
      &amp;lt;param name="primaryAxisTitle.text"&amp;gt;Time&amp;lt;/param&amp;gt;
      &amp;lt;param name="secondaryAxisTitle.text"&amp;gt;Count&amp;lt;/param&amp;gt;
      &amp;lt;module name="JobProgressIndicator"/&amp;gt;
      &amp;lt;module name="FlashChart"&amp;gt;
        &amp;lt;param name="width"&amp;gt;100%&amp;lt;/param&amp;gt;
        &amp;lt;param name="height"&amp;gt;200px&amp;lt;/param&amp;gt;
        &amp;lt;param name="enableResize"&amp;gt;False&amp;lt;/param&amp;gt;
        &amp;lt;module name="HiddenSearch"&amp;gt;
          &amp;lt;param name="search"&amp;gt;sourcetype="pan_threat" subtype="spyware" | top 10 threatid&amp;lt;/param&amp;gt;
          &amp;lt;param name="earliest"&amp;gt;-1h&amp;lt;/param&amp;gt;
          &amp;lt;!-- this module will grab the value we clicked on and put it in as a searchterm,   severity="someSourcetype".   --&amp;gt;
          &amp;lt;module name="ConvertToIntention" layoutPanel="panel_row1_col1_grp2"&amp;gt;
            &amp;lt;param name="intention"&amp;gt;
              &amp;lt;param name="name"&amp;gt;addterm&amp;lt;/param&amp;gt;
              &amp;lt;param name="arg"&amp;gt;
                &amp;lt;param name="severity"&amp;gt;$click.value$&amp;lt;/param&amp;gt;
              &amp;lt;/param&amp;gt;
            &amp;lt;/param&amp;gt;
            &amp;lt;!-- finally, we render the search in another FlashChart, and we throw in a JobProgressIndicator for good measure. --&amp;gt;
            &amp;lt;module name="JobProgressIndicator"&amp;gt;&amp;lt;/module&amp;gt;
            &amp;lt;!-- We throw in a header so we can tell the user what they clicked on. --&amp;gt;
            &amp;lt;module name="SimpleResultsHeader"&amp;gt;
              &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
              &amp;lt;param name="headerFormat"&amp;gt;Top Threats for Severity=$click.value$&amp;lt;/param&amp;gt;
            &amp;lt;/module&amp;gt;
            &amp;lt;module name="SimpleResultsTable"&amp;gt;
              &amp;lt;param name="displayRowNumbers"&amp;gt;False&amp;lt;/param&amp;gt;
              &amp;lt;param name="drilldown"&amp;gt;row&amp;lt;/param&amp;gt;
              &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
              &amp;lt;module name="ViewRedirector"&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;
        &amp;lt;/module&amp;gt;
      &amp;lt;/module&amp;gt;          
      &amp;lt;module name="SimpleResultsTable"&amp;gt;
        &amp;lt;param name="displayRowNumbers"&amp;gt;False&amp;lt;/param&amp;gt;
        &amp;lt;param name="drilldown"&amp;gt;row&amp;lt;/param&amp;gt;
        &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
        &amp;lt;module name="ViewRedirector"&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;
  &amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Nov 2010 06:49:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95907#M5221</guid>
      <dc:creator>aputz</dc:creator>
      <dc:date>2010-11-30T06:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown question from UI Examples dashboard (panel_row7)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95908#M5222</link>
      <description>&lt;P&gt;Is there a field created called threatid when you run your search? &lt;/P&gt;

&lt;P&gt;Travis.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2010 23:47:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95908#M5222</guid>
      <dc:creator>thall79</dc:creator>
      <dc:date>2010-11-30T23:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown question from UI Examples dashboard (panel_row7)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95909#M5223</link>
      <description>&lt;P&gt;threatid is a field that is created in our transforms.conf file via comma delimited expressions.  So no, the field already exists before the search.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2010 02:58:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95909#M5223</guid>
      <dc:creator>aputz</dc:creator>
      <dc:date>2010-12-01T02:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown question from UI Examples dashboard (panel_row7)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95910#M5224</link>
      <description>&lt;P&gt;Ok cause I was able to take your XML and use a sourcetype for iis that would work with my searches and get a flash chart with a table of the results below that match the flash chart.  Then when I click on something in the flash chart another table populate with the top 10 c_ip.  Thats why I wondered if you were getting events under the threatid field.  And my transforms.conf uses comma delimited expressions for my iis sourcetype.  What version of Splunk are you using?  Is there a More info... link besides the No results found?  Travis.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2010 03:40:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95910#M5224</guid>
      <dc:creator>thall79</dc:creator>
      <dc:date>2010-12-01T03:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown question from UI Examples dashboard (panel_row7)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95911#M5225</link>
      <description>&lt;P&gt;Something else I spotted was the time frame you are using.  I am not sure if you are using a TimeRangePicker module but on the first HiddenSearch there was not time range set and then on the second HiddenSearch you have earliest"&amp;gt;-1h. I cleared that out and used a TimeRangePicker module to control both searchers.  Travis.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2010 04:52:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95911#M5225</guid>
      <dc:creator>thall79</dc:creator>
      <dc:date>2010-12-01T04:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown question from UI Examples dashboard (panel_row7)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95912#M5226</link>
      <description>&lt;P&gt;Ahh there we go, it was the "earliest" line conflicting with my TimeRangePicker that controls all the above code. Thanks Travis.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2010 22:39:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95912#M5226</guid>
      <dc:creator>aputz</dc:creator>
      <dc:date>2010-12-02T22:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown question from UI Examples dashboard (panel_row7)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95913#M5227</link>
      <description>&lt;P&gt;Funny how the simple things can throw everything off.  Glad I could help. Travis.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2010 02:14:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drilldown-question-from-UI-Examples-dashboard-panel-row7/m-p/95913#M5227</guid>
      <dc:creator>thall79</dc:creator>
      <dc:date>2010-12-03T02:14:56Z</dc:date>
    </item>
  </channel>
</rss>

