How to Monitor Health Checks for Vultr Serverless Inference
- 
                
by Blog Admin
 - 15
 
How to Monitor Health Checks for Vultr Serverless Inference
A monitoring feature that regularly tests your services to verify theyre operational and can automatically restart failing instances.
Health Checks on Vultr Serverless Inference ensures that your deployments remain operational and responsive. By periodically checking its status, you can proactively detect potential issues and maintain seamless AI performance.
Follow this guide to check the status of Serverless Inference subscription using the Vultr API.
- Send a 
GETrequest to the List Serverless Inference endpoint and note the target inference subscription’s ID.console$ curl "https://api.vultr.com/v2/inference" \ -X GET \ -H "Authorization: Bearer ${VULTR_API_KEY}"
 - Send a 
GETrequest to the Serverless Inference endpoint and note the target inference subscription’s API key.console$ curl "https://api.vultr.com/v2/inference/{inference-id}" \ -X GET \ -H "Authorization: Bearer ${VULTR_API_KEY}"
 - Send a 
GETrequest to the Health Check endpoint to view the current status of the target inference subscription.console$ curl "https://api.vultrinference.com/v1/health" \ -X GET \ -H "Authorization: Bearer ${INFERENCE_API_KEY}"
 
How to Monitor Health Checks for Vultr Serverless Inference A monitoring feature that regularly tests your services to verify theyre operational and can automatically restart failing instances. Health Checks on Vultr Serverless Inference ensures that your deployments remain operational and responsive. By periodically checking its status, you can proactively detect…
How to Monitor Health Checks for Vultr Serverless Inference A monitoring feature that regularly tests your services to verify theyre operational and can automatically restart failing instances. Health Checks on Vultr Serverless Inference ensures that your deployments remain operational and responsive. By periodically checking its status, you can proactively detect…