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!

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...

Everything Community at .conf24!

You may have seen mention of the .conf Community Zone 'round these parts and found yourself wondering what ...

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...