checkHealth()
This operation checks the health status of the Milvus server.
checkHealth(): Promise<CheckHealthResponse>
Request Syntax
milvusClient.checkHealth()
RETURN TYPE:
Promise<CheckHealthResponse>
RETURNS:
A promise that resolves to a CheckHealthResponse object.
{
isHealthy: boolean,
reasons: []
}
PARAMETERS:
isHealthy (boolean) -
Whether the currently connected Milvus server is healthy.
reasons ([]) -
The reasons for the currently connected Milvus server is unhealthy.
Examples
milvusClient.checkHealth()