Skip to content

Commit 77eb7b2

Browse files
Remove frozen indices telemetry from spec (#3580)
This reflects the changes in elastic/elasticsearch#119890.
1 parent cf8e0b8 commit 77eb7b2

File tree

8 files changed

+19
-116
lines changed

8 files changed

+19
-116
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 0 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 19 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/xpack/info/examples/response/XPackInfoResponseExample1.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ value: |-
3636
"available" : true,
3737
"enabled" : true
3838
},
39-
"frozen_indices" : {
40-
"available" : true,
41-
"enabled" : true
42-
},
4339
"graph" : {
4440
"available" : true,
4541
"enabled" : true

specification/xpack/info/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ export class Features {
5555
* @availability stack since=8.14.0
5656
*/
5757
esql: Feature
58-
frozen_indices: Feature
5958
graph: Feature
6059
ilm: Feature
6160
logstash: Feature

specification/xpack/usage/XPackUsageResponse.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import {
2626
DataTiers,
2727
Eql,
2828
Flattened,
29-
FrozenIndices,
3029
HealthStatistics,
3130
Ilm,
3231
MachineLearning,
@@ -58,7 +57,6 @@ export class Response {
5857
enrich?: Base
5958
eql: Eql
6059
flattened?: Flattened
61-
frozen_indices: FrozenIndices
6260
graph: Base
6361
health_api?: HealthStatistics
6462
ilm: Ilm

specification/xpack/usage/examples/response/XPackUsageResponseExample1.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -298,11 +298,6 @@ value: |-
298298
"full_copy_indices_count" : 0,
299299
"shared_cache_indices_count" : 0
300300
},
301-
"frozen_indices" : {
302-
"available" : true,
303-
"enabled" : true,
304-
"indices_count" : 0
305-
},
306301
"spatial" : {
307302
"available" : true,
308303
"enabled" : true

specification/xpack/usage/types.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,10 +367,6 @@ export class Flattened extends Base {
367367
field_count: integer
368368
}
369369

370-
export class FrozenIndices extends Base {
371-
indices_count: long
372-
}
373-
374370
export class JobUsage {
375371
count: integer
376372
created_by: Dictionary<string, long>

0 commit comments

Comments
 (0)