<?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: Data Ingest per Source for Palo Alto Firewalls in Cortex XDR in Cortex XDR Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/data-ingest-per-source-for-palo-alto-firewalls-in-cortex-xdr/m-p/592116#M6924</link>
    <description>&lt;P&gt;stumbled upon this query here.. thanks helps me alot!&lt;/P&gt;
&lt;P&gt;if i were to want to do the graph based on an hourly ingestion rate over a say 24 hour period.. how can i achieve this?&lt;/P&gt;
&lt;P&gt;still learning xql so not my strongpoint atm.&lt;/P&gt;
&lt;P&gt;running XSIAM as a POC atm&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jul 2024 07:41:29 GMT</pubDate>
    <dc:creator>PA_nts</dc:creator>
    <dc:date>2024-07-16T07:41:29Z</dc:date>
    <item>
      <title>Data Ingest per Source for Palo Alto Firewalls in Cortex XDR</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/data-ingest-per-source-for-palo-alto-firewalls-in-cortex-xdr/m-p/591277#M6886</link>
      <description>&lt;P&gt;I do not think this is in the correct Board, but I could not find a Cortex XDR channel.. First time posting so I am sure I missed it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have Cortex XDR and we are trying to see what firewall is sending the largest amount of data by GB Ingest. We are using the collection integrations, NGFW, Panorama Managed. We have 8 firewall pairs that are sending logs to Cortex XDR. We need to see how much in GB each firewall is sending into Cortex. I am sure I am missing something. I can see how many logs, but I would like to see how much in ingest data each is using per day.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-PRODUCT title="Cortex XDR" id="Cortex_XDR"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;LI-PRODUCT title="NGFW" id="NGFW"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 16:42:18 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/data-ingest-per-source-for-palo-alto-firewalls-in-cortex-xdr/m-p/591277#M6886</guid>
      <dc:creator>BH6678</dc:creator>
      <dc:date>2024-07-05T16:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Data Ingest per Source for Palo Alto Firewalls in Cortex XDR</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/data-ingest-per-source-for-palo-alto-firewalls-in-cortex-xdr/m-p/591664#M6897</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/52507"&gt;@BH6678&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer the query to find the data ingestion from the metric sources. However, the catch here is XDR doesn't provide granular visibility over each firewall ingestion as the required data is not available in data source. As of now this can be achieved by XSIAM.&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_GB = divide(round(multiply(divide(ingestion , pow(2,30)),10000)),10000) //rounding out to 4 decimal places and convert to MB&lt;BR /&gt;| fields _product ,Ingestion_by_GB&lt;BR /&gt;| limit 20&lt;BR /&gt;| sort desc Ingestion_by_GB &lt;BR /&gt;| view graph type = column subtype = grouped layout = horizontal show_callouts = `true` xaxis = _product yaxis = Ingestion_by_GB seriescolor("Ingestion_by_GB","#d2510e") headcolor = "#171616" gridcolor = "#38def6" font = "Arial Black"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can either reach out to Accounts Team or have FR open to include the device id in&amp;nbsp;metrics_source dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you feel this has answered your query, please let us know by clicking on Like and "mark this as a Solution".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 09:34:11 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/data-ingest-per-source-for-palo-alto-firewalls-in-cortex-xdr/m-p/591664#M6897</guid>
      <dc:creator>aspatil</dc:creator>
      <dc:date>2024-07-11T09:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Data Ingest per Source for Palo Alto Firewalls in Cortex XDR</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/data-ingest-per-source-for-palo-alto-firewalls-in-cortex-xdr/m-p/592116#M6924</link>
      <description>&lt;P&gt;stumbled upon this query here.. thanks helps me alot!&lt;/P&gt;
&lt;P&gt;if i were to want to do the graph based on an hourly ingestion rate over a say 24 hour period.. how can i achieve this?&lt;/P&gt;
&lt;P&gt;still learning xql so not my strongpoint atm.&lt;/P&gt;
&lt;P&gt;running XSIAM as a POC atm&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2024 07:41:29 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/data-ingest-per-source-for-palo-alto-firewalls-in-cortex-xdr/m-p/592116#M6924</guid>
      <dc:creator>PA_nts</dc:creator>
      <dc:date>2024-07-16T07:41:29Z</dc:date>
    </item>
  </channel>
</rss>

