<?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: How to allow wildcard inputs in a dashboard input textbox, but not allow just &amp;quot;*&amp;quot; (star) to be entered? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600828#M49347</link>
    <description>&lt;P&gt;I see there are existing answers that handle the logic in a search in SPL. For the question asked, I would prefer to handle the logic on the dashboard. Here's how I'd do it:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="text" token="raw_tok"&amp;gt;
      &amp;lt;label&amp;gt;Search for something&amp;lt;/label&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition match="match(value, &amp;amp;quot;^\\*$&amp;amp;quot;)"&amp;gt;
          &amp;lt;unset token="target"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition value="*"&amp;gt;
          &amp;lt;set token="target"&amp;gt;$value$&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel rejects="$target$"&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;p&amp;gt;Please use wildcards only after at least specifying part of a value, such as "something*"&amp;lt;/p&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel depends="$target$"&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval foo = "something_123" | search foo="$target$"&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;&lt;/PRE&gt;&lt;P&gt;In addition to keeping the logic on the dashboard, this will only create a search job when the condition is met, otherwise it would wait for the unset token to be filled. Using the dashboard eval logic also allows to e.g. check for a minimum input length or other conditions. More details in docs for &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.2.6/Viz/PanelreferenceforSimplifiedXML#eval.2C_link.2C_set.2C_and_unset" target="_self"&gt;eval&lt;/A&gt; and &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.2.6/Viz/tokens#Custom_logic_for_dashboards" target="_self"&gt;match&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Obvious reminder that this is not a security feature, only a UI limitation on this dashboard - your users can of course still open a working search and change the SPL to search for "*", or not filter at all.&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jun 2022 09:54:40 GMT</pubDate>
    <dc:creator>jeffland</dc:creator>
    <dc:date>2022-06-07T09:54:40Z</dc:date>
    <item>
      <title>How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600482#M49308</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am having no luck with a dashboard input restriction.&lt;/P&gt;&lt;P&gt;I have a dashboard textbox input that queries a lookup.&amp;nbsp; &amp;nbsp;For instance, the input could be "hostname".&amp;nbsp; &amp;nbsp;I want the user to be able to put in the exact value or partial with a wildcard "*".&amp;nbsp; So if hostname = 12345ABCD, they could enter the exact or 12345A*&amp;nbsp; and return all those that match.&amp;nbsp; &amp;nbsp;BUT I don't want them to just enter hostname = "*"&amp;nbsp; &amp;nbsp;and pull everything back.&lt;/P&gt;&lt;P&gt;Any ideas how to sanitize the inputs so a user cannot just use "*" star?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 14:32:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600482#M49308</guid>
      <dc:creator>Glasses</dc:creator>
      <dc:date>2022-06-03T14:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600484#M49309</link>
      <description>&lt;P&gt;How are you using the hostname token in your queries? You could put a text above/below the textbox to show restriction (e.g. don't enter just wildcard) and then use a subsearch to not show anything if only * is used). e.g.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=foo sourcetype=bar [| makeresults | eval host=if("$hostname$"="*","YouCantSeeMe","$hostname$") | table host] ...rest of your search&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 03 Jun 2022 14:48:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600484#M49309</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-06-03T14:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600487#M49310</link>
      <description>&lt;P&gt;Thank you for the reply.&lt;/P&gt;&lt;P&gt;My query is bit more complicated, here is my quick insert of&amp;nbsp; your logic (doesn't work)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup &amp;lt;host-identity-lookup&amp;gt; 
| eval $value_tok$=if("$value_tok$"="*",null,"$value_tok$")
| search $field_tok$ IN ($value_tok$) 
| fields hostname fooNumber barID .... etc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so I have a dropdown input that sets the field name token as " $field_tok$"&amp;nbsp; and the value for the field is the input of a partial hostname,&amp;nbsp;"$value_tok$",&amp;nbsp; &amp;nbsp;thus&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;... | search $field_tok$ IN ($value_tok$)&lt;/LI-CODE&gt;&lt;P&gt;will create&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;... | search hostname=&amp;lt;user's input of hostname&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;any ideas how to work your logic in here?&amp;nbsp; &amp;nbsp;TY&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:00:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600487#M49310</guid>
      <dc:creator>Glasses</dc:creator>
      <dc:date>2022-06-03T15:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600489#M49311</link>
      <description>&lt;P&gt;was thinking to use null if... but cannot get it to work&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:07:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600489#M49311</guid>
      <dc:creator>Glasses</dc:creator>
      <dc:date>2022-06-03T15:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600491#M49312</link>
      <description>&lt;P&gt;How about this? (you can't modify a token from a search)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup &amp;lt;host-identity-lookup&amp;gt; 
| search $field_tok$ IN ([|makeresults | eval search= if("$value_tok$"="*" ,"","$value_tok$")| table search]) 
| fields hostname fooNumber barID .... etc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:22:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600491#M49312</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-06-03T15:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600493#M49313</link>
      <description>&lt;P&gt;yes "cannot modify token from a search" was part of the problem, will try your logic and get back to you.&amp;nbsp; TY!!&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:24:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600493#M49313</guid>
      <dc:creator>Glasses</dc:creator>
      <dc:date>2022-06-03T15:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600495#M49314</link>
      <description>&lt;P&gt;keep getting error in eval command, expression is malformed. Expected ).&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:31:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600495#M49314</guid>
      <dc:creator>Glasses</dc:creator>
      <dc:date>2022-06-03T15:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600496#M49315</link>
      <description>&lt;P&gt;I created a sample dashboard with similar logic and it works there. Please compare the logic/syntax with your query and see if there is any difference.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form theme="dark"&amp;gt;
  &amp;lt;label&amp;gt;Sample Dashboard&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="true" autoRun="false"&amp;gt;
    &amp;lt;input type="time" token="time1"&amp;gt;
      &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="text" token="hostname"&amp;gt;
      &amp;lt;label&amp;gt;Search Filter:&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;
     
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Token=$hostname$&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal | search host IN ([|makeresults | eval search= if("$hostname$"="*" ,"","$hostname$")| table search])   | timechart count
| sort -_time&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$time1.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$time1.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;20&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:37:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600496#M49315</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-06-03T15:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600497#M49316</link>
      <description>&lt;P&gt;yeah had a syntax error that cleared after I relaunched the dashboard (weird).&lt;/P&gt;&lt;P&gt;The logic works to prevent entering only "*" but for some reason now&amp;nbsp; &amp;nbsp;partial hostname values&amp;nbsp; &amp;lt;foo&amp;gt;*&amp;nbsp; does not work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you wildcard in your dashboard?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:39:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600497#M49316</guid>
      <dc:creator>Glasses</dc:creator>
      <dc:date>2022-06-03T15:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600503#M49317</link>
      <description>&lt;P&gt;Yes I can.&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup &amp;lt;host-identity-lookup&amp;gt; 
| search $field_tok$=[|makeresults | eval search=if("$value_tok$"="*" ,"","$value_tok$") | table search]
| fields hostname fooNumber barID .... etc&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 03 Jun 2022 15:50:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600503#M49317</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-06-03T15:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600509#M49318</link>
      <description>&lt;P&gt;Thank you so much!!!&lt;/P&gt;&lt;P&gt;OMG, I must have had a whitespace or something copied in wrong to the dash bc I kept getting errors.&lt;/P&gt;&lt;P&gt;After copy/paste your code, it worked rather than editing mine (weird).&lt;/P&gt;&lt;P&gt;Just fyi , in my dashboard when the "'' (double quote as none) is used I get an error&amp;gt;&amp;gt; Comparator "=" is missing a term, that is after a single * is entered as the user input.&lt;/P&gt;&lt;P&gt;&amp;nbsp;so I swapped with "NULL" and you don't see the error...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[|makeresults | eval search=if("$value_tok$"="*" ,"","$value_tok$") | table search]


[|makeresults | eval search=if("$value_tok$"="*" ,"NULL","$value_tok$") | table search]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again TY so much!!! I would have been reiterating for the rest of the day...&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 16:13:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600509#M49318</guid>
      <dc:creator>Glasses</dc:creator>
      <dc:date>2022-06-03T16:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to allow wildcard inputs in a dashboard input textbox, but not allow just "*" (star) to be entered?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600828#M49347</link>
      <description>&lt;P&gt;I see there are existing answers that handle the logic in a search in SPL. For the question asked, I would prefer to handle the logic on the dashboard. Here's how I'd do it:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="text" token="raw_tok"&amp;gt;
      &amp;lt;label&amp;gt;Search for something&amp;lt;/label&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition match="match(value, &amp;amp;quot;^\\*$&amp;amp;quot;)"&amp;gt;
          &amp;lt;unset token="target"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition value="*"&amp;gt;
          &amp;lt;set token="target"&amp;gt;$value$&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel rejects="$target$"&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;p&amp;gt;Please use wildcards only after at least specifying part of a value, such as "something*"&amp;lt;/p&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel depends="$target$"&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval foo = "something_123" | search foo="$target$"&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;&lt;/PRE&gt;&lt;P&gt;In addition to keeping the logic on the dashboard, this will only create a search job when the condition is met, otherwise it would wait for the unset token to be filled. Using the dashboard eval logic also allows to e.g. check for a minimum input length or other conditions. More details in docs for &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.2.6/Viz/PanelreferenceforSimplifiedXML#eval.2C_link.2C_set.2C_and_unset" target="_self"&gt;eval&lt;/A&gt; and &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.2.6/Viz/tokens#Custom_logic_for_dashboards" target="_self"&gt;match&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Obvious reminder that this is not a security feature, only a UI limitation on this dashboard - your users can of course still open a working search and change the SPL to search for "*", or not filter at all.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 09:54:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-allow-wildcard-inputs-in-a-dashboard-input-textbox-but/m-p/600828#M49347</guid>
      <dc:creator>jeffland</dc:creator>
      <dc:date>2022-06-07T09:54:40Z</dc:date>
    </item>
  </channel>
</rss>

