diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 87e38ba457..bce4393e1c 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -77621,6 +77621,12 @@ }, "write_load": { "type": "number" + }, + "recent_write_load": { + "type": "number" + }, + "peak_write_load": { + "type": "number" } }, "required": [ diff --git a/output/schema/schema.json b/output/schema/schema.json index 48bbffd965..059869f368 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -49774,9 +49774,31 @@ "namespace": "_types" } } + }, + { + "name": "recent_write_load", + "required": false, + "type": { + "kind": "instance_of", + "type": { + "name": "double", + "namespace": "_types" + } + } + }, + { + "name": "peak_write_load", + "required": false, + "type": { + "kind": "instance_of", + "type": { + "name": "double", + "namespace": "_types" + } + } } ], - "specLocation": "_types/Stats.ts#L146-L162" + "specLocation": "_types/Stats.ts#L146-L164" }, { "kind": "type_alias", @@ -50719,7 +50741,7 @@ } } ], - "specLocation": "_types/Stats.ts#L164-L181" + "specLocation": "_types/Stats.ts#L166-L183" }, { "kind": "type_alias", @@ -51573,7 +51595,7 @@ } } ], - "specLocation": "_types/Stats.ts#L183-L193" + "specLocation": "_types/Stats.ts#L185-L195" }, { "kind": "type_alias", @@ -51694,7 +51716,7 @@ } } ], - "specLocation": "_types/Stats.ts#L195-L229" + "specLocation": "_types/Stats.ts#L197-L231" }, { "kind": "type_alias", @@ -51888,7 +51910,7 @@ } } ], - "specLocation": "_types/Stats.ts#L231-L236" + "specLocation": "_types/Stats.ts#L233-L238" }, { "kind": "enum", @@ -52002,7 +52024,7 @@ } } ], - "specLocation": "_types/Stats.ts#L238-L245" + "specLocation": "_types/Stats.ts#L240-L247" }, { "kind": "type_alias", @@ -52123,7 +52145,7 @@ } } ], - "specLocation": "_types/Stats.ts#L247-L253" + "specLocation": "_types/Stats.ts#L249-L255" }, { "kind": "interface", @@ -53147,7 +53169,7 @@ } } ], - "specLocation": "_types/Stats.ts#L255-L274" + "specLocation": "_types/Stats.ts#L257-L276" }, { "kind": "interface", @@ -53504,7 +53526,7 @@ } } ], - "specLocation": "_types/Stats.ts#L276-L369" + "specLocation": "_types/Stats.ts#L278-L371" }, { "kind": "type_alias", @@ -54150,7 +54172,7 @@ } } ], - "specLocation": "_types/Stats.ts#L371-L398" + "specLocation": "_types/Stats.ts#L373-L400" }, { "kind": "interface", @@ -54742,7 +54764,7 @@ } } ], - "specLocation": "_types/Stats.ts#L400-L408" + "specLocation": "_types/Stats.ts#L402-L410" }, { "kind": "type_alias", @@ -55045,7 +55067,7 @@ } } ], - "specLocation": "_types/Stats.ts#L410-L415" + "specLocation": "_types/Stats.ts#L412-L417" }, { "kind": "interface", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index 8231aaa7b7..916898de8e 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -2491,6 +2491,8 @@ export interface IndexingStats { index_failed: long types?: Record write_load?: double + recent_write_load?: double + peak_write_load?: double } export type Indices = IndexName | IndexName[] diff --git a/specification/_types/Stats.ts b/specification/_types/Stats.ts index 0455fca1d9..dfefbd27a6 100644 --- a/specification/_types/Stats.ts +++ b/specification/_types/Stats.ts @@ -159,6 +159,8 @@ export class IndexingStats { index_failed: long types?: Dictionary write_load?: double + recent_write_load?: double + peak_write_load?: double } export class MergesStats {