<?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: help on eval command from a dropdown list in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597387#M207984</link>
    <description>&lt;P&gt;Please give us more information.&amp;nbsp; What problem are you trying to solve?&amp;nbsp; What exactly does "it doesn't work" mean?&amp;nbsp; What error do you get?&amp;nbsp; What results did you expect compared to those you received?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 May 2022 12:53:25 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2022-05-11T12:53:25Z</dc:date>
    <item>
      <title>Dropdown list: How to update search events with an eval case command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597300#M207957</link>
      <description>&lt;P&gt;hello&lt;/P&gt;
&lt;P&gt;From the dropdown list below, I need to update search events with an eval case command&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;    &amp;lt;input type="dropdown" token="debit" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Débit&amp;lt;/label&amp;gt;
      &amp;lt;choice value="2 Mb/s"&amp;gt;2 Mb/s&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="4 Mb/s"&amp;gt;4 Mb/s&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;&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;&amp;nbsp;So I try something like this but it doesnt works&lt;/P&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;LI-CODE lang="markup"&gt;| eval debit="$debit$"
| eval deb=case(debit=="2 Mb/s", site=="TOTO" OR site=="TITI", debit=="4 Mb/s", site=="TUTU" OR site=="TATA", 1==1,site)
| table site deb&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;could you help please?&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 16:25:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597300#M207957</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-05-12T16:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597387#M207984</link>
      <description>&lt;P&gt;Please give us more information.&amp;nbsp; What problem are you trying to solve?&amp;nbsp; What exactly does "it doesn't work" mean?&amp;nbsp; What error do you get?&amp;nbsp; What results did you expect compared to those you received?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 12:53:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597387#M207984</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2022-05-11T12:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597389#M207985</link>
      <description>&lt;P&gt;When I choose an item in the dropdown list I need to filter events in my search&lt;/P&gt;&lt;P&gt;In the example, I just try to display the field related to the item choice&lt;/P&gt;&lt;P&gt;It means that if i select 2 Mb/s, in need to display the site "toto" OR hte site 'TITI" in my table panel&lt;/P&gt;&lt;P&gt;I have any error just no results even if my token value is well captured with&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval debit='$debit$'&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 11 May 2022 13:08:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597389#M207985</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-05-11T13:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597395#M207988</link>
      <description>&lt;P&gt;Here is the code I used to try to recreate this problem.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form version="1.1"&amp;gt;
  &amp;lt;label&amp;gt;Test&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;Answers support&amp;lt;/description&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="debit" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Débit&amp;lt;/label&amp;gt;
      &amp;lt;choice value="2 Mb/s"&amp;gt;2 Mb/s&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="4 Mb/s"&amp;gt;4 Mb/s&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 10
| eval debit="$debit$"
| eval deb=case(debit=="2 Mb/s", site=="TOTO" OR site=="TITI", debit=="4 Mb/s", site=="TUTU" OR site=="TATA", 1==1,site)
| table site deb debit&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;option name="refresh.display"&amp;gt;progressbar&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;&lt;P&gt;and here are my results:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="richgalloway_0-1652275608311.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19578iD82CD96AA7D71099/image-size/medium?v=v2&amp;amp;px=400" role="button" title="richgalloway_0-1652275608311.png" alt="richgalloway_0-1652275608311.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As you can see, the site field is null because no code populated it.&amp;nbsp; We have to tell Splunk which value to assign to the site field - it can be either "TOTO" or "TITI", but it must be deterministic.&amp;nbsp; How should Splunk decide which value to use?&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 13:31:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597395#M207988</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2022-05-11T13:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597419#M207991</link>
      <description>&lt;P&gt;not sure to well understand or pearhaps my example is bad&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval debit="$debit$"
| eval deb=case(debit=="2 Mb/s", site=="TOTO" OR site=="TITI", debit=="4 Mb/s", site=="TUTU" OR site=="TATA", 1==1,site)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;what I exactly need is that when I am select "2 Mb/s" in the dropdown list, I retrieve th selected item in my search (this works) but I also need to retrieve the site mentionned in the eval&lt;/P&gt;&lt;P&gt;So why when I am doing this, I am unable to display only the site = "BESANC"?&lt;/P&gt;&lt;P&gt;Other question, instead "site" ate the end of the eval, I would like to display nothing&lt;/P&gt;&lt;P&gt;So I put "" but Splunk tells m that my eval is malformed&lt;/P&gt;&lt;P&gt;How to do please?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval deb=case(debit=='4 Mb/s', site=="BESANC", 1==1, site) 
| table debit deb site&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 14:31:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597419#M207991</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-05-11T14:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597444#M208003</link>
      <description>&lt;P&gt;I agree we are not understanding each other, but am not sure how to clarify the matter.&lt;/P&gt;&lt;P&gt;If you want to assign a value to the field 'site' then 'site' must be on the left-hand-side of the &lt;FONT face="courier new,courier"&gt;=&lt;/FONT&gt; in the &lt;FONT face="courier new,courier"&gt;eval&lt;/FONT&gt; statement.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval site=case(debit=='4 Mb/s', "BESANC", 1==1, "")&lt;/LI-CODE&gt;&lt;P&gt;With the &lt;FONT face="courier new,courier"&gt;case&lt;/FONT&gt; function, the first argument is tested.&amp;nbsp; If the test passes then the second argument is evaluated and the result assigned to the specified field.&amp;nbsp; If the test fails then the third argument is tested and fourth argument evaluated.&amp;nbsp; This continues with each pair of arguments until one of the odd-numbered arguments is true.&amp;nbsp; If no odd-numbered argument is true then the result of the &lt;FONT face="courier new,courier"&gt;case&lt;/FONT&gt; function is &lt;FONT face="courier new,courier"&gt;null&lt;/FONT&gt;.&lt;/P&gt;&lt;P&gt;The == operator tests equality; the = operator is for assignment or equality, depending on the context.&lt;/P&gt;&lt;P&gt;In the line&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval deb=case(debit=="2 Mb/s", site=="TOTO" OR site=="TITI", debit=="4 Mb/s", site=="TUTU" OR site=="TATA", 1==1,site)&lt;/LI-CODE&gt;&lt;P&gt;The second and fourth arguments evaluate to either 'true' or 'false' and one of those values is assigned to field 'deb'.&amp;nbsp; The default case assigns the value of field 'site', which probably is null, to the field 'deb'.&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 16:02:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597444#M208003</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2022-05-11T16:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597531#M208034</link>
      <description>&lt;P&gt;thanks it's more clear now&lt;/P&gt;&lt;P&gt;but I always face an issue&lt;/P&gt;&lt;P&gt;when I run this&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval site=case(debit=='4 Mb/s', "BESANC", 1==1, "")
| table debit site&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Except if I am mistaken, when I chose "4 Mb/s" in the dropdown list, it maches the site "BESANC"?&lt;/P&gt;&lt;P&gt;So why in the table result, I display the debit but not the site?&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 07:43:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597531#M208034</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-05-12T07:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597533#M208035</link>
      <description>&lt;P&gt;These statements&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval deb=case(debit=='4 Mb/s', site=="BESANC", 1==1, site) 

AND

| eval deb=case(debit=="2 Mb/s", site=="TOTO" OR site=="TITI", debit=="4 Mb/s", site=="TUTU" OR site=="TATA", 1==1,site)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;are rather odd - the case statement is used to perform the task&lt;/P&gt;&lt;P&gt;variable = case(condition 1, result 1, condition 2, result 2, ...)&lt;/P&gt;&lt;P&gt;You are saying if the field called 'debit' is "2 Mb/s" then you want the field deb to have the value represented by the statement&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;site=="BESANC"&lt;/LI-CODE&gt;&lt;P&gt;which is a BOOLEAN evaluation and will result in the value 'True' or 'False', so deb will have a value of True if site is BESANC in this case.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that what you are trying to do?&lt;/P&gt;&lt;P&gt;what do you mean by "&lt;SPAN&gt;I also need to retrieve the site mentionned in the eval"?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 07:53:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597533#M208035</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2022-05-12T07:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597546#M208042</link>
      <description>&lt;P&gt;sorry for my misunderstanding on eval case&lt;/P&gt;&lt;P&gt;no I dont want to return a boolean value&lt;/P&gt;&lt;P&gt;"site" field is a field of my index&lt;/P&gt;&lt;P&gt;what I need is to match site "field" with the choice done in tre dropdown list&lt;/P&gt;&lt;P&gt;For example, if the choice is debit=2 Mb/s then the eval command has to match with site A, B and C&lt;/P&gt;&lt;P&gt;if the choice is debit=4 Mb/s then the eval command has to match with site D, E and F&lt;/P&gt;&lt;P&gt;So pearhaps eval case is not the good way?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 08:38:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597546#M208042</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-05-12T08:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597598#M208068</link>
      <description>&lt;P&gt;The &lt;FONT face="courier new,courier"&gt;eval&lt;/FONT&gt; command assigns values to fields.&amp;nbsp; It does not match data in events.&amp;nbsp; To match events, use the &lt;FONT face="courier new,courier"&gt;search&lt;/FONT&gt; or &lt;FONT face="courier new,courier"&gt;where&lt;/FONT&gt; command.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 14:04:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597598#M208068</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2022-05-12T14:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597618#M208075</link>
      <description>&lt;P&gt;OK&lt;/P&gt;&lt;P&gt;whatever, I found why I was unable to display the site field&lt;/P&gt;&lt;P&gt;It was because the site was surronded by single quote instead double quote&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; eval site=case(debit=="4 Mb/s", "BESANC", debit=="2 Mb/s", "PIBR", 1==1, "") 
| table site debit&lt;/LI-CODE&gt;&lt;P&gt;Now it works perfecly&lt;/P&gt;&lt;P&gt;The site displayed in my table correspond well to the dropdwon list choice&lt;/P&gt;&lt;P&gt;Now it misses me just one thing&lt;/P&gt;&lt;P&gt;For a same debit, I need to match different site&lt;/P&gt;&lt;P&gt;So I need something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; eval site=case(debit=="4 Mb/s", ("BESANC" OR "TUTU"), debit=="2 Mb/s", ("PIBR" OR "TITI"), 1==1, ""))
| table site debit&lt;/LI-CODE&gt;&lt;P&gt;Is it possible?&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 14:41:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597618#M208075</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-05-12T14:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597700#M208106</link>
      <description>&lt;P&gt;I think I understand what the goal is and there's a better way to do it.&amp;nbsp; When the user selects the Debit value, the dashboard should set a new token with the expected site values.&amp;nbsp; Then reference that token in the search.&amp;nbsp; See the new example dashboard below.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form version="1.1"&amp;gt;
  &amp;lt;label&amp;gt;Test&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;Answers support&amp;lt;/description&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="debit" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Débit&amp;lt;/label&amp;gt;
      &amp;lt;choice value="2 Mb/s"&amp;gt;2 Mb/s&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="4 Mb/s"&amp;gt;4 Mb/s&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="2 Mb/s"&amp;gt;
          &amp;lt;set token="site_tok"&amp;gt;site=="TOTO" OR site=="TITI"&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="4 Mb/s"&amp;gt;
          &amp;lt;set token="site_tok"&amp;gt;site=="TUTU" OR site=="TATA"&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&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 
| eval site="TATA", debit=$debit|s$
| where $site_tok$
| table site debit&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;option name="refresh.display"&amp;gt;progressbar&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 00:11:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597700#M208106</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2022-05-13T00:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: help on eval command from a dropdown list</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597707#M208111</link>
      <description>&lt;P&gt;many thanks&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 04:48:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Dropdown-list-How-to-update-search-events-with-an-eval-case/m-p/597707#M208111</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-05-13T04:48:57Z</dc:date>
    </item>
  </channel>
</rss>

