Splunk Search

Contains "is null" with if command

Shakira1
Explorer

I have all_ip filed that contains all my ips.

now I want to split it to public ip and private ip:

public_ip, private_ip, all_ip:

and when private_ip is null I want to put the value from all_ip in public_ip field. 

first I did: 

| eval private_ip=if(like(all_ip,"XXXX.%") OR like(all_ip,"XXX.%"),all_ip,null())

and now I need to do (all the rest fill it in public_ip field. 

this is possible? 

thanks!

Labels (2)
Tags (1)
0 Karma
1 Solution

Manasa_401
Communicator

Hello @Shakira1 

Try the below line.

| eval public_ip=if(isnull(private_ip),all_ip,"NO")

you can change the value in else as you prefer

 

If this helps, karma would be appreciated.

Thanks,

Manasa

View solution in original post

0 Karma

Shakira1
Explorer

thanks! 

0 Karma

Manasa_401
Communicator

Hello @Shakira1 

Try the below line.

| eval public_ip=if(isnull(private_ip),all_ip,"NO")

you can change the value in else as you prefer

 

If this helps, karma would be appreciated.

Thanks,

Manasa

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Developer Program!

Hey Splunk community!  We are excited to announce that Splunk is launching the Splunk Developer Program in ...

Splunkbase Year in Review 2024

Reflecting on 2024, it’s clear that innovation and collaboration have defined the journey for Splunk ...

Developer Spotlight with Brett Adams

In our third Spotlight feature, we're excited to shine a light on Brett—a Splunk consultant, innovative ...