I looked through some of the answers above, but I'm not certain they fit. My clients search is:
index="websphere" sourcetype=WebSphere:SystemOutLog "execution took"| where source like "%DMAXP01%"| rex field=_raw "] (?.+) SystemOut O (?.+) \[(?.+)\] \[(?.+)\] \[(?.*)\] (?.+) - USER = \((?.+)\) SPID = \((?.+)\) app \((?.+)\) object \((?.+)\) : (?.+) \(execution took (?.+) milliseconds"| search queryString !="" | fillnull value=NULL| table ThreadId,CID_Num,host,JVMName,maxSpid,maxUser,appName,maxObject,ResponseTime_ms,queryString,_time
And he gets the error:
Getting "The XYZ query has exceeded configured match_limit, consider raising the value in limits.conf.
I note that he has the .+ entry in his search that matches one of the answers, but I'm not certain what to tell him about what to do with this search.
Should I up the limits for him or will that just make it worse?
Is there a better search?
... View more