Getting Data In

How to calculate splunk data size injected per day or time based on forwarders

vradhakrishnan
Engager

I have multiple forwarders sending data into splunk index and I want to find size of each host sending data into splunk by forwarder.
Is there any way to calculate this.

Tags (1)
0 Karma
1 Solution

woodcock
Esteemed Legend

It is unclear but maybe you can get what you need from the Data Summary:

http://docs.splunk.com/Documentation/Splunk/6.2.4/SearchTutorial/Aboutthesearchapp#Data_summary

Other than that you can run a search like this:

index=* OR index=_* | eval bytes=len(_raw) | stats sum(bytes) values(sourcetype) by host

View solution in original post

0 Karma

woodcock
Esteemed Legend

It is unclear but maybe you can get what you need from the Data Summary:

http://docs.splunk.com/Documentation/Splunk/6.2.4/SearchTutorial/Aboutthesearchapp#Data_summary

Other than that you can run a search like this:

index=* OR index=_* | eval bytes=len(_raw) | stats sum(bytes) values(sourcetype) by host
0 Karma

CryoHydra
Path Finder

| stats sum(len) ? or sum(bytes)

woodcock
Esteemed Legend

Another typo. Fixed.

0 Karma

ConnorG
Path Finder

What's the purpose of "index=* AND index=_*" ?

woodcock
Esteemed Legend

My bad, it should be OR, not AND. I fixed it.

0 Karma

vradhakrishnan
Engager

woodcock you query is what I was look for thanks for your help.

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...