Monitoring Splunk

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

tnguyen125
New Member

index=abc123 | eval app=case(application==Application_1,"app_id_1",application==Application_2,"app_id_2") | stats count by app

This search returns: Error in 'eval' command: The expression is malformed. Expected ).
Can you let me know what's wrong with my search ? Thank you

Tags (1)
0 Karma
1 Solution

javiergn
Super Champion

Hi,

Your expression looks a bit weird in the question because you didn't use the code button and some symbols weren't escaped.
In any case, you could try with something like:

index=abc123 
| eval app=case (
    application=="Application_1", "app_id_1",
    application=="Application_2", "app_id_2",
    1==1, "other"
)
| stats count by app

Which includes a matching for the two types of application names you want to match, but also a third option which is always true in case none of the previous matches work.

Hope that helps
J

View solution in original post

tnguyen125
New Member

Thank you

0 Karma

javiergn
Super Champion

Hi,

Your expression looks a bit weird in the question because you didn't use the code button and some symbols weren't escaped.
In any case, you could try with something like:

index=abc123 
| eval app=case (
    application=="Application_1", "app_id_1",
    application=="Application_2", "app_id_2",
    1==1, "other"
)
| stats count by app

Which includes a matching for the two types of application names you want to match, but also a third option which is always true in case none of the previous matches work.

Hope that helps
J

javiergn
Super Champion

Hi @tnguyen125, did the answer above help? If so, please don't forget to mark it as answered. If not please provide some feedback.

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...