All Apps and Add-ons

Sideview Utils: Why is my post process search not displaying results for a Discovered Field?

jward6004
Explorer

I'm creating a dashboard using SideView Editor in Splunk Enterprise 6.5.1...

I'm having trouble displaying results using the following basic search:

index=iis_order OR index=webapps host=order* `ignore_traffic`

(ignore_traffic is an internal macro)

The issue is using a postprocess under that basic searc : (the field AppDomain appears to be a Discovered Field)

AppDomain="*OrderProcess*" 
| rex field=AppDomain "^\/([^\/]+\/){4}(?[^-]+)" 
| rename AppDomain as Application 
| eval Source_Exception = SourceName.":".Exception_Message
| stats count(Source_Exception) as Total by Source_Exception, _time, Application 
| table _time, Application, Source_Exception
| sort Application

I would like a SimpleResultsTable display a table for _time, Application, Source_Exception. However, I get the following error displayed in my panel:

The job appears to have expired or has been cancelled. Splunk could not retrieve data for this search.

I've also tried to simplify my postprocess to test using queries like stats count by {field_extraction} and cannot get the panel to return a result. I seem to only be able to return data when using a built-in field.

0 Karma

sideview
SplunkTrust
SplunkTrust

Splunk does a lot of clever things when the search is dispatched, to avoid doing unnecessary work. In particular it won't extract a given field if it doesn't see any evidence that it needs to. Since your postProcess search only comes along after the search has been kicked off, your field wont be there.

There are actually several different pitfalls that people fall into with postprocess. It used to be some great docs were hidden inside later versions of the Sideview Utils app itself (Key Techniques > Intro to postprocess) but I just fished those docs out and posted them here:

http://sideviewapps.com/1796/postprocess-searches-pitfalls-galore/

0 Karma

somesoni2
Revered Legend

You should include a table or fields command in the base search to explicitly list all the fields that you want to use in post-process searches.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...