Splunk Search

Help with passing search result to eval failing

dhivyamu
Explorer

I'm trying you create a variable out of a search result using eval.

This works fine, I get a single row, and a column with error lines:

search index=sap_log_index message_type="E" | eventstats list(message_text) as errorLines | nomv errorLines | dedup errorLines | table errorLines

But the below search fails with malformed exception:

index="sap_idoc_index" | eval errorLines=[search index=sap_log_index message_type="E" | eventstats list(message_text) as errorLines | nomv errorLines | dedup errorLines | return $errorLines] | eval error_msg = if(Status=="41", errorLines, ""), status =  if(Status=="41", "Failed", "Success") | table idoc_number, status, error_msg
0 Karma

harishalipaka
Motivator

@dhivyamu

index="_internal" |head 1| eval errorLines= 
     [ search index=_internal  
     | stats count(source) as errorLines 
     |return $errorLines] ,Status=41| eval error_msg = if(Status=="41", errorLines, ""), status = if(Status=="41", "Failed", "Success") 
 | table errorLines, status, error_msg,Status
Thanks
Harish
0 Karma

arjunpkishore5
Motivator

This is what you need

index="sap_idoc_index" 
| eval errorLines= 
    [ search index=sap_log_index message_type="E" 
    | stats values(message_text) as errorLines 
    |return $errorLines] 
| eval error_msg = if(Status=="41", errorLines, ""), status = if(Status=="41", "Failed", "Success") 
| table idoc_number, status, error_msg
0 Karma

dhivyamu
Explorer

Thank you, this is so neat. But I still get the same error. The search works fine outside but doesn't fits in eval though it returns a single value 😞

0 Karma
Get Updates on the Splunk Community!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Building Momentum: Splunk Developer Program at .conf25

At Splunk, developers are at the heart of innovation. That’s why this year at .conf25, we officially launched ...