Monitor the availability of your Bevy instance by configuring a monitoring tool to ping the health endpoint. Any response other than {"status": "OK"} indicates an availability problem.
Set up uptime monitoring
To monitor the availability of your Bevy instance, complete the following steps:
- In your monitoring tool, configure a request to the following endpoint: https://<your-domain>/health Replace <your-domain> with the domain of your Bevy instance.
- Set the expected response to {"status": "OK"}. Any other response indicates that your instance has an availability problem.
Key terms
- Health endpoint — The URL path (/health) used to check whether your Bevy instance is running.
- Uptime monitoring — A process that automatically checks whether a service is available at regular intervals.