Skip to main content
Question

SecOps Data Ingestion Usage

  • December 12, 2025
  • 2 replies
  • 91 views

Avish_garg
Forum|alt.badge.img+1

Hello,

We are looking for a way to get the total volume of logs, data being ingested in SecOps which has feeds setup with multiple tools like AWS, GitLab, Azure etc.

 

Is there a way to get the ingestion matrix and also the to billing associated with the ingestion.

 

Thanks 

2 replies

Eoved
Forum|alt.badge.img+8
  • Bronze 2
  • December 15, 2025

Hi,
One way I know is to create dashboards with the ingested volume. You can start with the following query as a baseline:

ingestion.component = "Ingestion API"
ingestion.log_type != ""
ingestion.log_type != "FORWARDER_HEARTBEAT"
$log_type = ingestion.log_type
match:
$log_type
outcome:
$thoughput = math.round(sum(ingestion.log_volume) / (1000 * 1000 * 1000), 1)
order:
$thoughput desc

 


Forum|alt.badge.img+2
  • Bronze 2
  • December 22, 2025

Hi Avish,

It can be presented in a table format for the following dashboards, with event count added in addition to volume.

 

ingestion.component = "Ingestion API"
ingestion.log_type = $logType
match:
$logType
outcome:
$total_gb = math.round(sum(ingestion.log_volume) / math.pow(1000, 3), 4)
$logCount = sum(ingestion.log_count)
order:
$total_gb desc