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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...