- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
06-29-2025 11:35 PM
Hi,
As this is covered by the XDR license and not visible in the data ingestion widgets..
Does anyone have a query to look at data ingestion for XDR agents only?
thanks in adv
07-09-2025 08:24 AM
Hi,
Thanks for reaching out LC.
You can use the below query example below and filter by the product you want to view:
dataset = metrics_source
| fields _vendor , _product , total_size_bytes , total_size_rate
| comp sum(total_size_bytes ) as ingestion by _product
| alter Ingestion_by_MB = divide(round(multiply(divide(ingestion , pow(2,20)),10000)),10000)
| fields _product ,Ingestion_by_MB
| sort desc Ingestion_by_MB
Regards.
If you feel this answered your inquiry please mark As Solution.
07-10-2025 09:53 AM
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
dataset = xdr_data
| filter _product = "XDR agent"
| comp count() as logs by agent_id , agent_hostname
| sort desc logs
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!