Splunk Search

How to calculate the size of the events per field?

pavanae
Builder

I have a query as follows

index=abc sourcetype=def | stats count by field_A | eval mb=round(count/1024/1024,2)

which gives me the result as follows

field_A count mb
jjjh 237606517 230.43
gffgf 2763240 2.67

Now, my question is that is the megabytes(mb) calcullation per each field is correct?

Also the count for each field value is it in bytes ?

I am a bit confused and all I'm trying to get the result as follows

Field_A - Count of Event - Average size of that event

0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

index=abc sourcetype=def 
| eval bytes=len(_raw)
| stats count avg(bytes) BY field_A
| eval mb=round(bytes/1024/1024,2)

View solution in original post

0 Karma

woodcock
Esteemed Legend

Like this:

index=abc sourcetype=def 
| eval bytes=len(_raw)
| stats count avg(bytes) BY field_A
| eval mb=round(bytes/1024/1024,2)
0 Karma

xpac
SplunkTrust
SplunkTrust

I don't really get what you're trying to do.
You're counting the events, and then divide the count by 1024 twice to get an MB value?
Are you trying to get the actual size of the events and the average event's size?

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...