Health
The indexes/{index_name}/health
endpoint provides information about the health of a Marqo index.
Get health
GET /indexes/{index_name}/health
Gets the health of a Marqo index.
Example
curl -XGET http://localhost:8882/indexes/my-first-index/health
results = client.index("my-first-index").health()
Response: 200 OK
{
"status":"yellow",
"backend":{
"status":"yellow"
}
}