<?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 Splunk Dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard/m-p/573788#M47074</link>
    <description>&lt;P&gt;Hello Everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on a dashboard with 2 event panel . and i would like to use the outcome of panel 1 as an input to my panel 2 . Can you please advise what is the optimal way to take a specific field output and utilise as an input in the next panel . I tried base search but did not provide result as expected.&lt;/P&gt;&lt;P&gt;Panel 1 :&lt;/P&gt;&lt;P&gt;&amp;lt;query&amp;gt;index=xyz sourcetype=vpn *session*&lt;BR /&gt;| fields session, connection_name, DNS, ip_subnet, Location,user&lt;BR /&gt;| stats values(connection_name) as connection, values(Dns) as DNS, by session&lt;BR /&gt;| join type=inner session&lt;BR /&gt;[ search index=abc sourcetype=vpn *Dynamic*&lt;BR /&gt;| fields assigned_ip,session | stats values(assigned_ip) as IP by session]&lt;BR /&gt;| table User,session,connection_name,ip_subnet,IP,DNS,Location |where user="$field1$" OR connection_name="$field2$" OR session="$field3$"&amp;lt;/query&amp;gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once the output is generated for the above query , i would like to leverage the value displayed for Ip_subnet and use that as input for panel 2&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Panel 2:&lt;/P&gt;&lt;P&gt;&amp;lt;query&amp;gt;|inputlookup letest.csv&lt;BR /&gt;|rename "IP address details" as IP&lt;BR /&gt;| xyseries Ip_subnet,Location,IP | where Ip_subnet="$Ip_subnet$"&amp;lt;/query&amp;gt;&lt;/P&gt;&lt;P&gt;In panel 2&amp;nbsp;$Ip_subnet$ is input that would be taken from value of Ip_subnet of panel 1.&lt;/P&gt;</description>
    <pubDate>Fri, 05 Nov 2021 11:49:59 GMT</pubDate>
    <dc:creator>vplunk</dc:creator>
    <dc:date>2021-11-05T11:49:59Z</dc:date>
    <item>
      <title>Splunk Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard/m-p/573788#M47074</link>
      <description>&lt;P&gt;Hello Everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on a dashboard with 2 event panel . and i would like to use the outcome of panel 1 as an input to my panel 2 . Can you please advise what is the optimal way to take a specific field output and utilise as an input in the next panel . I tried base search but did not provide result as expected.&lt;/P&gt;&lt;P&gt;Panel 1 :&lt;/P&gt;&lt;P&gt;&amp;lt;query&amp;gt;index=xyz sourcetype=vpn *session*&lt;BR /&gt;| fields session, connection_name, DNS, ip_subnet, Location,user&lt;BR /&gt;| stats values(connection_name) as connection, values(Dns) as DNS, by session&lt;BR /&gt;| join type=inner session&lt;BR /&gt;[ search index=abc sourcetype=vpn *Dynamic*&lt;BR /&gt;| fields assigned_ip,session | stats values(assigned_ip) as IP by session]&lt;BR /&gt;| table User,session,connection_name,ip_subnet,IP,DNS,Location |where user="$field1$" OR connection_name="$field2$" OR session="$field3$"&amp;lt;/query&amp;gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once the output is generated for the above query , i would like to leverage the value displayed for Ip_subnet and use that as input for panel 2&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Panel 2:&lt;/P&gt;&lt;P&gt;&amp;lt;query&amp;gt;|inputlookup letest.csv&lt;BR /&gt;|rename "IP address details" as IP&lt;BR /&gt;| xyseries Ip_subnet,Location,IP | where Ip_subnet="$Ip_subnet$"&amp;lt;/query&amp;gt;&lt;/P&gt;&lt;P&gt;In panel 2&amp;nbsp;$Ip_subnet$ is input that would be taken from value of Ip_subnet of panel 1.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 11:49:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard/m-p/573788#M47074</guid>
      <dc:creator>vplunk</dc:creator>
      <dc:date>2021-11-05T11:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard/m-p/573810#M47076</link>
      <description>&lt;P&gt;Use a done element to set a token for the 2nd query to use.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...&amp;lt;/query&amp;gt;
&amp;lt;done&amp;gt;
  &amp;lt;set token=ip_subnet&amp;gt;$result.ip_subnet$&amp;lt;/set&amp;gt;
&amp;lt;/done&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Remember that field and token names are case-sensitive.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 12:18:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard/m-p/573810#M47076</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-11-05T12:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard/m-p/574172#M47106</link>
      <description>&lt;P&gt;Hello Richgalloway,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for taking time and responding to my query .&amp;nbsp; Instead of using the set token i went ahead with storing the value in another field ( as a dropdown) and selected from there and that became the input for the next panel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 11:34:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard/m-p/574172#M47106</guid>
      <dc:creator>vplunk</dc:creator>
      <dc:date>2021-11-09T11:34:48Z</dc:date>
    </item>
  </channel>
</rss>

