<?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 How to create a dropdown for a dashboard listing in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-dropdown-for-a-dashboard-listing/m-p/666906#M11228</link>
    <description>&lt;P&gt;I am trying to create a dashboard panel that will have dropdowns different by the row you select.&amp;nbsp; I am using one of the searches that comes with the monitoring application as my search:&lt;/P&gt;&lt;P&gt;index=_internal sourcetype=splunkd TERM(group=tcpin_connections) TERM("cooked") OR TERM("cookedSSL") (hostname!=*.splunk*.*)&lt;BR /&gt;| dedup hostname&lt;BR /&gt;| stats c as fwdCount by version&lt;BR /&gt;| rex field=version "^(?&amp;lt;fwdV&amp;gt;\d+.\d+)"&lt;BR /&gt;| eval splV=&lt;BR /&gt;[ | makeresults&lt;BR /&gt;| eval VERSION=7.0&lt;BR /&gt;| append&lt;BR /&gt;[ | rest splunk_server=local count=1 /services/server/info&lt;BR /&gt;| stats max(version) as VERSION]&lt;BR /&gt;| rex field=VERSION "^(?&amp;lt;version&amp;gt;\d+.\d+)"&lt;BR /&gt;| stats max(version) as splV&lt;BR /&gt;| return $$splV ]&lt;BR /&gt;| eval fwd_7_3_eos=relative_time(strptime("22-Oct-2021", "%d-%b-%Y"), "+1d@d"), fwd_8_0_eos=relative_time(strptime("22-Oct-2021", "%d-%b-%Y"), "+1d@d"), fwd_8_1_eos=relative_time(strptime("19-Apr-2023", "%d-%b-%Y"), "+1d@d"), fwd_8_2_eos=relative_time(strptime("30-Sep-2023", "%d-%b-%Y"), "+1d@d"), fwd_9_0_eos=relative_time(strptime("14-Jun-2024", "%d-%b-%Y"), "+1d@d"), fwd_9_1_eos=relative_time(strptime("28-Jun-2025", "%d-%b-%Y"), "+1d@d"), fwd_default_eos=relative_time(strptime("01-Jan-1971", "%d-%b-%Y"), "+1d@d") | eval expTimestamp = case( match($$fwd_version$$, "^7\.3"), fwd_7_3_eos, match($$fwd_version$$, "^8\.0"), fwd_8_0_eos, match($$fwd_version$$, "^8\.1"), fwd_8_1_eos, match($$fwd_version$$, "^8\.2"), fwd_8_2_eos, match($$fwd_version$$, "^9\.0"), fwd_9_0_eos, match($$fwd_version$$, "^9\.1"), fwd_9_1_eos, 1==1, fwd_default_eos) | fields - fwd_*_eos&lt;BR /&gt;| eval warn=case(&lt;BR /&gt;(now() &amp;gt; expTimestamp), fwdCount,&lt;BR /&gt;1==1, 0)&lt;BR /&gt;| eval info=fwdCount-warn&lt;BR /&gt;| rename warn as "Out of date", info as "Up to date"&lt;BR /&gt;| fields - fwdV, splV, fwdCount, expTimestamp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want to do is to drop down based on the row I select (see attached snapshot)&lt;/P&gt;</description>
    <pubDate>Tue, 31 Oct 2023 17:40:16 GMT</pubDate>
    <dc:creator>NanSplk01</dc:creator>
    <dc:date>2023-10-31T17:40:16Z</dc:date>
    <item>
      <title>How to create a dropdown for a dashboard listing</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-dropdown-for-a-dashboard-listing/m-p/666906#M11228</link>
      <description>&lt;P&gt;I am trying to create a dashboard panel that will have dropdowns different by the row you select.&amp;nbsp; I am using one of the searches that comes with the monitoring application as my search:&lt;/P&gt;&lt;P&gt;index=_internal sourcetype=splunkd TERM(group=tcpin_connections) TERM("cooked") OR TERM("cookedSSL") (hostname!=*.splunk*.*)&lt;BR /&gt;| dedup hostname&lt;BR /&gt;| stats c as fwdCount by version&lt;BR /&gt;| rex field=version "^(?&amp;lt;fwdV&amp;gt;\d+.\d+)"&lt;BR /&gt;| eval splV=&lt;BR /&gt;[ | makeresults&lt;BR /&gt;| eval VERSION=7.0&lt;BR /&gt;| append&lt;BR /&gt;[ | rest splunk_server=local count=1 /services/server/info&lt;BR /&gt;| stats max(version) as VERSION]&lt;BR /&gt;| rex field=VERSION "^(?&amp;lt;version&amp;gt;\d+.\d+)"&lt;BR /&gt;| stats max(version) as splV&lt;BR /&gt;| return $$splV ]&lt;BR /&gt;| eval fwd_7_3_eos=relative_time(strptime("22-Oct-2021", "%d-%b-%Y"), "+1d@d"), fwd_8_0_eos=relative_time(strptime("22-Oct-2021", "%d-%b-%Y"), "+1d@d"), fwd_8_1_eos=relative_time(strptime("19-Apr-2023", "%d-%b-%Y"), "+1d@d"), fwd_8_2_eos=relative_time(strptime("30-Sep-2023", "%d-%b-%Y"), "+1d@d"), fwd_9_0_eos=relative_time(strptime("14-Jun-2024", "%d-%b-%Y"), "+1d@d"), fwd_9_1_eos=relative_time(strptime("28-Jun-2025", "%d-%b-%Y"), "+1d@d"), fwd_default_eos=relative_time(strptime("01-Jan-1971", "%d-%b-%Y"), "+1d@d") | eval expTimestamp = case( match($$fwd_version$$, "^7\.3"), fwd_7_3_eos, match($$fwd_version$$, "^8\.0"), fwd_8_0_eos, match($$fwd_version$$, "^8\.1"), fwd_8_1_eos, match($$fwd_version$$, "^8\.2"), fwd_8_2_eos, match($$fwd_version$$, "^9\.0"), fwd_9_0_eos, match($$fwd_version$$, "^9\.1"), fwd_9_1_eos, 1==1, fwd_default_eos) | fields - fwd_*_eos&lt;BR /&gt;| eval warn=case(&lt;BR /&gt;(now() &amp;gt; expTimestamp), fwdCount,&lt;BR /&gt;1==1, 0)&lt;BR /&gt;| eval info=fwdCount-warn&lt;BR /&gt;| rename warn as "Out of date", info as "Up to date"&lt;BR /&gt;| fields - fwdV, splV, fwdCount, expTimestamp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want to do is to drop down based on the row I select (see attached snapshot)&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2023 17:40:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-dropdown-for-a-dashboard-listing/m-p/666906#M11228</guid>
      <dc:creator>NanSplk01</dc:creator>
      <dc:date>2023-10-31T17:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dropdown for a dashboard listing</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-dropdown-for-a-dashboard-listing/m-p/666916#M11229</link>
      <description>&lt;P&gt;Based on your description it sounds like you are looking to utilize the &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Viz/DrilldownIntro" target="_self"&gt;drilldown actions&lt;/A&gt; for a visualization to change something on the existing page.&lt;/P&gt;&lt;P&gt;While not exactly what you're doing, here's some posts around here&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-drill-down-from-one-panel-to-another-in-the-same/m-p/432498" target="_blank"&gt;Solved: How to create a drill down from one panel to anoth... - Splunk Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/Single-value-drilldown-click-to-display-and-click-again-to-hide/m-p/353111" target="_blank"&gt;Solved: Single value drilldown click to display and click ... - Splunk Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also a couple of external resources discussing how the tokens work:&lt;/P&gt;&lt;P&gt;&lt;A href="https://kinneygroup.com/blog/mastering-splunk-drilldowns-with-conditions/" target="_blank"&gt;The Beginner’s Guide to Splunk Drilldowns With Conditions – Kinney Group&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://kinneygroup.com/blog/dashboard-drilldown-splunk/" target="_blank"&gt;Define Your Drilldown in Splunk: $click.value$ vs $click.value2$ – Kinney Group&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2023 18:54:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-to-create-a-dropdown-for-a-dashboard-listing/m-p/666916#M11229</guid>
      <dc:creator>_JP</dc:creator>
      <dc:date>2023-10-31T18:54:54Z</dc:date>
    </item>
  </channel>
</rss>

