Getting Data In

log file size Vs license size per day by specific index

ips_mandar
Builder

Hi,
I have one forwarederand one (IDX+SH). I am ingesting few hundreads of .txt files from HWF to one specific index. Now I want to know what log file size actually it has indexed per day vs what license volume it consumed per day for particular index.
Can any one help me with spl query? and is it possible to get actual .txt file size from splunk?
Thanks,

0 Karma

ips_mandar
Builder

hey splunkers, is there any way by which I can calculate splunk indexed actual log file size per day?
thanks,

0 Karma

codebuilder
Influencer

Yes, run the following search to get the info you are looking for:

|tstats count where index=* by source

Or replace "index=*" with the name of the index you are interested in.

----
An upvote would be appreciated and Accept Solution if it helps!
0 Karma

ips_mandar
Builder

@codebuilder It will provide count of lines by source but I want how much log size data(in MB/GB) is got indexed per day by specific index vs total license size (MB/GB) utilization per day.

0 Karma

codebuilder
Influencer

Try this:

index=_internal sourcetype=splunkd component=LicenseUsage idx=replace_with_your_index_name
| timechart span=1d sum(b) as Usage | eval Usage=round(Usage/1024/1024/1024,2)

Also, both the DMC and Master provide nice dashboards for monitoring both.

----
An upvote would be appreciated and Accept Solution if it helps!
0 Karma

ips_mandar
Builder

@codebuilder, Thanks but above query will provide license usage and I also want actual log file size which splunk has indexed per day. is it possible?

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 ...