Splunk Search

Splunk Ingestion Metrics

scout29
Path Finder

I am trying to get the ingestion per day in Terabytes for each index. I am using the below search which works, however the ingestion numbers are not formatted great. For example, using the below search,  for an index i get a usage value of 4587.16 which would be 4.59 terabytes per day. I am looking for this number to be rounded in the search results to show like 4.59

index=_internal sourcetype=splunkd source=*license_usage.log type=Usage idx=*
| stats sum(b) as usage by idx | rename idx as index | eval usage=round(usage/1024/1024/1024,2)
Labels (7)
Tags (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

That query works for me.  What results do you get and how do they not match what you want?

---
If this reply helps you, Karma would be appreciated.
0 Karma

scout29
Path Finder

Yes, the query works - however i want the values to be formatted differently within the search results. I would like the values to show in terabytes.  For example, using the query i get a value of 4587.43 (in GB) for an index ingestion value. I would like this to round and show in Terabytes as 4.59

0 Karma

richgalloway
SplunkTrust
SplunkTrust

The eval command is converting bytes into gigabytes.  Add another `/1024` to convert to terabytes.

index=_internal sourcetype=splunkd source=*license_usage.log type=Usage idx=*
| stats sum(b) as usage by idx 
| rename idx as index 
| eval usage=round(usage/1024/1024/1024/1024,2)

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Upcoming Webinar: Unmasking Insider Threats with Slunk Enterprise Security’s UEBA

Join us on Wed, Dec 10. at 10AM PST / 1PM EST for a live webinar and demo with Splunk experts! Discover how ...

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...