Sep 20, 2024
Retrieve servers
Retrieves the servers that belong to clusters.
The response depends on whether you authenticate your API request:
-
With authentication, the response lists the servers assigned to your Algolia application’s cluster.
-
Without authentication, the response lists the servers for all Algolia clusters.
Usage
Copy
1
2
3
4
5
6
7
8
9
10
import algoliasearch.api.MonitoringClient
import algoliasearch.config.*
val client = MonitoringClient(appId = "ALGOLIA_APPLICATION_ID", apiKey = "ALGOLIA_API_KEY")
val response = Await.result(
client.getServers(
),
Duration(100, "sec")
)
Did you find this page helpful?