GET /health
Simple health check endpoint to verify that the Resource Service is running and responding to requests. This endpoint is useful for monitoring, load balancers, and orchestration systems.Authentication
No authentication required.Response
A greeting message indicating the service is operational.
Example Request
Example Response
Success
Status Codes
The service is running normally and accepting requests.
Notes
- This endpoint always returns a 200 status code if the service is running
- It does not check the health of dependent services (database, RabbitMQ, etc.)
- For production monitoring, consider implementing additional health checks that verify:
- Database connectivity
- Message queue connectivity
- Disk space availability
- Memory usage