Security

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

simingmplatform
New Member

Hi ALL,
need help for a using case here.

we are trying to setup alert based on below data
value1 ( the average of past 7days since yesterday)
value2 ( the average of yesterday's day)

if value2 is lower than 70% of value1 , trigger alerts.
below is what I use to setup this query

index=main topoName=EnrichmentTopology datacenter=NA desc=ENR131 earliest=-7d@d latest=-2d@d | stats avg(value) as 7day by desc | appendcols [ search index=main topoName=EnrichmentTopology datacenter=NA desc=ENR131 earliest=-2d@d latest=-1d@d | stats avg(value) as 1day by desc] | eval diff=(7day-1day)

but it always return me
Error in 'eval' command: The expression is malformed. Expected ).

any idea ? thx a lot

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Yes, eval is allowed with stats. The problem appears to be with the field names which begin with digits. Put them inside single quotes to force Splunk to treat them as field names. ... | eval diff=('7day'-'1day')

---
If this reply helps you, Karma would be appreciated.

View solution in original post

jpolvino
Builder

You may want to consider using multisearch:

| multisearch
[search index=main topoName=EnrichmentTopology datacenter=NA desc=ENR131 earliest=-7d@d latest=-2d@d | stats avg(value) as prevWeek]
[search index=main topoName=EnrichmentTopology datacenter=NA desc=ENR131 earliest=-2d@d latest=-1d@d | stats avg(value) as prevDay]
| eval alert=if(prevDay<(prevWeek*0.7),"Alert","No alert")

It doesn't look like you need a "by" clause in your stats, since there is only 1 value for desc.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Yes, eval is allowed with stats. The problem appears to be with the field names which begin with digits. Put them inside single quotes to force Splunk to treat them as field names. ... | eval diff=('7day'-'1day')

---
If this reply helps you, Karma would be appreciated.

simingmplatform
New Member

correct, its after we use day7 and day1 , issue is gone, thx

0 Karma

simingmplatform
New Member

everything works before | eval part , I guess we cannot use eval with stats ?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...