<?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: Base search to use in a new window as a drilldown dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346877#M22621</link>
    <description>&lt;P&gt;Hi Nadhiya123,&lt;BR /&gt;
you can pass as token a search from the first dashboard to the second but only if it's not so long because there are limits to url lenght.&lt;BR /&gt;
Anyway do you want to pass a fixed search or a different one depending by the click on the first dashboard panel?&lt;BR /&gt;
Maybe you could create secondary dashboard search passing as token only parameters.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
    <pubDate>Wed, 08 Nov 2017 12:46:05 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2017-11-08T12:46:05Z</dc:date>
    <item>
      <title>Base search to use in a new window as a drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346876#M22620</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;

&lt;P&gt;Is there a way to put a base search in the first dashboard which drilldowns to a new dashboard where it uses the base search from the first dashboard.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 12:39:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346876#M22620</guid>
      <dc:creator>Nadhiya123</dc:creator>
      <dc:date>2017-11-08T12:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Base search to use in a new window as a drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346877#M22621</link>
      <description>&lt;P&gt;Hi Nadhiya123,&lt;BR /&gt;
you can pass as token a search from the first dashboard to the second but only if it's not so long because there are limits to url lenght.&lt;BR /&gt;
Anyway do you want to pass a fixed search or a different one depending by the click on the first dashboard panel?&lt;BR /&gt;
Maybe you could create secondary dashboard search passing as token only parameters.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 12:46:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346877#M22621</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-11-08T12:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Base search to use in a new window as a drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346878#M22622</link>
      <description>&lt;P&gt;@Nadhiya123, how many base searches are being passed from one dashboard to another? What may vary in your base searches. Can you give examples of base search from first dashboard?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2017 12:54:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346878#M22622</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-08T12:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Base search to use in a new window as a drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346879#M22623</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&lt;/P&gt;

&lt;P&gt;There is one search which i use to display a map in my first dashboard.&lt;/P&gt;

&lt;P&gt;it drilldowns to the new next dashboard based on the lat/lon, &lt;/P&gt;

&lt;P&gt;base search in 1st map dashbaord:&lt;BR /&gt;
......&lt;BR /&gt;
.......| stats max("count(xx)") as sessions, max(upperBound) as X, max(lowerBound) as Y by NPANXX,LAT,LNG&lt;BR /&gt;
| geostats max(sessions) as sessions, max(X) as X, max(Y) as Y latfield=LAT longfield=LNG outputlatfield=LAT outputlongfield=LNG globallimit=0  | eval High_No_Of_Calls = if(sessions &amp;gt; $HIGH$,sessions,0) &lt;BR /&gt;
| eval Medium_No_Of_Calls = if((sessions &amp;gt; $Medium$ AND sessions &amp;lt; $HIGH$ ),sessions,0) | eval Normal_No_Of_Calls = if(sessions &amp;lt;= $Medium$,sessions,0) &lt;BR /&gt;
| fields - sessions, X, Y&lt;/P&gt;

&lt;P&gt;drilldown search 1: &lt;BR /&gt;
.........&lt;BR /&gt;
......| stats max("count(xx)") as sessions, max(upperBound) as X, max(lowerBound) as Y by NPANXX,LAT,LNG | eval High_No_Of_Calls = if(sessions &amp;gt; $HIGH$,sessions,0) &lt;BR /&gt;
| eval Medium_No_Of_Calls = if((sessions &amp;gt; $Medium$ AND sessions &amp;lt; $HIGH$ ),sessions,0) | eval Normal_No_Of_Calls = if(sessions &amp;lt;=$Medium$,sessions,0) | fields - sessions, X, Y| where LAT&amp;gt;=$lattitude1$  AND LAT&amp;lt;$lattitude2$ AND LNG&amp;gt;=$longitude1$  AND LNG&amp;lt;$longitude2$|table NPANXX,High_No_Of_Calls,Medium_No_Of_Calls,Normal_No_Of_Calls|where (High_No_Of_Calls=$High$ AND Medium_No_Of_Calls=$Med$ AND Normal_No_Of_Calls=$Normal$) |head 1|eval High_No_Of_Calls=$High$|eval Medium_No_Of_Calls=$Med$|eval Normal_No_Of_Calls=$Normal$|table NPANXX,High_No_Of_Calls,Medium_No_Of_Calls,Normal_No_Of_Calls&lt;/P&gt;

&lt;P&gt;drilldownsearch 2:&lt;/P&gt;

&lt;P&gt;| eventstats max("count(xx)") as sessions, max(upperBound) as X, max(lowerBound) as Y by NPANXX,LAT,LNG | eval High_No_Of_Calls = if(sessions &amp;gt;$HIGH$,sessions,0) &lt;BR /&gt;
| eval Medium_No_Of_Calls = if((sessions &amp;gt; $Medium$ AND sessions &amp;lt; $HIGH$ ),sessions,0) | eval Normal_No_Of_Calls = if(sessions &amp;lt;=$Medium$,sessions,0) | fields - sessions, X, Y| where LAT&amp;gt;=$lattitude1$  AND LAT&amp;lt;$lattitude2$ AND LNG&amp;gt;=$longitude1$  AND LNG&amp;lt;$longitude2$&lt;BR /&gt;
|table _time,....|where (High_No_Of_Calls=$High$ AND Medium_No_Of_Calls=$Med$ AND Normal_No_Of_Calls=$Normal$) OR (Medium_No_Of_Calls=$Med$ AND Normal_No_Of_Calls=$Normal$)|sort - _time|eval m=max($High$,$Med$,$Normal$) | streamstats c | where c&amp;lt;=m|table ....&lt;BR /&gt;
Trying to work on the performance issue.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 16:35:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Base-search-to-use-in-a-new-window-as-a-drilldown-dashboard/m-p/346879#M22623</guid>
      <dc:creator>Nadhiya123</dc:creator>
      <dc:date>2020-09-29T16:35:51Z</dc:date>
    </item>
  </channel>
</rss>

