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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...