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
These rules specify which users can access the system information management interface. System information access includes the following aspects:
Read access to details such as Trino version, uptime of the node, and others from the /v1/info and /v1/status REST endpoints.
Document states that read access from /v1/info and /v1/status are affected by system information rules. However they are not.
Public:
HEAD /v1/status
GET /v1/status
GET /v1/info
GET /v1/info/state
GET /v1/info/coordinator
MANAGEMENT_WRITE check:
PUT /v1/info/state (Endpoint for graceful shutdown)
/v1/status at the very least is expected to be public since they are used as health-checks by things like load-balancers, our Docker images, k8s probes and so on.
Document states that read access from
/v1/info
and/v1/status
are affected by system information rules. However they are not.Public:
HEAD /v1/status
GET /v1/status
GET /v1/info
GET /v1/info/state
GET /v1/info/coordinator
MANAGEMENT_WRITE check:
PUT /v1/info/state
(Endpoint for graceful shutdown)Ref:
trino/core/trino-main/src/main/java/io/trino/server/StatusResource.java
Line 67 in 3cbe0c2
trino/core/trino-main/src/main/java/io/trino/server/ServerInfoResource.java
Line 64 in 3cbe0c2
#17153
The text was updated successfully, but these errors were encountered: