<?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: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211920#M13219</link>
    <description>&lt;P&gt;Thank You ! it worked . one more question .&lt;/P&gt;

&lt;P&gt;On the Main dash board , i have a timer on the panel and if i want to default it to last 4 hours . how can i do that ?&lt;/P&gt;

&lt;P&gt;the reason is if i drill down to some other page and get back to main dashboard , My timer on the main dashboard will start pulling "ALL time " by default and i want it to be defaulted to 4 hours and  if anybody want to search based on some other time , then they can set it to some other time like last 24 hors , last 60 mins etc . &lt;/P&gt;</description>
    <pubDate>Mon, 25 Apr 2016 21:17:35 GMT</pubDate>
    <dc:creator>garinapavan</dc:creator>
    <dc:date>2016-04-25T21:17:35Z</dc:date>
    <item>
      <title>Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211915#M13214</link>
      <description>&lt;P&gt;I have a dashboard with one search and basically it has 3 conditional drilldowns routing to 3 different dashboards. My first conditional drilldown works perfectly, but the rest are not working. Not sure where I'm going wrong. Any help is appreciated.&lt;/P&gt;

&lt;P&gt;In the dashboard, this is my search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=opl_soa RFault="remoteFault" source="/logs/SOA_MS*-diagnostic.log" host="mialvsoaap0*p" | append [search BFault="bindingFault" source="/logs/SOA_MS*-diagnostic.log" host="mialvsoaap0*p"] | append [search BusinessFault ="business fault" source="/logs/SOA_MS*-diagnostic.log" host="mialvsoaap0*p"]|timechart span=5m count(RFault) as RemoteFaults, count(BFault="bindingFault") as BindingFaults,count(BusinessFault ="business fault") as BusinessFaults
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and I have 3 drilldowns pointing to 3 different dashboards in the main dashboard where the above search is residing. &lt;/P&gt;

&lt;P&gt;First one works and the other two do not. Any suggestions? Attached the code image:&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/1260iA550AFCA63264A0E/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 21:05:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211915#M13214</guid>
      <dc:creator>garinapavan</dc:creator>
      <dc:date>2016-04-21T21:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211916#M13215</link>
      <description>&lt;P&gt;Slightly off-topic: Do not append three searches to each other. Instead, use OR:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=opl_soa source="/logs/SOA_MS*-diagnostic.log" host="mialvsoaap0*p" (RFault="remoteFault" OR BFault="bindingFault" OR BusinessFault="business fault" | timechart ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Should run much faster.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 21:34:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211916#M13215</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2016-04-21T21:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211917#M13216</link>
      <description>&lt;P&gt;I believe you should put all three condition blocks within one drilldown block instead of separate ones.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 22:45:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211917#M13216</guid>
      <dc:creator>dolivasoh</dc:creator>
      <dc:date>2016-04-21T22:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211918#M13217</link>
      <description>&lt;P&gt;Thank You ! it worked  . &lt;/P&gt;

&lt;P&gt;One more question .. &lt;/P&gt;

&lt;P&gt;Is there any option where I can traversere from  Sub dashboards to Main Dashboard ?&lt;/P&gt;

&lt;P&gt;For example i have one Main dashboard where in i can drill down to 3 sub sub dashboards .  &lt;/P&gt;

&lt;P&gt;When i go to sub dashboard , can i have a link pointing to Main Dashboard and after clicking it routes to main dashboard  ?&lt;/P&gt;

&lt;P&gt;-pavan&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 18:03:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211918#M13217</guid>
      <dc:creator>garinapavan</dc:creator>
      <dc:date>2016-04-22T18:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211919#M13218</link>
      <description>&lt;P&gt;You can put anything you like in an html panel, including links. &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.4.0/Viz/PanelreferenceforSimplifiedXML#html"&gt;http://docs.splunk.com/Documentation/Splunk/6.4.0/Viz/PanelreferenceforSimplifiedXML#html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 20:46:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211919#M13218</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2016-04-22T20:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211920#M13219</link>
      <description>&lt;P&gt;Thank You ! it worked . one more question .&lt;/P&gt;

&lt;P&gt;On the Main dash board , i have a timer on the panel and if i want to default it to last 4 hours . how can i do that ?&lt;/P&gt;

&lt;P&gt;the reason is if i drill down to some other page and get back to main dashboard , My timer on the main dashboard will start pulling "ALL time " by default and i want it to be defaulted to 4 hours and  if anybody want to search based on some other time , then they can set it to some other time like last 24 hors , last 60 mins etc . &lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2016 21:17:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211920#M13219</guid>
      <dc:creator>garinapavan</dc:creator>
      <dc:date>2016-04-25T21:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211921#M13220</link>
      <description>&lt;P&gt;Edit panels (top right corner), edit time range picker (pencil icon), select default time range you like.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2016 21:33:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211921#M13220</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2016-04-25T21:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211922#M13221</link>
      <description>&lt;P&gt;Thanks a lot for help ! it worked . &lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 00:35:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211922#M13221</guid>
      <dc:creator>garinapavan</dc:creator>
      <dc:date>2016-04-26T00:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why does only 1 of 3 conditional drilldowns work as expected with my current dashboard search?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211923#M13222</link>
      <description>&lt;P&gt;H Martin ,&lt;/P&gt;

&lt;P&gt;Do you have any idea/ suggestions  about this thread ?&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/399941/adding-colors-based-on-search-results.html"&gt;https://answers.splunk.com/answers/399941/adding-colors-based-on-search-results.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 16:02:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-does-only-1-of-3-conditional-drilldowns-work-as-expected/m-p/211923#M13222</guid>
      <dc:creator>garinapavan</dc:creator>
      <dc:date>2016-05-03T16:02:10Z</dc:date>
    </item>
  </channel>
</rss>

