Splunk Search

How to edit my search to calculate a field?

ttchorz
Path Finder

Hi,

I am trying to calculate a field from a data that I receive from a vulnerability system.

severity field returns "unknown" which screws my dashboards.

I want to eval a field `'category' and if it equals INFO, set field 'severity' to Informational

search ... |  eval severity=if(category,"INFO","Informational")
0 Karma
1 Solution

gokadroid
Motivator

Try to assign it back to itself then if u want it to stay unmodified:

| eval severity=if(category=="INFO","informational", severity)

View solution in original post

0 Karma

adamsaul
Communicator

Try this out:
search ... | eval severity=case(match(category,"INFO"), "Informational", severity)

0 Karma

gokadroid
Motivator

Try to assign it back to itself then if u want it to stay unmodified:

| eval severity=if(category=="INFO","informational", severity)
0 Karma

ttchorz
Path Finder

Thanks all. This is working exactly how I wanted it to work.

0 Karma

ttchorz
Path Finder

Ok I got here....

| eval severity=if(category=="INFO","informational", " ")

What should my last argument be if I want the severity to stay unmodified if it does not equal INFO ?

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