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!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...