Splunk Search

Fields Creation Problem ??

rakesh_498115
Motivator

Hi

I have created a Field Called "DESTINATION" in this field i have the values like this..

Banglore
Bombay
Karantaka
Kerala
....
...
etc.

Now i wanted this list of fields to be broken down in to two sets

1.One Set that contains all the names that start with "K" and 2.other set that contains all the names that start with "B" .

i have tried using like this..

myseach | rex field=DESTINATION "^K(?)" | rex field=DESTINATION "^B(?)" | table B_Cities,K_Cities

but didnt work ?

Please help..

Tags (2)
0 Karma

ayme
Splunk Employee
Splunk Employee

Various ways to do it. I would probably use like() function from eval. You could put it in within a stats command:

myseach | stats values(eval(if(like(DESTINATION,"K%"), DESTINATION,NULL))) as begins_with_K, values(eval(if(like(DESTINATION,"B%"), DESTINATION,NULL))) as begins_with_B
0 Karma

Ayn
Legend

You have empty matching groups. You probably want something like .* in them in order to actually match anything.

rakesh_498115
Motivator

can we Create fields by Searching the strings.ie i have a fields which has certain values like "rammohan,tejaram,sriram,rakesh,...etc"..

Now can i create a Field Such that it extracts only the names from the above field who has the value "ram"

i.e Field2 should contain rammohan,tejaram,sriram only..

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