Splunk Search

Can I fill null results of a field with results from another field?

anthony_copus
Explorer

Hi,

I'm currently looking at partially complete logs, where some contain an article_id, but some don't. Is it possible to take a value from a different field (video_id) to populate that field when is it null? Currently I'm trying to use this query:

index="video" | fillnull value=video_id article_id

Obviously it's intended to put the value from the video_id into article_id where article_id is null, but it only puts the string "video_id" instead. Is there a way around this?

Anthony

1 Solution

somesoni2
Revered Legend

Use Eval-Coalesce instead

index="video" | eval article_id=coalesce(article_id,video_id) |...

This will take the first non-null value from article_id,video_id and populate to article_id.

View solution in original post

somesoni2
Revered Legend

Use Eval-Coalesce instead

index="video" | eval article_id=coalesce(article_id,video_id) |...

This will take the first non-null value from article_id,video_id and populate to article_id.

Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...