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!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...