Splunk Search

Set Field=Value when Field not present in some logs

bcarr12
Path Finder

Hi all,

I am running a search that in some cases has:
Field=Values

In other cases, Field is completely missing from logs (this is expected).

What would be the best way to set Field equal to the Value when one is present, but if the Field does not exist in a given log line, Field should be set to the word "none"?

I've tried the coalesce command, but it doesn't seem to be working - maybe it is just being used incorrectly?
eval NewField=coalesce(Field,"none")

In the above example, NewField is always equal to "none" - even when Field includes a value.

Tags (1)
0 Karma
1 Solution

alemarzu
Motivator

Heya, or try this.

... | fillnull value=none field1,field2,field3

View solution in original post

0 Karma

bcarr12
Path Finder

Thank you both for your suggestions! alemarzu, fillnull worked great for this!

0 Karma

alemarzu
Motivator

Heya, or try this.

... | fillnull value=none field1,field2,field3
0 Karma

cmerriman
Super Champion

try this:

|eval Field=if(isnull(Field),"none",Field)
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...