We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a5ad8 commit 9809b18Copy full SHA for 9809b18
specification/_global/health_report/types.ts
@@ -38,6 +38,7 @@ export class Indicators {
38
ilm?: IlmIndicator
39
slm?: SlmIndicator
40
shards_capacity?: ShardsCapacityIndicator
41
+ file_settings?: FileSettingsIndicator
42
}
43
44
export class BaseIndicator {
@@ -202,3 +203,14 @@ export class ShardsCapacityIndicatorTierDetail {
202
203
max_shards_in_cluster: integer
204
current_used_shards?: integer
205
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