<?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: Get all chain of process related to causalty actor in Cortex XDR Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/get-all-chain-of-process-related-to-causalty-actor/m-p/1245616#M9012</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/241098"&gt;@susekar&lt;/a&gt;, but we want to see all chain related with&amp;nbsp;&lt;SPAN&gt;causality&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;Please see the image above.&lt;/P&gt;
&lt;P&gt;BR.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jan 2026 06:31:28 GMT</pubDate>
    <dc:creator>Bouzeghoub</dc:creator>
    <dc:date>2026-01-15T06:31:28Z</dc:date>
    <item>
      <title>Get all chain of process related to causalty actor</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/get-all-chain-of-process-related-to-causalty-actor/m-p/1245533#M9000</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please, can we get all chain of process related to casualty actor via XQL.&lt;/P&gt;
&lt;P&gt;For Example&lt;span class="lia-unicode-emoji" title=":backhand_index_pointing_down:"&gt;👇&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bouzeghoub_0-1768379661124.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/70349i5E140B5F65AEC001/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bouzeghoub_0-1768379661124.png" alt="Bouzeghoub_0-1768379661124.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 09:03:10 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/get-all-chain-of-process-related-to-causalty-actor/m-p/1245533#M9000</guid>
      <dc:creator>Bouzeghoub</dc:creator>
      <dc:date>2026-01-14T09:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Get all chain of process related to causalty actor</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/get-all-chain-of-process-related-to-causalty-actor/m-p/1245556#M9008</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/1161122151"&gt;@Bouzeghoub&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Greetings for the day.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To retrieve the full chain of process events related to a causality actor (Causality Group Owner or CGO) via XQL, you must use the definitive&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;causality_id&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;field within the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;xdr_data&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While alert APIs provide metadata like&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;actor_process_instance_id&lt;/CODE&gt;, they do not return the entire event graph. The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;causality_id&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is the primary identifier that links all raw events—including process executions, network connections, and file activities—that constitute the entire causality chain.&lt;/P&gt;
&lt;H3&gt;Recommended XQL Query&lt;/H3&gt;
&lt;P&gt;To see the process lineage, use the following query structure&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="codehilite"&gt;
&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN class="nt"&gt;dataset&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;xdr_data&lt;/SPAN&gt; 
&lt;SPAN class="o"&gt;|&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;filter&lt;/SPAN&gt; &lt;SPAN class="err"&gt;causality_id&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;"[INSERT_CAUSALITY_ID_HERE]"&lt;/SPAN&gt; 
&lt;SPAN class="o"&gt;|&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;filter&lt;/SPAN&gt; &lt;SPAN class="err"&gt;event_type&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;ENUM.PROCESS&lt;/SPAN&gt;
&lt;SPAN class="o"&gt;|&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;fields&lt;/SPAN&gt; &lt;SPAN class="err"&gt;_time&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;agent_hostname&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;actor_process_image_name&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;actor_process_command_line&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;action_process_image_name&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;action_process_image_command_line&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;causality_actor_process_image_name&lt;/SPAN&gt;
&lt;SPAN class="o"&gt;|&lt;/SPAN&gt; &lt;SPAN class="nt"&gt;sort&lt;/SPAN&gt; &lt;SPAN class="err"&gt;asc&lt;/SPAN&gt; &lt;SPAN class="err"&gt;_time&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;H3&gt;Key Fields for Analyzing the Chain&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;causality_id&lt;/CODE&gt;&lt;/STRONG&gt;: The unique ID linking every event in the specific causality group.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;actor_process_image_name&lt;/CODE&gt;&lt;/STRONG&gt;: The process that initiated the action (the "parent" or "initiator").&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;action_process_image_name&lt;/CODE&gt;&lt;/STRONG&gt;: The process that is being executed or targeted (the "child" or "target").&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;causality_actor_process_image_name&lt;/CODE&gt;&lt;/STRONG&gt;: The name of the root process (CGO) that started the entire chain.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;actor_process_instance_id&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;action_process_instance_id&lt;/CODE&gt;&lt;/STRONG&gt;: Unique IDs for specific process instances used to map exact nodes in the hierarchy.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;How to Find the Causality ID&lt;/H3&gt;
&lt;P&gt;If you are starting from a specific alert and want to move to XQL:&lt;BR /&gt;1. Locate the alert in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Alerts&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Incidents&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table.&lt;BR /&gt;2. The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;causality_id&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;can be found in the alert metadata (often listed as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;actor_causality_id&lt;/CODE&gt;).&lt;BR /&gt;3. Alternatively, you can right-click an event in the UI and select&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;View in XQL&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to see the raw data, where the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;causality_id&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;field will be populated for that event.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you feel this has answered your query, please let us know by clicking like and on&amp;nbsp;&lt;STRONG&gt;"mark this as a Solution".&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Happy New Year!!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;S. Subashkar Sekar&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 14:57:26 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/get-all-chain-of-process-related-to-causalty-actor/m-p/1245556#M9008</guid>
      <dc:creator>susekar</dc:creator>
      <dc:date>2026-01-14T14:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Get all chain of process related to causalty actor</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/get-all-chain-of-process-related-to-causalty-actor/m-p/1245616#M9012</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/241098"&gt;@susekar&lt;/a&gt;, but we want to see all chain related with&amp;nbsp;&lt;SPAN&gt;causality&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;Please see the image above.&lt;/P&gt;
&lt;P&gt;BR.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2026 06:31:28 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/get-all-chain-of-process-related-to-causalty-actor/m-p/1245616#M9012</guid>
      <dc:creator>Bouzeghoub</dc:creator>
      <dc:date>2026-01-15T06:31:28Z</dc:date>
    </item>
  </channel>
</rss>

