We have the dashboards to display how much storage is consumed (look at the Main dashboard) and you can adjust the time period. What we don't have is how much storage your license is for in the dashboards.
Is there anything specific you are looking for? The ingestion_metrics table has all the info you need to see the consumption at log type level and time etc.
You can also take a look at this: https://medium.com/@thatsiemguy/monitoring-your-siem-ingestion-licensing-5c9a8c6bfd74
In the new Native dashboards you can write a query on the ingestion and display the results, for example:
ingestion.log_type != ""
$log_type = ingestion.log_type
match:
$log_type
outcome:
$log_count = sum(ingestion.log_count)
$event_count = sum(ingestion.event_count)
$throughput = math.ceil(sum(ingestion.log_volume)/(1024*1024))
$drop_count = sum(ingestion.drop_count)
order:
$log_count desc
@rajukg11 Thanks for the prompt reply. I'm looking to see how much of my license I'm using (ie 90GB of my 100GB license). As you pointed out -- the native "Data Ingestion and Health" dashboard does not show me how much my license is for.
Our SecOps instance is managed by a third-party, I'm guessing I would have to get them to enable the new Native dashboards feature.