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!

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...

Auto-Injector for Everything Else: Making OpenTelemetry Truly Universal

You might have seen Splunk’s recent announcement about donating the OpenTelemetry Injector to the ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...