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!

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to Officially Supported Splunk ...