Splunk Search

what is the use of substr in my macro?

pavanae
Builder

I have defined a field extraction in a macro as below

my_search | eval field_A="EventCode: " + EventCode + "; EventType: " + EventType + "; Message: " + substr(Message,1,100)
iseval = 0

What is meant by that? could anyone explain please.

0 Karma
1 Solution

micahkemp
Champion
substr(X,Y,Z)   Returns a substring from X based on the starting position Y and the length Z.

In the search above substr returns the first 100 characters of the Message field.

View solution in original post

cmerriman
Super Champion

The substr command grabs a section of text beginning at the first indicated index number Until the number of characters is reached (second number indicated). In your example, it is grabbing the first 100 characters of the field Message.
http://docs.splunk.com/Documentation/SplunkCloud/latest/SearchReference/TextFunctions

micahkemp
Champion
substr(X,Y,Z)   Returns a substring from X based on the starting position Y and the length Z.

In the search above substr returns the first 100 characters of the Message field.

Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...