<?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 XQL Query for calculating XDR log ingestion in Cortex XSIAM Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1232857#M218</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;As this is covered by the XDR license and not visible in the data ingestion widgets..&lt;/P&gt;
&lt;P&gt;Does anyone have a query to look at data ingestion for XDR agents only?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks in adv&lt;/P&gt;</description>
    <pubDate>Mon, 30 Jun 2025 06:35:38 GMT</pubDate>
    <dc:creator>PA_nts</dc:creator>
    <dc:date>2025-06-30T06:35:38Z</dc:date>
    <item>
      <title>XQL Query for calculating XDR log ingestion</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1232857#M218</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;As this is covered by the XDR license and not visible in the data ingestion widgets..&lt;/P&gt;
&lt;P&gt;Does anyone have a query to look at data ingestion for XDR agents only?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks in adv&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 06:35:38 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1232857#M218</guid>
      <dc:creator>PA_nts</dc:creator>
      <dc:date>2025-06-30T06:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Query for calculating XDR log ingestion</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1233639#M227</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out LC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the below query example below and filter by the product you want to view:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dataset = metrics_source &lt;BR /&gt;| fields _vendor , _product , total_size_bytes , total_size_rate&lt;BR /&gt;| comp sum(total_size_bytes ) as ingestion by _product &lt;BR /&gt;| alter Ingestion_by_MB = divide(round(multiply(divide(ingestion , pow(2,20)),10000)),10000)&lt;BR /&gt;| fields _product ,Ingestion_by_MB&lt;BR /&gt;| sort desc Ingestion_by_MB&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you feel this answered your inquiry please mark As Solution.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 15:24:49 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1233639#M227</guid>
      <dc:creator>mavega</dc:creator>
      <dc:date>2025-07-09T15:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Query for calculating XDR log ingestion</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1233689#M228</link>
      <description>&lt;P&gt;Thanks Mavega&lt;/P&gt;
&lt;P&gt;..that does work.. but, it shows the metrics for xdrc - the xdr collector only. not xdr agents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any ideas?&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 07:43:39 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1233689#M228</guid>
      <dc:creator>PA_nts</dc:creator>
      <dc:date>2025-07-10T07:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Query for calculating XDR log ingestion</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1233746#M229</link>
      <description>&lt;P&gt;I'm not aware of any log size's metrics for endpoints, but being familiar with the log counts per xdr agent should bring you closer to your goal&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dataset = xdr_data 
| filter   _product = "XDR agent"
| comp count() as logs by agent_id , agent_hostname 
| sort desc logs&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 16:53:45 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1233746#M229</guid>
      <dc:creator>A.Elzedy</dc:creator>
      <dc:date>2025-07-10T16:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Query for calculating XDR log ingestion</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1251846#M387</link>
      <description>&lt;P&gt;dataset = metrics_source&lt;/P&gt;
&lt;P&gt;|comp sum (total_size_bytes) as gunluk_total_bytes by _product //&lt;/P&gt;
&lt;P&gt;|alter gunluk_ortalama_log_boyut_kb=divide (gunluk_total_bytes ,1024) //KB &lt;BR /&gt;|alter gunluk_ortalama_log_boyut_mb=divide (gunluk_ortalama_log_boyut_kb ,1024) //MB &lt;BR /&gt;|alter gunluk_ortalama_log_boyut_gb=divide (gunluk_ortalama_log_boyut_mb ,1024) // GB&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;you can use this query&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 08:48:21 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1251846#M387</guid>
      <dc:creator>kadirerol</dc:creator>
      <dc:date>2026-04-08T08:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Query for calculating XDR log ingestion</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1251847#M388</link>
      <description>&lt;P&gt;By the way&amp;nbsp;How can we write an XQL query to calculate the total log volume for the last 24 hours in GB and check whether it is 20% higher than the previous day?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 08:49:53 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsiam-discussions/xql-query-for-calculating-xdr-log-ingestion/m-p/1251847#M388</guid>
      <dc:creator>kadirerol</dc:creator>
      <dc:date>2026-04-08T08:49:53Z</dc:date>
    </item>
  </channel>
</rss>

