All Apps and Add-ons

Error in 'eval' command: The expression is malformed. Expected ).

seriouscat
Explorer

Hi All,

Fairly new to Splunk and am attempting to write a query that checks for invalid login attempts and extracts ip and username. The interesting thing however is that sometimes host names appear in the 'ip' field instead of actual IP addresses. When this happens I attempt to do a DNS query to resolve to that host's IP address. It appears I'm missing a ')' in my eval statement, but I can't tell for the life of me where. It's not quite finished yet just trying to get the eval statement fixed.

The error I'm getting is this "Error in 'eval' command: The expression is malformed. Expected ). "

Any help is appreciated !

My Query:

sourcetype="xxxxx" "xxxxx" 
| eval lookupip = if (ip == rex "(?<ip>\d+\.\d+\.\d+\.\d+)", ip, lookup dnslookup clientip AS ip)
| table lookupip
0 Karma
1 Solution

somesoni2
Revered Legend

Try like this (check the field that you want to extract from your dnslookup)

sourcetype="foo" "bar"
| lookup dnslookup clientip as ip OUTPUT ip as temp 
| eval ip=if(match(ip,"\d+\.\d+\.\d+\.\d+"),ip,temp) | table ip ...other fields..

View solution in original post

somesoni2
Revered Legend

Try like this (check the field that you want to extract from your dnslookup)

sourcetype="foo" "bar"
| lookup dnslookup clientip as ip OUTPUT ip as temp 
| eval ip=if(match(ip,"\d+\.\d+\.\d+\.\d+"),ip,temp) | table ip ...other fields..

seriouscat
Explorer

This is great thank you! However, now I am receiving this error:

'Error in 'lookup' command: Could not find all of the specified destination fields in the lookup table. '

I've been scouring the interwebs, but haven't been able to come up with answer to why this happens so far. Will keep searching in the meantime.

0 Karma

somesoni2
Revered Legend

Do this and check the field name that you want to use if a hostname is specified instead of IP address. Once you find that replace "OUTPUT ip as temp" with "OUTPUT whateverfieldyoufound as temp"

| inputlookup dnslookup 
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...