Splunk Search

Can you help me clean up my search syntax so my results populate faster?

sangs8788
Communicator

The below query is used to return the Error distribution in 3 layers - Application, Dataservice & Queue for a time range two months.
Currently the query takes more than 5 mins to return the result.

index=performance host="prod*"  AND host= "/*web/*" earliest=1500076800  latest=1504915200  | eval layer="Application"| append [search index=performance host="prod*" MQ _raw="/*ERROR/*"  earliest=1500076800  latest=1504915200   | eval layer="Queue"] | append [search index=performance host="prod*" exception="*sql*" sqlserver OR db2   earliest=1500076800  latest=1504915200  | append[search index=de riak sourcetype=kvs_console "\[error\]" host="prod*"   earliest=1500076800  latest=1504915200   ] | append [search index=de host="*prod*" source="*memsql*"  "ERROR"   earliest=1500076800  latest=1504915200   ]|append [search index=de OR index=app sourcetype="solr_log" SEVERE OR ERROR    earliest=1500076800  latest=1504915200  ]|eval layer = "DataService"] |stats count by layer

The query is added a a search panel to dashboard. How can I tune this query so that it gives me results faster?

0 Karma

DalJeanis
Legend

Try this ...

earliest=1500076800  latest=1504915200
   (index=performance host="prod*" 
              AND ( ( host= "/*web/*" )  
                 OR ( MQ _raw="/*ERROR/*" )  
                 OR ( exception="*sql*" sqlserver OR db2 ) ) )
OR (index=de  AND ( ( sourcetype=kvs_console "\[error\]" host="prod*") 
                 OR ( host="*prod*" source="*memsql*" "ERROR" )
                 OR ( sourcetype="solr_log" SEVERE OR ERROR ) ) )
OR (index=app sourcetype="solr_log" SEVERE OR ERROR )  

| eval layer=case(index="app" OR index="de","DataService",
                  match(host,"\/.*web\/"),"Application",
                  match(_raw,"MQ") AND match(_raw,"\/.*ERROR\/"),"Queue"
                  true(),"Application")                  
| stats count by layer

Please test thoroughly, this is aircode. Start by testing against a 1 minute slice of data and see if the results are the same as your original. Modify the regex in each match() as needed to correctly identify the source of each event.

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...