Skip to content

Commit

Permalink
Add 'dataset' size to cat indices and cat shards (#2840)
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin authored Sep 2, 2024
1 parent f84d689 commit 4cde24d
Show file tree
Hide file tree
Showing 7 changed files with 159 additions and 3 deletions.
26 changes: 26 additions & 0 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 35 additions & 1 deletion output/schema/schema-serverless.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 70 additions & 2 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions specification/cat/indices/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ export class IndicesRecord {
*/
'pri.store.size'?: string | null

/**
* total size of dataset (including the cache for partially mounted indices)
* @availability stack since=8.11.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
'dataset.size'?: string | null

/**
* size of completion
* @aliases cs,completionSize
Expand Down
6 changes: 6 additions & 0 deletions specification/cat/shards/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ export class ShardsRecord {
* @aliases sto
*/
'store'?: string | null
/**
* total size of dataset (including the cache for partially mounted indices)
* @availability stack since=8.11.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
'dataset'?: string | null
/**
* The IP address of the node.
*/
Expand Down

0 comments on commit 4cde24d

Please sign in to comment.