Skip to content

Commit b4ee38a

Browse files
authored
File settings health indicator (#3173)
1 parent e9a5ad8 commit b4ee38a

File tree

3 files changed

+121
-28
lines changed

3 files changed

+121
-28
lines changed

output/schema/schema.json

Lines changed: 99 additions & 28 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: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_global/health_report/types.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export class Indicators {
3838
ilm?: IlmIndicator
3939
slm?: SlmIndicator
4040
shards_capacity?: ShardsCapacityIndicator
41+
file_settings?: FileSettingsIndicator
4142
}
4243

4344
export class BaseIndicator {
@@ -202,3 +203,14 @@ export class ShardsCapacityIndicatorTierDetail {
202203
max_shards_in_cluster: integer
203204
current_used_shards?: integer
204205
}
206+
207+
/** FILE_SETTINGS **/
208+
209+
export class FileSettingsIndicator extends BaseIndicator {
210+
details?: FileSettingsIndicatorDetails
211+
}
212+
213+
export class FileSettingsIndicatorDetails {
214+
failure_streak: long
215+
most_recent_failure: string
216+
}

0 commit comments

Comments
 (0)