diff --git a/api/routers/subs/health.py b/api/routers/subs/health.py index fdef52509..65c39ad4f 100644 --- a/api/routers/subs/health.py +++ b/api/routers/subs/health.py @@ -6,7 +6,7 @@ from routers.base import get_routers public_app, app, app_apikey = get_routers() -@app.get('/health', tags=["health-check"]) +@app.get('/healthz', tags=["health-check"]) def get_global_health_status(): return {"data": health.get_health()} diff --git a/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql b/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql index 0418c5d7d..5265f4b00 100644 --- a/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql +++ b/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql @@ -414,7 +414,8 @@ $$ 'ml_excessive_scrolling', 'ml_slow_resources', 'custom', - 'js_exception' + 'js_exception', + 'mouse_thrashing' ); END IF; diff --git a/scripts/schema/db/init_dbs/postgresql/init_schema.sql b/scripts/schema/db/init_dbs/postgresql/init_schema.sql index 2fe532636..cd5e0e2db 100644 --- a/scripts/schema/db/init_dbs/postgresql/init_schema.sql +++ b/scripts/schema/db/init_dbs/postgresql/init_schema.sql @@ -316,7 +316,8 @@ $$ 'ml_excessive_scrolling', 'ml_slow_resources', 'custom', - 'js_exception' + 'js_exception', + 'mouse_thrashing' ); CREATE TABLE issues