Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 99 additions & 28 deletions output/schema/schema.json

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

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

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

12 changes: 12 additions & 0 deletions specification/_global/health_report/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export class Indicators {
ilm?: IlmIndicator
slm?: SlmIndicator
shards_capacity?: ShardsCapacityIndicator
file_settings?: FileSettingsIndicator
}

export class BaseIndicator {
Expand Down Expand Up @@ -202,3 +203,14 @@ export class ShardsCapacityIndicatorTierDetail {
max_shards_in_cluster: integer
current_used_shards?: integer
}

/** FILE_SETTINGS **/

export class FileSettingsIndicator extends BaseIndicator {
details?: FileSettingsIndicatorDetails
}

export class FileSettingsIndicatorDetails {
failure_streak: long
most_recent_failure: string
}
Loading