Splunk Search

How to extract 3 characters after a given string in Splunk?

avneet26
Engager

I want to extract the two characters 78 from the barvalue  and have it in a separate column in my table:-

 deltavalue = 890(11%) sigmavalue=334(56%) barvalue=445(78%)

 

 

Labels (1)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

Your title says 3 characters, yet the opening sentence says 2 characters.  Which is it?  Also, are you trying to extract all 2-character strings before the percent sign (%) or only the last one?  Specifics are very important when you ask data questions.

Assuming that you only want the last percentage, you can do

| rex field=barvalue "\(?<barpercent>\d+)%\)"

View solution in original post

0 Karma

yuanliu
SplunkTrust
SplunkTrust

Your title says 3 characters, yet the opening sentence says 2 characters.  Which is it?  Also, are you trying to extract all 2-character strings before the percent sign (%) or only the last one?  Specifics are very important when you ask data questions.

Assuming that you only want the last percentage, you can do

| rex field=barvalue "\(?<barpercent>\d+)%\)"
0 Karma

avneet26
Engager

Ah my bad. sorry not three characters. only two numbers i want which is 78 

0 Karma

yuanliu
SplunkTrust
SplunkTrust

In that case, the code provided above should suffice. (You should have a field named barvalue.  Correct?)

0 Karma

avneet26
Engager

barvalue is the search string in my _raw field. 

 

 

0 Karma

yuanliu
SplunkTrust
SplunkTrust

@avneet26 wrote:

barvalue is the search string in my _raw field. 


Are you the admin? If not, you should ask them to make sure obvious key-value pairs are extracted; in fact, unless there is any special settings, Splunk extracts "a=b" in _raw as value "b" assigned to field "a". by default.  With that, my first code should give you a new field barpercent.

But if your admin is uncooperative, you can do something like

| rex "barvalue=\d+\((?<barpercent>\d+)%\)"

Hope this helps. 

0 Karma
Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...