Dashboards & Visualizations

Multi search Dashboard panel

tkerr1357
Path Finder

Hello,

I would like to make a dashboard panel that is a table the shows total successful logins in one row and total failed logins in another row. The base search for both is index=myindex Eventcode=4624(successful) host=myhost1 user=user* | stats count , index=myindex EventCode=4625(failed) host=myhost1 user=user* | stats count. Can anyone help me with how I would display these separate searches in a single dashboard panel?

Labels (2)
0 Karma

niketn
Legend

@tkerr1357 don't introduce subsearch for the query as you can handle straightforward using a query like the following:

Eventcode=4624 ("successful" OR "failed") host=myhost1 user=user* 
| stats count(eval(searchmatch("successful"))) as successful  count(eval(searchmatch("failed"))) as failed

The above search will make single trip to fetch required data from Index and will not be impacted by subsearch limitation. Please try out and confirm! 

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

impurush
Contributor

Hi @tkerr1357 

Use the append command to do that.

index=myindex Eventcode=4624(successful) host=myhost1 user=user* | stats count
|append [search index=myindex EventCode=4625(failed) host=myhost1 user=user* | stats count]
0 Karma
Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Dynamic formatting from XML events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Stronger Security with Federated Search for S3, GCP SQL & Australian Threat ...

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