Splunk Search

How to display the entire string when it has something like Foo=123|456 ?

servlette
Engager

I am logging something like: Foo=123|456
When I query Splunk to get me Foo, it only prints 123 and it ignores |456.

I don't have anything like Foo="123|456" and what I have is: Foo=123|456

Please let me know how I get the entire value of Foo.

I need to get the entire value of it and to parse it to get 456.

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

Give this try (lenght independent)

your base search | rex "Foo=(?<Foo>\w+\|\w+)" 

Once satisfied, you can save this extraction in props.conf on search head to improve performance.

View solution in original post

somesoni2
Revered Legend

Give this try (lenght independent)

your base search | rex "Foo=(?<Foo>\w+\|\w+)" 

Once satisfied, you can save this extraction in props.conf on search head to improve performance.

servlette
Engager

thank you 🙂

0 Karma

aljohnson_splun
Splunk Employee
Splunk Employee

Create a field extraction with the sparkly new field extractor. See a guide here.

You could also use rex to do a search time extraction:

| rex "Foo=(?<my_one_two_three>\d{3})\|(?<my_four_five_six>\d{3})"
0 Karma

servlette
Engager

Let me try... Thanks...

0 Karma

servlette
Engager

By the way, for illustration I used 123|456 and the length of 123 or 456 is not fixed. They can be of any length. The only thing I am interested is the values separated by "|".

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...