Add xpack info and usage endpoints for runtime fields (#65600)

Relates to #59332
This commit is contained in:
Luca Cavanna 2020-12-08 10:15:08 +01:00 committed by GitHub
parent 52afaf2060
commit 20d6fbcd55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 765 additions and 17 deletions

View file

@ -107,6 +107,10 @@ Example response:
"available": true,
"enabled": true
},
"runtime_fields": {
"available": true,
"enabled": true
},
"searchable_snapshots" : {
"available" : true,
"enabled" : true

View file

@ -341,6 +341,11 @@ GET /_xpack/usage
"aggregate_metric" : {
"available" : true,
"enabled" : true
},
"runtime_fields" : {
"available" : true,
"enabled" : true,
"field_types" : []
}
}
------------------------------------------------------------