Splunk Search

View all Splunk instance in a single Splunk?

Vinesh93
Explorer

We have 6 splunk deployment server and need to login to every server to see the dashboards in respective servers. Is there any possible ways to manage a single splunk instance where i can see all dashboards from 6 servres?

Thanks in advance 🙂

Tags (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi Vinesh93,
no There isn't a Federated Deployment Server, I asked it many times to Splunk but no answer!
You could see the situation of each deployment server, extracting data from each DS and sending this data to Indexers, so you can search and display these data on a Search Head.
I did this configuration using a scheduled report on each DS that wrote situation every hour on a CSV file, the file was sent to indexers and I did a dashboard.
Otherwise, you could use rest to remotely extract the samedata from each DS, but the other solution is easier.
The search I used was:

| rest splunk_server=local /services/deployment/server/clients\
| table hostname ip utsname *.restartSplunkd\
| eval temp=hostname."#".ip."#".utsname \
| table temp *.restartSplunkd\
| untable temp apps count \
| eval Apps=if(like(apps,"app%"),mvindex(split(apps,"."),1),null()) \
| eval ServerClass=if(like(apps,"server%"),mvindex(split(apps,"."),1),null() ) \
| rex field=temp "(?<Host>.*)#(?<Host_IP>.*)#(?<Machine_Type>.*)" \
| table Host Host_IP Machine_Type Apps ServerClass \
| stats Values(*) as * by Host Host_IP Machine_Type\
| nomv Apps\
| nomv ServerClass\
| outputcsv ServerClassesList.csv

Bye.
Giuseppe

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Monitoring AI Agents with Splunk Observability Cloud

Let’s say I’m running a travel planning AI app in production. A user asks for three concise hotel options in ...

[Puzzles] Solve, Learn, Repeat: Tiling

This puzzle (first published here) is based on finding groups of tessellated tiles (inspired by floor tiles I ...

SOK it to Me: Top 3 Benefits of Using Splunk Operator on Kubernetes that’ll Make ...

    Thursday, July 9, 2026  |  11:00AM–12:00PM PDT Duration: 1 hour (includes Q&A) Managing can feel like a ...