<?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: Dash Board: Creating a Drop Down Menu with XML in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41535#M1989</link>
    <description>&lt;P&gt;It's when Splunk doesn't recognise the view as valid. This could be because there are unsupported modules/parameters in your code. It's probably worth looking through it and making sure everything is there that needs to be. Maybe post your code and I'll have a look when I've got time?&lt;/P&gt;</description>
    <pubDate>Fri, 24 Aug 2012 13:07:53 GMT</pubDate>
    <dc:creator>watsm10</dc:creator>
    <dc:date>2012-08-24T13:07:53Z</dc:date>
    <item>
      <title>Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41530#M1984</link>
      <description>&lt;P&gt;Hey Splunk Wizards,&lt;/P&gt;

&lt;P&gt;I have a simple dash board that displays a graph and table of some storage information. The XML looks like this:&lt;/P&gt;

&lt;P&gt;&amp;lt; ?xml version='1.0' encoding='utf-8'?&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
&amp;lt; dashboard&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
  &amp;lt; label&amp;gt;NAS Usage&amp;lt; /label&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
  &amp;lt; row&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
    &amp;lt; chart&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; searchString&amp;gt;index=usagereport sourcetype="nasoverall"| timechart max(Total_Space) as "Total Space Allocated" max(Used_Space) as "Space Used"&amp;lt; /searchString&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; title&amp;gt;Total NAS Usage by Filer&amp;lt; /title&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; earliestTime&amp;gt;-14d&amp;lt; /earliestTime&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; latestTime&amp;gt;now&amp;lt; /latestTime&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="charting.axisTitleX.text"&amp;gt;Date&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="charting.axisTitleY.text"&amp;gt;Space in TB&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="charting.axisY.maximumNumber"&amp;gt;50&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="charting.axisY.minimumNumber"&amp;gt;0&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="charting.chart"&amp;gt;line&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="charting.primaryAxisTitle.text"/&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="charting.secondaryAxisTitle.text"/&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="count"&amp;gt;10&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="displayRowNumbers"&amp;gt;true&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="maxLines"&amp;gt;10&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="segmentation"&amp;gt;outer&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="softWrap"&amp;gt;true&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
    &amp;lt; /chart&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
  &amp;lt; /row&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
  &amp;lt; row&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
    &amp;lt; table&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; searchString&amp;gt;index=usagereport sourcetype=nasreport_log Filer_Name="*" | rename Aggr as "Aggregate", Volume_Total as "Total Allocated", Volume_Used as "Used Space" | table Volume "Total Allocated" "Used Space" "Aggregate" | sort +Aggregate&amp;lt; /searchString&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; title&amp;gt;Disk Usage&amp;lt; /title&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; earliestTime&amp;gt;@d&amp;lt; /earliestTime&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; latestTime&amp;gt;now&amp;lt; /latestTime&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="count"&amp;gt;50&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="displayRowNumbers"&amp;gt;false&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
      &amp;lt; option name="drilldown"&amp;gt;row&amp;lt; /option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
    &amp;lt; /table&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
  &amp;lt; /row&amp;gt;&lt;BR /&gt;&lt;BR /&gt;
&amp;lt; /dashboard&amp;gt;  &lt;/P&gt;

&lt;P&gt;I have an extracted field called "Filer" and right now all the data from every filer is being shown. What I would like to do is have a pull-down menu at the top of this dashboard that displays all the differing "Filers." Once a filer is selected from the pull down, all the data for that filer is shown in the graph and the table.&lt;/P&gt;

&lt;P&gt;Thanks so much,&lt;BR /&gt;
Matt&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:18:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41530#M1984</guid>
      <dc:creator>mmedal</dc:creator>
      <dc:date>2020-09-28T12:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41531#M1985</link>
      <description>&lt;P&gt;I don't think you can do this in simple XML. Did you download and start looking at the UI examples app? It contains guidance on doing things like this.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2012 06:20:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41531#M1985</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-08-22T06:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41532#M1986</link>
      <description>&lt;P&gt;I've done this myself very recently. You would assign a search to the drop down menu to populate it. I would suggest using something like | TOP 10 Filer (depending on how many filers there are) as this would speed up the population of the drop down.&lt;/P&gt;

&lt;P&gt;Here is some code that I've put together to help you. If you have any questions, please ask! &lt;/P&gt;

&lt;P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
 &lt;VIEW template="dashboard.html" onunloadcanceljobs="False" autocancelinterval="100"&gt;&lt;BR /&gt;
   &lt;LABEL&gt;NAS Usage&lt;/LABEL&gt;&lt;BR /&gt;
    &lt;MODULE name="AccountBar" layoutpanel="appHeader"&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="AppBar" layoutpanel="navigationHeader"&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="Message" layoutpanel="messaging"&gt;&lt;BR /&gt;
       &lt;OBJECT&gt;&lt;PARAM name="filter" /&gt;&lt;EM&gt;&lt;BR /&gt;
        &lt;PARAM name="clearOnJobDispatch" /&gt;False&lt;BR /&gt;
        &lt;PARAM name="maxSize" /&gt;2&lt;BR /&gt;
    &lt;/EM&gt;&lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="TitleBar" layoutpanel="viewHeader"&gt;&lt;BR /&gt;
        &lt;OBJECT&gt;&lt;PARAM name="actionsMenuFilter" /&gt;dashboard&lt;BR /&gt;
    &lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;BR /&gt;
&amp;lt;!-- ^ This displays the usual stuff at the top of the dashboard!--&amp;gt;&lt;BR /&gt;
   &lt;MODULE name="SearchSelectLister" layoutpanel="mainSearchControls"&gt;&lt;BR /&gt;
                &lt;OBJECT&gt;&lt;PARAM name="staticFieldsToDisplay" /&gt;&amp;lt;!--This will be a static option which selects all Filers!--&amp;gt;&lt;BR /&gt;
                    &lt;LIST&gt;&lt;BR /&gt;
                        &lt;PARAM name="value" /&gt;&lt;BR /&gt;
                        &lt;PARAM name="label" /&gt;All&lt;BR /&gt;
                    &lt;/LIST&gt;&lt;BR /&gt;
                &lt;BR /&gt;
                &lt;PARAM name="searchWhenChanged" /&gt;True&lt;BR /&gt;
                &lt;PARAM name="settingToCreate" /&gt;filer_setting&lt;BR /&gt;
                &lt;PARAM name="label" /&gt;Select a Filer:&lt;BR /&gt;
                &lt;PARAM name="applyOuterIntentionsToInternalSearch" /&gt;True&lt;BR /&gt;
                &lt;PARAM name="search" /&gt;index=usagereport sourcetype="nasoverall" | top 20 Filer&lt;BR /&gt;
                &lt;PARAM name="searchFieldsToDisplay" /&gt;&lt;BR /&gt;
                    &lt;LIST&gt;&lt;BR /&gt;
                        &lt;PARAM name="label" /&gt;Filer&lt;BR /&gt;
                        &lt;PARAM name="value" /&gt;Filer&lt;BR /&gt;
                    &lt;/LIST&gt;&lt;BR /&gt;
                &lt;BR /&gt;
                &lt;MODULE name="ConvertToIntention"&gt;&lt;BR /&gt;
                    &lt;PARAM name="settingToConvert" /&gt;filer_setting&lt;BR /&gt;
                    &lt;PARAM name="intention" /&gt;&lt;BR /&gt;
                        &lt;PARAM name="name" /&gt;stringreplace&lt;BR /&gt;
                        &lt;PARAM name="arg" /&gt;&lt;BR /&gt;
                            &lt;PARAM name="filerName" /&gt;&lt;BR /&gt;
                            &amp;lt;!--filerName is used as the name of the filer to substitute into your search string!--&amp;gt;&lt;BR /&gt;
                                &lt;PARAM name="value" /&gt;$target$&lt;BR /&gt;
                            &lt;BR /&gt;
                        &lt;BR /&gt;
                    &lt;BR /&gt;
                    &lt;MODULE name="GenericHeader" layoutpanel="panel_row1_col1"&gt;&lt;BR /&gt;
                            &lt;PARAM name="label" /&gt;Total NAS Usage by Filer&lt;BR /&gt;
                    &lt;/MODULE&gt;&lt;/MODULE&gt;&lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;/VIEW&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                    &amp;lt;module name="HiddenSearch" layoutPanel="panel_row1_col1"&amp;gt;
                        &amp;lt;!--Your search which is populated from the dropdown!--&amp;gt;
                        &amp;lt;param name="search"&amp;gt;index=usagereport sourcetype=nasreport_log Filer_Name="$filerName$" | rename Aggr as "Aggregate", Volume_Total as "Total Allocated", Volume_Used as "Used Space" | table Volume "Total Allocated" "Used Space" "Aggregate" | sort +Aggregate&amp;lt;/param&amp;gt;
                        &amp;lt;module name="HiddenChartFormatter"&amp;gt;
                          &amp;lt;param name="chart"&amp;gt;line&amp;lt;/param&amp;gt;
                          &amp;lt;module name="FlashChart"&amp;gt;&amp;lt;!--Displays chart!--&amp;gt;
                                &amp;lt;param name="width"&amp;gt;100%&amp;lt;/param&amp;gt;
                                &amp;lt;param name="height"&amp;gt;300px&amp;lt;/param&amp;gt;
                          &amp;lt;/module&amp;gt;
                            &amp;lt;module name="JobProgressIndicator" /&amp;gt; &amp;lt;!--Shows loading bar for results!--&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;

&lt;P&gt;&lt;BR /&gt;
&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:18:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41532#M1986</guid>
      <dc:creator>watsm10</dc:creator>
      <dc:date>2020-09-28T12:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41533#M1987</link>
      <description>&lt;P&gt;Thanks for your response!! When I create a new view with this XML or change the xml on my existing dashboard to this xml, Splunk reports that it "cannot find the view." Any ideas on why that would be?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2012 20:15:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41533#M1987</guid>
      <dc:creator>mmedal</dc:creator>
      <dc:date>2012-08-23T20:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41534#M1988</link>
      <description>&lt;P&gt;Thanks for your response. Yes, I have looked at the UI Examples app. The only problem is that certain seemingly key elements such as the ConvertToIntention module are not documented well and if I want to deviate even slightly from the UI Examples app, my views fail to load.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2012 22:33:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41534#M1988</guid>
      <dc:creator>mmedal</dc:creator>
      <dc:date>2012-08-23T22:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41535#M1989</link>
      <description>&lt;P&gt;It's when Splunk doesn't recognise the view as valid. This could be because there are unsupported modules/parameters in your code. It's probably worth looking through it and making sure everything is there that needs to be. Maybe post your code and I'll have a look when I've got time?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2012 13:07:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41535#M1989</guid>
      <dc:creator>watsm10</dc:creator>
      <dc:date>2012-08-24T13:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41536#M1990</link>
      <description>&lt;P&gt;Also, make sure your XML is valid.  (I use Komodo editor and it does XML validation as you work; which is a significant time saver.)  Also, when your get annoyed and frustrated with "Intentions", you should want to check out Sideview Utils; it makes view development WAY easier and WAY more functional.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2012 13:40:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41536#M1990</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2012-08-24T13:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41537#M1991</link>
      <description>&lt;P&gt;While using &lt;CODE&gt;top 20&lt;/CODE&gt; may slightly decrease the drop-down rendering time in your browser by reducing the number of items displayed (which is normally negligible, depending on your exact use-case), you'd get the most speed up by limiting the search.  (Either use a shorter time range or limit the number of events by adding in &lt;CODE&gt;| head 1000 | top ...&lt;/CODE&gt;, for example.)  Another good trick is to use &lt;CODE&gt;metasearch&lt;/CODE&gt; command (when possible.)  Just for clarification:  The &lt;CODE&gt;top&lt;/CODE&gt; command still has to load and tally all events before it can determine what the "top" values are, and that takes the most time.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2012 13:50:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41537#M1991</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2012-08-24T13:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41538#M1992</link>
      <description>&lt;P&gt;It's almost exactly what what posted above.&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
&lt;VIEW template="dashboard.html" onunloadcanceljobs="False" autocancelinterval="100"&gt;&lt;BR /&gt;
   &lt;LABEL&gt;NAS Usage&lt;/LABEL&gt;&lt;BR /&gt;
    &lt;MODULE name="AccountBar" layoutpanel="appHeader"&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="AppBar" layoutpanel="navigationHeader"&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="Message" layoutpanel="messaging"&gt;&lt;BR /&gt;
       &lt;OBJECT&gt;&lt;PARAM name="filter" /&gt;*&lt;BR /&gt;
        &lt;PARAM name="clearOnJobDispatch" /&gt;False&lt;BR /&gt;
        &lt;PARAM name="maxSize" /&gt;2&lt;BR /&gt;
    &lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="TitleBar" layoutpanel="viewHeader"&gt;&lt;BR /&gt;
        &lt;OBJECT&gt;&lt;PARAM name="actionsMenuFilter" /&gt;dashboard&lt;BR /&gt;
    &lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;/VIEW&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;&lt;MODULE name="SearchSelectLister" layoutpanel="mainSearchControls"&gt;&lt;BR /&gt;
                &lt;OBJECT&gt;&lt;PARAM name="staticFieldsToDisplay" /&gt;&lt;BR /&gt;
                    &lt;LIST&gt;&lt;BR /&gt;
                        &lt;PARAM name="value" /&gt;*&lt;BR /&gt;
                        &lt;PARAM name="label" /&gt;All&lt;BR /&gt;
                    &lt;/LIST&gt;&lt;BR /&gt;
                &lt;BR /&gt;
                &lt;PARAM name="searchWhenChanged" /&gt;True&lt;BR /&gt;
                &lt;PARAM name="settingToCreate" /&gt;filer_setting&lt;BR /&gt;
                &lt;PARAM name="label" /&gt;Select a Filer:&lt;BR /&gt;
                &lt;PARAM name="applyOuterIntentionsToInternalSearch" /&gt;True&lt;BR /&gt;
                &lt;PARAM name="search" /&gt;index=usagereport sourcetype="nasoverall" | top 20 Filer&lt;BR /&gt;
                &lt;PARAM name="searchFieldsToDisplay" /&gt;&lt;BR /&gt;
                    &lt;LIST&gt;&lt;BR /&gt;
                        &lt;PARAM name="label" /&gt;Filer&lt;BR /&gt;
                        &lt;PARAM name="value" /&gt;Filer&lt;BR /&gt;
                    &lt;/LIST&gt;&lt;BR /&gt;
                &lt;BR /&gt;
                &lt;MODULE name="ConvertToIntention"&gt;&lt;BR /&gt;
                    &lt;PARAM name="settingToConvert" /&gt;filer_setting&lt;BR /&gt;
                    &lt;PARAM name="intention" /&gt;&lt;BR /&gt;
                        &lt;PARAM name="name" /&gt;stringreplace&lt;BR /&gt;
                        &lt;PARAM name="arg" /&gt;&lt;BR /&gt;
                            &lt;PARAM name="filerName" /&gt;&lt;/MODULE&gt;&lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                            &amp;lt;param name="value"&amp;gt;$target$&amp;lt;/param&amp;gt;
                        &amp;lt;/param&amp;gt;
                    &amp;lt;/param&amp;gt;
                &amp;lt;/param&amp;gt;
                &amp;lt;module name="GenericHeader" layoutpanel="panel_row1_col1"&amp;gt;
                        &amp;lt;param name="label"&amp;gt;Total NAS Usage by Filer&amp;lt;/param&amp;gt;
                &amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;MODULE name="HiddenSearch" layoutpanel="panel_row1_col1"&gt;&lt;/MODULE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                        &amp;lt;param name="search"&amp;gt;index=usagereport sourcetype=nasreport_log Filer_Name="$filerName$" | rename Aggr as "Aggregate", Volume_Total as "Total Allocated", Volume_Used as "Used Space" | table Volume "Total Allocated" "Used Space" "Aggregate" | sort +Aggregate&amp;lt;/param&amp;gt;
                        &amp;lt;module name="HiddenChartFormatter"&amp;gt;
                          &amp;lt;param name="chart"&amp;gt;line&amp;lt;/param&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;300px&amp;lt;/param&amp;gt;
                          &amp;lt;/module&amp;gt;
                            &amp;lt;module name="JobProgressIndicator"/&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;

&lt;P&gt;&lt;BR /&gt;
&lt;BR /&gt;
It seems to be valid XML and I don't believe any of these modules are deprecated or not supported. I could be wrong though...&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:19:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41538#M1992</guid>
      <dc:creator>mmedal</dc:creator>
      <dc:date>2020-09-28T12:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41539#M1993</link>
      <description>&lt;P&gt;Couldn't get the XML to format properly in markdown....&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2012 17:47:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41539#M1993</guid>
      <dc:creator>mmedal</dc:creator>
      <dc:date>2012-08-24T17:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41540#M1994</link>
      <description>&lt;P&gt;I have posted the XML below!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2012 21:24:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41540#M1994</guid>
      <dc:creator>mmedal</dc:creator>
      <dc:date>2012-08-24T21:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41541#M1995</link>
      <description>&lt;P&gt;Try this: &lt;/P&gt;

&lt;P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;
 &lt;VIEW template="dashboard.html" onunloadcanceljobs="False" autocancelinterval="100"&gt;&lt;BR /&gt;
   &lt;LABEL&gt;NAS Usage&lt;/LABEL&gt;&lt;BR /&gt;
    &lt;MODULE name="AccountBar" layoutpanel="appHeader"&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="AppBar" layoutpanel="navigationHeader"&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="Message" layoutpanel="messaging"&gt;&lt;BR /&gt;
       &lt;OBJECT&gt;&lt;PARAM name="filter" /&gt;&lt;EM&gt;&lt;BR /&gt;
        &lt;PARAM name="clearOnJobDispatch" /&gt;False&lt;BR /&gt;
        &lt;PARAM name="maxSize" /&gt;2&lt;BR /&gt;
    &lt;/EM&gt;&lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;BR /&gt;
    &lt;MODULE name="TitleBar" layoutpanel="viewHeader"&gt;&lt;BR /&gt;
        &lt;OBJECT&gt;&lt;PARAM name="actionsMenuFilter" /&gt;dashboard&lt;BR /&gt;
    &lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;BR /&gt;
            &lt;MODULE name="SearchSelectLister" layoutpanel="mainSearchControls"&gt;&lt;BR /&gt;
                  &lt;OBJECT&gt;&lt;PARAM name="staticFieldsToDisplay" /&gt;&lt;BR /&gt;
                    &lt;LIST&gt;&lt;BR /&gt;
                        &lt;PARAM name="value" /&gt;""&lt;BR /&gt;
                        &lt;PARAM name="label" /&gt;All&lt;BR /&gt;
                    &lt;/LIST&gt;&lt;BR /&gt;
                &lt;BR /&gt;
                &lt;PARAM name="searchWhenChanged" /&gt;True&lt;BR /&gt;
                &lt;PARAM name="settingToCreate" /&gt;filer_setting&lt;BR /&gt;
                &lt;PARAM name="label" /&gt;Select a Filer:&lt;BR /&gt;
                &lt;PARAM name="applyOuterIntentionsToInternalSearch" /&gt;True&lt;BR /&gt;
                &lt;PARAM name="search" /&gt;index=usagereport sourcetype="nasoverall" | top 20 Filer&lt;BR /&gt;
                &lt;PARAM name="searchFieldsToDisplay" /&gt;&lt;BR /&gt;
                    &lt;LIST&gt;&lt;BR /&gt;
                        &lt;PARAM name="label" /&gt;Filer&lt;BR /&gt;
                        &lt;PARAM name="value" /&gt;Filer&lt;BR /&gt;
                    &lt;/LIST&gt;&lt;BR /&gt;
                &lt;BR /&gt;
                &lt;MODULE name="ConvertToIntention"&gt;&lt;BR /&gt;
                    &lt;PARAM name="settingToConvert" /&gt;filer_setting&lt;BR /&gt;
                    &lt;PARAM name="intention" /&gt;&lt;BR /&gt;
                        &lt;PARAM name="name" /&gt;stringreplace&lt;BR /&gt;
                        &lt;PARAM name="arg" /&gt;&lt;BR /&gt;
                            &lt;PARAM name="filerName" /&gt;&lt;BR /&gt;
                            &lt;PARAM name="value" /&gt;$target$&lt;BR /&gt;
                            &lt;BR /&gt;
                        &lt;BR /&gt;
                    &lt;BR /&gt;
                    &lt;MODULE name="Message"&gt;&lt;BR /&gt;
                        &lt;PARAM name="filter" /&gt;splunk.search.job&lt;BR /&gt;
                        &lt;PARAM name="clearOnJobDispatch" /&gt;True&lt;BR /&gt;
                        &lt;PARAM name="maxSize" /&gt;10&lt;BR /&gt;
                    &lt;MODULE name="GenericHeader" layoutpanel="panel_row1_col1"&gt;&lt;BR /&gt;
                            &lt;PARAM name="label" /&gt;Total NAS Usage by Filer&lt;BR /&gt;
                            &lt;/MODULE&gt;&lt;BR /&gt;
            &lt;MODULE name="HiddenSearch" layoutpanel="panel_row1_col1"&gt;&lt;BR /&gt;
                        &lt;PARAM name="search" /&gt;index=usagereport sourcetype=nasreport_log Filer_Name="$filerName$" | rename Aggr as "Aggregate", Volume_Total as "Total Allocated", Volume_Used as "Used Space" | table Volume "Total Allocated" "Used Space" "Aggregate" | sort +Aggregate&lt;BR /&gt;
                            &lt;MODULE name="HiddenChartFormatter"&gt;&lt;BR /&gt;
                              &lt;PARAM name="chart" /&gt;line&lt;BR /&gt;
                              &lt;MODULE name="FlashChart"&gt;&lt;BR /&gt;
                                    &lt;PARAM name="width" /&gt;100%&lt;BR /&gt;
                                    &lt;PARAM name="height" /&gt;300px&lt;BR /&gt;
                              &lt;/MODULE&gt;&lt;BR /&gt;
                                &lt;MODULE name="JobProgressIndicator"&gt;&lt;/MODULE&gt; &lt;BR /&gt;
                                &lt;/MODULE&gt;&lt;BR /&gt;
                        &lt;/MODULE&gt;&lt;BR /&gt;
                      &lt;/MODULE&gt;&lt;BR /&gt;
        &lt;/MODULE&gt;&lt;BR /&gt;
    &lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;BR /&gt;
&lt;/VIEW&gt;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:20:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41541#M1995</guid>
      <dc:creator>watsm10</dc:creator>
      <dc:date>2020-09-28T12:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dash Board: Creating a Drop Down Menu with XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41542#M1996</link>
      <description>&lt;P&gt;Splunk can still "not find the view." Your XML looks perfectly valid to me. &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;  Thanks for your continued assistance!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2012 20:46:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dash-Board-Creating-a-Drop-Down-Menu-with-XML/m-p/41542#M1996</guid>
      <dc:creator>mmedal</dc:creator>
      <dc:date>2012-08-28T20:46:22Z</dc:date>
    </item>
  </channel>
</rss>

