<?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: props.conf not showing the output using EVAL in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/props-conf-not-showing-the-output-using-EVAL/m-p/755731#M23498</link>
    <description>&lt;P class=""&gt;&lt;A href="https://help.splunk.com/en/splunk-enterprise/manage-knowledge-objects/knowledge-management-manual/9.4/get-started-with-knowledge-objects/the-sequence-of-search-time-operations#ariaid-title9" target="_blank" rel="noopener"&gt;https://help.splunk.com/en/splunk-enterprise/manage-knowledge-objects/knowledge-management-manual/9.4/get-started-with-knowledge-objects/the-sequence-of-search-time-operations#ariaid-title9&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;H3 id="restrictions-5"&gt;Restrictions&lt;/H3&gt;&lt;P class=""&gt;All EVAL-&amp;lt;fieldname&amp;gt; configurations within a single props.conf stanza are processed in parallel instead of sequentially. This means you can't chain together calculated field expressions where the evaluation of one calculated field is used in the expression for the next calculated field.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Nov 2025 19:10:07 GMT</pubDate>
    <dc:creator>PickleRick</dc:creator>
    <dc:date>2025-11-20T19:10:07Z</dc:date>
    <item>
      <title>props.conf not showing the output using EVAL</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/props-conf-not-showing-the-output-using-EVAL/m-p/755700#M23495</link>
      <description>&lt;P&gt;Below is props.conf for a sourcetype, where we getting results for raw_action and tag1 fields.&lt;/P&gt;&lt;P&gt;But considering/based upon the inputs received from raw_action and tag1 while we try to get the result for the field "action" receiving BLANK results.&lt;/P&gt;&lt;P&gt;Kindly someone help&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EXTRACT-raw_action = (?&amp;lt;raw_action&amp;gt;Failed|Stopped|Deactivated|Login failed|USER_LOGGED_OUT|Logged out|Accepted|Log
ged in|USER_LOGGED_IN|dnf-makecache.service: Succeeded|TASK_FINISHED|modified|acl_modified|Succeeded|success=yes|Link is Up|repaired|allowed|receive)

EVAL-tag1 = case(match(raw_action,"(?i)\b(Failed|Stopped|Deactivated|Login failed|USER_LOGGED_OUT|Logged out)\b"),"authentication", match(raw_action,"(?i)\b(Accepted|Logged in|USER_LOGGED_IN)\b"),"authentication", match(raw_action,"(?i)\b(dnf-makecache.service: Succeeded)\b"),"change", match(raw_action,"(?i)\b(TASK_FINISHED|modified|acl_modified|Succeeded)\b"),"change", match(raw_action,"(?i)\b(success=yes|Link is Up|repaired|allowed|receive)\b"),"network")

EVAL-action = case(tag1=="authentication" AND match(raw_action,"(?i)(Failed|Stopped|Deactivated|Login failed|USER_LOGGED_OUT|Logged out)"),"failure", tag1=="authentication" AND match(raw_action,"(?i)(Accepted|Logged in|USER_LOGGED_IN)"),"success", tag1=="change" AND match(raw_action,"(?i)(dnf-makecache.service:Succeeded)"),"modified", tag1=="change" AND match(raw_action,"(?i)(TASK_FINISHED|modified|acl_modified|Succeeded)"),"modified", tag1=="network" AND match(raw_action,"(?i)(success=yes|Link is Up|repaired|allowed|receive)"),"allowed")&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 20 Nov 2025 21:17:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/props-conf-not-showing-the-output-using-EVAL/m-p/755700#M23495</guid>
      <dc:creator>sureshkumaar</dc:creator>
      <dc:date>2025-11-20T21:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf not showing the output using EVAL</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/props-conf-not-showing-the-output-using-EVAL/m-p/755707#M23497</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/206567"&gt;@sureshkumaar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You cannot reference a field generated by an EVAL statement (like tag1) inside another EVAL statement (like action) within the same props.conf stanza. All EVAL statements in a stanza run effectively in parallel based on the extracted fields, not sequentially based on each other's output.&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;To fix this, remove the dependency on tag1 inside EVAL-action and rely solely on raw_action. Since raw_action is extracted via EXTRACT (which runs before EVAL), it is available for use. (See&amp;nbsp;&lt;A href="https://help.splunk.com/en/splunk-enterprise/manage-knowledge-objects/knowledge-management-manual/10.0/get-started-with-knowledge-objects/the-sequence-of-search-time-operations" target="_blank" rel="noopener"&gt;https://help.splunk.com/en/splunk-enterprise/manage-knowledge-objects/knowledge-management-manual/10.0/get-started-with-knowledge-objects/the-sequence-of-search-time-operations&lt;/A&gt;)&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Additionally, there is a typo in your original EVAL-action regex: dnf-makecache.service:Succeeded is missing the space that exists in EVAL-tag1 (dnf-makecache.service: Succeeded).&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Try this:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;EXTRACT-raw_action = (?&amp;lt;raw_action&amp;gt;Failed|Stopped|Deactivated|Login failed|USER_LOGGED_OUT|Logged out|Accepted|Log\s*ged in|USER_LOGGED_IN|dnf-makecache.service: Succeeded|TASK_FINISHED|modified|acl_modified|Succeeded|success=yes|Link is Up|repaired|allowed|receive)

EVAL-tag1 = case(match(raw_action,"(?i)\b(Failed|Stopped|Deactivated|Login failed|USER_LOGGED_OUT|Logged out)\b"),"authentication", match(raw_action,"(?i)\b(Accepted|Logged in|USER_LOGGED_IN)\b"),"authentication", match(raw_action,"(?i)\b(dnf-makecache.service: Succeeded)\b"),"change", match(raw_action,"(?i)\b(TASK_FINISHED|modified|acl_modified|Succeeded)\b"),"change", match(raw_action,"(?i)\b(success=yes|Link is Up|repaired|allowed|receive)\b"),"network")

EVAL-action = case(match(raw_action,"(?i)(Failed|Stopped|Deactivated|Login failed|USER_LOGGED_OUT|Logged out)"),"failure", match(raw_action,"(?i)(Accepted|Logged in|USER_LOGGED_IN)"),"success", match(raw_action,"(?i)(dnf-makecache.service: Succeeded)"),"modified", match(raw_action,"(?i)(TASK_FINISHED|modified|acl_modified|Succeeded)"),"modified", match(raw_action,"(?i)(success=yes|Link is Up|repaired|allowed|receive)"),"allowed")&lt;/LI-CODE&gt;&lt;DIV class=""&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Nov 2025 10:21:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/props-conf-not-showing-the-output-using-EVAL/m-p/755707#M23497</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-11-20T10:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: props.conf not showing the output using EVAL</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/props-conf-not-showing-the-output-using-EVAL/m-p/755731#M23498</link>
      <description>&lt;P class=""&gt;&lt;A href="https://help.splunk.com/en/splunk-enterprise/manage-knowledge-objects/knowledge-management-manual/9.4/get-started-with-knowledge-objects/the-sequence-of-search-time-operations#ariaid-title9" target="_blank" rel="noopener"&gt;https://help.splunk.com/en/splunk-enterprise/manage-knowledge-objects/knowledge-management-manual/9.4/get-started-with-knowledge-objects/the-sequence-of-search-time-operations#ariaid-title9&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;H3 id="restrictions-5"&gt;Restrictions&lt;/H3&gt;&lt;P class=""&gt;All EVAL-&amp;lt;fieldname&amp;gt; configurations within a single props.conf stanza are processed in parallel instead of sequentially. This means you can't chain together calculated field expressions where the evaluation of one calculated field is used in the expression for the next calculated field.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 19:10:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/props-conf-not-showing-the-output-using-EVAL/m-p/755731#M23498</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-11-20T19:10:07Z</dc:date>
    </item>
  </channel>
</rss>

