Skip to content

Commit 9809b18

Browse files
committed
Add FileSettingsIndicator
1 parent e9a5ad8 commit 9809b18

File tree

1 file changed

+12
-0
lines changed
  • specification/_global/health_report

1 file changed

+12
-0
lines changed

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)