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!

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 ...