Splunk Search

How to search and extract a string of text as a new field?

shrirangphadke
Path Finder

Hi,

I want to search for a particular text, for example:

"Error.*CP:Link Change: Received Link UP for already active instance"'

and extract it as a field. That means I want to add this field as:

inst_Error="Error.*CP:Link Change: Received Link UP for already active instance"' 

in Splunk.

So now using inst_error, I want to form a search string as:

if severity=critical AND inst_error exists

Please help.

Tags (2)
0 Karma
1 Solution

MuS
Legend

Hi shrirangphadke,

okay, I'll try it ....

your base search here to get the needed events | rex field=_raw "(?<inst_Error>Error\.\*CP.+)\"" | eval inst_Error=if(isnull(inst_Error), "null", inst_Error) | search severity=critical AND inst_error!="null"

This is un-tested since you did not provide any of your real world events.
But this will get you started....

cheers, MuS

View solution in original post

MuS
Legend

Hi shrirangphadke,

okay, I'll try it ....

your base search here to get the needed events | rex field=_raw "(?<inst_Error>Error\.\*CP.+)\"" | eval inst_Error=if(isnull(inst_Error), "null", inst_Error) | search severity=critical AND inst_error!="null"

This is un-tested since you did not provide any of your real world events.
But this will get you started....

cheers, MuS

shrirangphadke
Path Finder

Thank you very much for answer, indeed it solved my problem, Thanks !

0 Karma

shrirangphadke
Path Finder

Thanks ! @ppablo_splunk

0 Karma

ppablo
Retired

You're welcome @shrirangphadke 🙂

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...