Getting Data In

data ingest size from a server

jiaqya
Builder

how to identify data ingest size from a server per day...

looking to find sizes of data ingested from each server for planning ..

Tags (1)
0 Karma
1 Solution

adonio
Ultra Champion

this is one way:

earliest=-1d@d latest=@d  index=_internal source=*license_usage.log* type=Usage
| stats sum(b) AS Bytes by h
| eval GB = Bytes/1024/1024/1024
| table h GB
| sort -GB

explore the data h stands for host
there are many many ways to get this data and quick search in this portal will prompt you to dozens of results
hope it helps

View solution in original post

0 Karma

adonio
Ultra Champion

this is one way:

earliest=-1d@d latest=@d  index=_internal source=*license_usage.log* type=Usage
| stats sum(b) AS Bytes by h
| eval GB = Bytes/1024/1024/1024
| table h GB
| sort -GB

explore the data h stands for host
there are many many ways to get this data and quick search in this portal will prompt you to dozens of results
hope it helps

0 Karma

jiaqya
Builder

Adonio, thanks for your reply, unfortunately the query you gave returned 0 records.
i tried running this on the forwarder where i am inserting data via file inputs.

also i could not find any other document which can give me a ingest rate ..

0 Karma

jiaqya
Builder

thanks, running it on search head gave me the result.

0 Karma

adonio
Ultra Champion

are you an admin? or do you have admin role?
you are supposed to run queries on the Search Head

0 Karma

SamHTexas
Builder

Sir, how would I calculate he total amount of ingestion into an average server if only logs & small / Med DBs are ingested into the Splunk server? Thanks a million in advance.

Tags (1)
0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...