Put health check handler behind /health/readiness

Signed-off-by: Horst Gutmann <horst.gutmann@grafana.com>
This commit is contained in:
Horst Gutmann
2024-03-27 12:17:33 +01:00
parent 672ba0fe09
commit 41106cdff8
@@ -27,7 +27,7 @@ createBackendPlugin({
},
async init({ rootHttpRouter }) {
const router = Router();
router.get('', (request, response) => {
router.get('/readiness', (request, response) => {
response.send('OK');
});