Splunk Dev

Command to get the log size in bytes if there is not field called bytes

suhanrs
New Member

Hi all.
What search command do I have to use to get the file size in bytes if there is no field called bytes?
Can anyone help me with this?

Thank you very much

Tags (1)
0 Karma

kmorris_splunk
Splunk Employee
Splunk Employee

If you are monitoring a file, something like this might work:

<YOUR BASE SEARCH>
    | eval bytes=length(_raw) 
    | stats sum(bytes) by source

Since an ASCII character is 1 byte, and _raw represents an event, you can calculate per event, then sum by source, which should be representative of the log file the data came from. This is dependent upon the assumption that the entire file has been ingested.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

What sourcetype are you talking about?
Do you have any size field? If so, use eval to convert the value in that field to bytes.

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

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...