File tree Expand file tree Collapse file tree 4 files changed +21
-21
lines changed
specification/specs/x_pack/cross_cluster_replication/follow/follow_index_stats Expand file tree Collapse file tree 4 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 55220
55220
},
55221
55221
{
55222
55222
"name": "fatal_exception",
55223
- "required": true ,
55223
+ "required": false ,
55224
55224
"type": {
55225
55225
"kind": "instance_of",
55226
55226
"type": {
55447
55447
"type": {
55448
55448
"kind": "instance_of",
55449
55449
"type": {
55450
- "name": "long ",
55450
+ "name": "EpochMillis ",
55451
55451
"namespace": "internal"
55452
55452
}
55453
55453
}
55458
55458
"type": {
55459
55459
"kind": "instance_of",
55460
55460
"type": {
55461
- "name": "long ",
55461
+ "name": "EpochMillis ",
55462
55462
"namespace": "internal"
55463
55463
}
55464
55464
}
55469
55469
"type": {
55470
55470
"kind": "instance_of",
55471
55471
"type": {
55472
- "name": "long ",
55472
+ "name": "EpochMillis ",
55473
55473
"namespace": "internal"
55474
55474
}
55475
55475
}
55480
55480
"type": {
55481
55481
"kind": "instance_of",
55482
55482
"type": {
55483
- "name": "long ",
55483
+ "name": "EpochMillis ",
55484
55484
"namespace": "internal"
55485
55485
}
55486
55486
}
55502
55502
"type": {
55503
55503
"kind": "instance_of",
55504
55504
"type": {
55505
- "name": "long ",
55505
+ "name": "ByteSize ",
55506
55506
"namespace": "internal"
55507
55507
}
55508
55508
}
55522
55522
"type": {
55523
55523
"kind": "instance_of",
55524
55524
"type": {
55525
- "name": "string ",
55525
+ "name": "IndexName ",
55526
55526
"namespace": "internal"
55527
55527
}
55528
55528
}
Original file line number Diff line number Diff line change @@ -5436,7 +5436,7 @@ export interface FollowIndexShardStats {
5436
5436
bytes_read : long
5437
5437
failed_read_requests : long
5438
5438
failed_write_requests : long
5439
- fatal_exception : ErrorCause
5439
+ fatal_exception ? : ErrorCause
5440
5440
follower_aliases_version : long
5441
5441
follower_global_checkpoint : long
5442
5442
follower_index : string
@@ -5456,16 +5456,16 @@ export interface FollowIndexShardStats {
5456
5456
shard_id : integer
5457
5457
successful_read_requests : long
5458
5458
successful_write_requests : long
5459
- time_since_last_read_millis : long
5460
- total_read_remote_exec_time_millis : long
5461
- total_read_time_millis : long
5462
- total_write_time_millis : long
5459
+ time_since_last_read_millis : EpochMillis
5460
+ total_read_remote_exec_time_millis : EpochMillis
5461
+ total_read_time_millis : EpochMillis
5462
+ total_write_time_millis : EpochMillis
5463
5463
write_buffer_operation_count : long
5464
- write_buffer_size_in_bytes : long
5464
+ write_buffer_size_in_bytes : ByteSize
5465
5465
}
5466
5466
5467
5467
export interface FollowIndexStats {
5468
- index : string
5468
+ index : IndexName
5469
5469
shards : Array < FollowIndexShardStats >
5470
5470
}
5471
5471
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class FollowIndexShardStats {
21
21
bytes_read : long
22
22
failed_read_requests : long
23
23
failed_write_requests : long
24
- fatal_exception : ErrorCause
24
+ fatal_exception ? : ErrorCause
25
25
follower_aliases_version : long
26
26
follower_global_checkpoint : long
27
27
follower_index : string
@@ -41,10 +41,10 @@ class FollowIndexShardStats {
41
41
shard_id : integer
42
42
successful_read_requests : long
43
43
successful_write_requests : long
44
- time_since_last_read_millis : long
45
- total_read_remote_exec_time_millis : long
46
- total_read_time_millis : long
47
- total_write_time_millis : long
44
+ time_since_last_read_millis : EpochMillis
45
+ total_read_remote_exec_time_millis : EpochMillis
46
+ total_read_time_millis : EpochMillis
47
+ total_write_time_millis : EpochMillis
48
48
write_buffer_operation_count : long
49
- write_buffer_size_in_bytes : long
49
+ write_buffer_size_in_bytes : ByteSize
50
50
}
Original file line number Diff line number Diff line change 18
18
*/
19
19
20
20
class FollowIndexStats {
21
- index : string
21
+ index : IndexName
22
22
shards : FollowIndexShardStats [ ]
23
23
}
You can’t perform that action at this time.
0 commit comments