Splunk Cloud Platform

How do I query ingestion in GB by each index instead of just the top 10?

ney
New Member

Hi, how do I query ingestion in GB by each index instead of just the top 10?

Labels (1)
0 Karma

PickleRick
SplunkTrust
SplunkTrust

I assume you're referring to the report from the licensing report. You can click on the small magnifying glass below the chart to open the search in a new search window. There you can add "limit=0 useother=f" to the timechart command and you're good to go 🙂

0 Karma

Roy_9
Motivator

@ney Hello,

Try the below search.

index=_internal idx=* component=LicenseUsage earliest=-30d@d latest=@d
| eval
GB=round('b'/pow(1024, 3), 3)
| stats
sum(GB) as total_daily_GB
by idx

 

Note: you can set the earliest and latest as per your desired time

Thanks

0 Karma
Get Updates on the Splunk Community!

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...

Auto-Injector for Everything Else: Making OpenTelemetry Truly Universal

You might have seen Splunk’s recent announcement about donating the OpenTelemetry Injector to the ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...