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!

Mastering Threat Intelligence in ES 8.5, Splunk AI Assistant v2, and More from Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...

Break the Build: Inside the KubeDoom Lounge at .conf26

    You step up to the machine. The pixelated corridors of a certain 1993 FPS load in front of you, EMP Pulse ...

Splunk Auto Ingestion Parallel Pipeline Scaling

Why this feature matters Many Splunk environments experience ingestion pressure long before the host is fully ...