Skip to main content

Hello,

I would like to search a query to know the volume of data per day collected in my Logpoint.

Thanks a lot

Hello Matmut,

You can use the following query to see how much raw log data is ingested into Logpoint:

| process count_char(msg) as total_chars | timechart sum(total_chars/1024/1024) as megabytes, count() by repo_name every 24 hours    

This search can be resource intensive and you might need to limit your search to a single repo at a time if you include repos containing large datasets.

Best regards
Rasmus


Thank you so much for your answer Rasmus


Reply