Splunk Search

Comparing two values

lemikg
Communicator

Hi everybody,

I am trying to compare two values which would be the network interfaces (MAC, em1, em2) and depending on the result I want to output true or false. Up until now I only came up with a workaround.

But I am sure there is a prettier and a more efficient way for what I intend to do.

sourcetype=interfaces 
| multikv | table host Name MAC em1 inetAddr inet6Addr RXbytes TXbytes Speed Duplex
| eval bonded = if(em1 == MAC, "YES", "NO")
| table host Name MAC inetAddr inet6Addr RXbytes TXbytes Speed Duplex bonded

Hopefully somebody can point me at the right direction.

Thanks in advance any help would be much appreciated.

Best regards from Germany

Mike

0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

I'm not sure what you want to do differently, in order to compare two fields and produce "YES" or "NO" you won't get around comparing them and listing "YES" and "NO" in the branches.

You should however be able to ditch the first table command.

PS: If you need German support I'm sure we can work something out 🙂

View solution in original post

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

I'm not sure what you want to do differently, in order to compare two fields and produce "YES" or "NO" you won't get around comparing them and listing "YES" and "NO" in the branches.

You should however be able to ditch the first table command.

PS: If you need German support I'm sure we can work something out 🙂

0 Karma

lemikg
Communicator

Hi Martin,
thanks for your reply. That is exactly what I was aiming for.
Regards,
Mike
PS: Danke für den Hinweis bzgl. des Supports.

0 Karma
Get Updates on the Splunk Community!

Splunk Smartness with Brandon Sternfield | Episode 3

Hello and welcome to another episode of "Splunk Smartness," the interview series where we explore the power of ...

Monitoring Postgres with OpenTelemetry

Behind every business-critical application, you’ll find databases. These behind-the-scenes stores power ...

Mastering Synthetic Browser Testing: Pro Tips to Keep Your Web App Running Smoothly

To start, if you're new to synthetic monitoring, I recommend exploring this synthetic monitoring overview. In ...