Splunk Search

Extract a Value from a Field

joshy50
New Member

I have a situation where I have a defined field that has a large amount of data but I am interested in only one part of that field Status : 2
Apologies as I am new to Splunk and I am lower than elementary level on this, but how would I extract this value from the field? If rex, how would I set this query?

= (garbage) Status : 2 (garbage)

Tags (1)
0 Karma
1 Solution

renjith_nair
Legend

@joshy50 ,

Try

"your search" 
|rex field=<your fieldname> "(?<status>Status : \d+)"
Happy Splunking!

View solution in original post

0 Karma

jpolvino
Builder

What are possible values for status? Are they just digits?

A helpful way to approach this is to identify what characters are NOT going to be in your status. For example, if status can contain anything and is always followed by a semicolon, then you can construct a class that captures everything except a semicolon.
| rex "Status\s:\s(?<status>[^;]+);"

Sometimes this is easier than trying to predict all possible legal values, and can help in cases where something unexpected is found (developer says "only digits" but you find a pound sign and become a hero).

0 Karma

aditi25
New Member

Hi,

I believe you want to extract the value of the status field (i.e status = 2 then you want to extract 2 as the value of the status field)

  1. If you want to go for regex expression. your expression would look like ''Status'\W+(?\d+)'. Now that you have the regex expression. you can go to your splunk UI and there in the fields sidebar, scroll down you will see a '+' sign with "extract new fields">> click on it.
  2. You will see the option as "I prefer writing my own regular expression" click on that. And put the above specified regex expression there.
  3. preview your extracted field
  4. click save

And then you would get an extracted field as "status" in the fields side bar.

To know more about the regex expressions you can practice it here ----> "https://regex101.com/"

0 Karma

renjith_nair
Legend

@joshy50 ,

Try

"your search" 
|rex field=<your fieldname> "(?<status>Status : \d+)"
Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

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 ...