<?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 filter comma separate keywords in splunk dashboard using text box? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706612#M239112</link>
    <description>&lt;P&gt;You are really just repeating the same question all these days without showing your effort. &amp;nbsp;I have a fairly elaborate response in your other question&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Splunk-Search/How-to-filter-events-using-text-box-values/m-p/705622/highlight/true#M238876" target="_blank" rel="noopener"&gt;How to filter events using text box values&lt;/A&gt;&amp;nbsp;including sample dashboards. &amp;nbsp;Please delete repeating posts and work on the post where volunteers have provided you with the most information.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Dec 2024 05:18:33 GMT</pubDate>
    <dc:creator>yuanliu</dc:creator>
    <dc:date>2024-12-12T05:18:33Z</dc:date>
    <item>
      <title>How to filter comma separate keywords in splunk dashboard using text box?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706142#M238994</link>
      <description>&lt;P&gt;How to filter using text box with multiple keywords using comma separated.How to filter my table data.&lt;/P&gt;&lt;P&gt;This is&amp;nbsp; my query&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=atvi_test sourcetype=ncc  |rename hostname as Host component as Component filename as FileName | eval source_list=split("*ORA*", ",")| search Environment=QTEST Component IN (*) |search NOT Message IN (null)| table PST_Time Environment Host Component FileName  Message |sort PST_Time|search [| makemv delim="," source_list|eval search_condition=mvjoin(source_list, " OR Message=*")|eval search_condition="Message=*" . search_condition|return $search_condition]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 13:51:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706142#M238994</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-12-06T13:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter comma separate keywords in splunk dashboard using text box?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706175#M239008</link>
      <description>&lt;P&gt;To ask an answerable data analytics question, follow these golden rules; nay, call them the four commandments:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Illustrate data input (in raw text, anonymize as needed), whether they are raw events or output from a search (SPL that volunteers here do not have to look at).&lt;/LI&gt;&lt;LI&gt;Illustrate the desired output from illustrated data.&lt;/LI&gt;&lt;LI&gt;Explain the logic between illustrated data and desired output&amp;nbsp;&lt;EM&gt;without&lt;/EM&gt;&amp;nbsp;SPL.&lt;/LI&gt;&lt;LI&gt;If you also illustrate attempted SPL, illustrate actual output and compare with desired output, explain why they look different&amp;nbsp;&lt;U&gt;to you&lt;/U&gt;&amp;nbsp;if that is not painfully obvious.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To apply here: What is "my table data"? Suppose by "text box" you mean a text input element in a dashboard that gives you a token $text_tok$, and suppose your user typed "sometext, some more, some more text". &amp;nbsp;What exact result from your "table data" do you expect? &amp;nbsp;Is the illustrated search supposed to demonstrate your attempt to use such a token? &amp;nbsp;Where is the token if so? &amp;nbsp;If not, what is it supposed to tell volunteers?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 17:17:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706175#M239008</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2024-12-06T17:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter comma separate keywords in splunk dashboard using text box?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706327#M239041</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on a dashboard in splunk and need help implementing specefic filtering requirements.I have a table with the following fields.&lt;/P&gt;&lt;P&gt;message (contain log details)&lt;/P&gt;&lt;P&gt;component (indicates the source components)&lt;/P&gt;&lt;P&gt;My requirement are:&lt;/P&gt;&lt;P&gt;1.Add multiselect dropdown to filter the component field.&lt;/P&gt;&lt;P&gt;2. add textbox input to filter the message field using comma-separated keywords.&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;if the textbox contains error, timeout it should filter rows where the message field contain error or timeout in case both present we need to show both the values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions or example are greatly appreciated, Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2024 11:54:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706327#M239041</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-12-09T11:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter comma separate keywords in splunk dashboard using text box?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706612#M239112</link>
      <description>&lt;P&gt;You are really just repeating the same question all these days without showing your effort. &amp;nbsp;I have a fairly elaborate response in your other question&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Splunk-Search/How-to-filter-events-using-text-box-values/m-p/705622/highlight/true#M238876" target="_blank" rel="noopener"&gt;How to filter events using text box values&lt;/A&gt;&amp;nbsp;including sample dashboards. &amp;nbsp;Please delete repeating posts and work on the post where volunteers have provided you with the most information.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 05:18:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-filter-comma-separate-keywords-in-splunk-dashboard-using/m-p/706612#M239112</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2024-12-12T05:18:33Z</dc:date>
    </item>
  </channel>
</rss>

