Add a capabilities API to check node and cluster capabilities (#106820)

This adds a /_capabilities rest endpoint for checking the capabilities of a cluster - what endpoints, parameters, and endpoint capabilities the cluster supports
This commit is contained in:
Simon Cooper 2024-05-08 14:44:26 +01:00 committed by GitHub
parent 8864058f83
commit e7350dce29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 504 additions and 0 deletions

View file

@ -65,6 +65,7 @@ module org.elasticsearch.server {
exports org.elasticsearch.action.admin.cluster.desirednodes;
exports org.elasticsearch.action.admin.cluster.health;
exports org.elasticsearch.action.admin.cluster.migration;
exports org.elasticsearch.action.admin.cluster.node.capabilities;
exports org.elasticsearch.action.admin.cluster.node.hotthreads;
exports org.elasticsearch.action.admin.cluster.node.info;
exports org.elasticsearch.action.admin.cluster.node.reload;