Splunk Search

case match command

parkertctr
Path Finder

I am trying to use the case match command with more than one option. I keep getting an error message regarding the parenthesis.. nothing is working.. Do not understand whats missing from the syntax.   Here is the search -->

| eval state_ack_error=case(match(_raw, "ACK\-CODE\=AA"), 1, match(_raw matches "STATUS\=SENT"), 1, 1=1, 0)

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

Labels (1)
Tags (2)
0 Karma

somesoni2
Revered Legend

Your second match command is not written in correct syntax. Try this:

|  eval state_ack_error=case(match(_raw,"ACK\-CODE\=AA"), 1, match(_raw, "STATUS\=SENT"), 1, 1=1, 0)

parkertctr
Path Finder

Thank you. 

0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...