Splunk Search

Returning the bytes of each log

EricLloyd79
Builder

I am trying to have a column returned on a table that shows the bytes of each log entry (and maybe have a cumulative column too but thats irrelevant to this question)
I cannot figure out how to do this. I have read online there is a "bytes_in" field that can be extracted by I am unsure how to do that. I am using custom log files created by our devs here at my job. I see a "bytes" field when I do this query:
index=_internal bytes=*
But I am hoping there is a bytes field that can be extracted from every raw log file created with any custom query (like the mentioned "bytes_in" field above)

Can anyone give me any advice? Thanks!

Tags (2)
0 Karma
1 Solution

aweitzman
Motivator

You want the length of the raw event:

...your search... | eval bytes=len(_raw)

View solution in original post

aweitzman
Motivator

You want the length of the raw event:

...your search... | eval bytes=len(_raw)

yannK
Splunk Employee
Splunk Employee

It is a very close approximation to count the number of characters.
You may see differences between the original file and the events indexed of 1 byte per line on multiline events, as splunk does not index the linebreak of the events.

0 Karma

EricLloyd79
Builder

Thank you yannK.

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...