You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, REST APIs, management UI built upon them, and metrics are on differente servlets of the same Jetty server, but are all started by the configuration http.admin.enabled; also one or both http.admin.port and https.admin.port must be set for the server to correctly be available.
Each interface should have its own setting, like:
http.admin.ui.enabled to enable Vue management UI and REST APIs (which are needed by the UI itself);
http.admin.api.enabled to enable only the REST APIs;
http.admin.metrics.enabled to enable the metrics APIs;
keep the legacy http.admin.enabled to enable everything on the admin Jetty server.
We should also consider if each feature can keep sharing the same HTTP and/or HTTPS port(s) (and potentially SSL certificate) or if we should split those options too.
The text was updated successfully, but these errors were encountered:
We should also consider if each feature can keep sharing the same HTTP and/or HTTPS port(s) (and potentially SSL certificate) or if we should split those options too.
Currently, REST APIs, management UI built upon them, and metrics are on differente servlets of the same Jetty server, but are all started by the configuration
http.admin.enabled
; also one or bothhttp.admin.port
andhttps.admin.port
must be set for the server to correctly be available.Each interface should have its own setting, like:
http.admin.ui.enabled
to enable Vue management UI and REST APIs (which are needed by the UI itself);http.admin.api.enabled
to enable only the REST APIs;http.admin.metrics.enabled
to enable the metrics APIs;http.admin.enabled
to enable everything on the admin Jetty server.We should also consider if each feature can keep sharing the same HTTP and/or HTTPS port(s) (and potentially SSL certificate) or if we should split those options too.
The text was updated successfully, but these errors were encountered: