Using Splunk Cloud and management made the decision to send from UF's straight to Splunk Cloud indexers. As such, have run into a number of issues with various TA's not deployed to Cloud indexers. How can I generate a list of deployed aps/TA's that are on the Cloud indexers?
Hey @random_event,
Yes, it is possible that the app installed via Self Service doesn't get installed on the indexers. You can run the following search to get list of apps that are installed on Indexers
| rest services/apps/local
| sort title
| stats values(splunk_server) as splunk_server by title
| rename title as app
Hey @random_event,
Yes, it is possible that the app installed via Self Service doesn't get installed on the indexers. You can run the following search to get list of apps that are installed on Indexers
| rest services/apps/local
| sort title
| stats values(splunk_server) as splunk_server by title
| rename title as app
I would have suggested something similar, but thought it wouldn't work because of "send REST to indexers" being blocked in Splunk Cloud. Just tried it, however, and it worked.
There is no way to see just what is installed on the indexers. The best you can do is open the Manage Apps screen and see what TAs are installed there. If the TA is on the SH then it is also installed on the indexers.
That's what I thought, but I just ran into a situation where there was a TA deployed to the Cloud SHC but it was not present on the indexers, hence my inquiry now.