Retrieves indexing latency metrics for selected clusters.
This endpoint is intended for infrastructure-level monitoring and availability checks.
The returned value reflects latency measured on Algolia’s internal monitoring index
and is reported in milliseconds.This metric isn’t intended to represent the indexing performance of an individual
application or index. To measure when an indexing operation has completed for your
application, use the waitTask method.
// Initialize the clientvar client = new MonitoringClient( new MonitoringConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY"));// Call the APIvar response = await client.GetIndexingTimeAsync("c1-de");// print the responseConsole.WriteLine(response);
See the full API reference
For more details about input parameters
and response fields.