Splunk Search

Eval variable1=variable2 is True or False?

starks951
Explorer

Folks... I am extracting two variables at search time and trying to report when the two variables are not the same. At this point the two variables are host (coming from the splunk LF running on the system) and os_hostname (coming from a script that calls hostname on a linux box). Basically I want to know when host!=os_hostname and report on that. We have some admins that are cloning servers and forgetting to re-install Splunk so all the cloned systems are reporting as if they were the original cloned system.

I assume there is a way to do this with the Eval command, but can't seem to find the right syntax. Can someone help me?

Tags (1)

carasso
Splunk Employee
Splunk Employee

If you really just want to know when host!=os_hostname, just use

       ... | where host!=os_hostname 
0 Karma

gkanapathy
Splunk Employee
Splunk Employee
... | eval state=if(host!=os_hostname,"bad","good")

gkanapathy
Splunk Employee
Splunk Employee

if(lower(host)!=lower(os_hostname),...)

0 Karma

starks951
Explorer

This works GREAT... any way to make it more fuzzy so it doesn't care about capital letters, IE host=computera and os_hostname=COMPUTERA ?

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...