File tree 1 file changed +4
-2
lines changed
specification/cluster/health
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 19
19
20
20
import { Dictionary } from '@spec_utils/Dictionary'
21
21
import { HealthStatus , IndexName , Name } from '@_types/common'
22
- import { integer , Percentage } from '@_types/Numeric'
22
+ import { double , integer } from '@_types/Numeric'
23
23
import { Duration , DurationValue , UnitMillis } from '@_types/Time'
24
24
import { IndexHealthStats } from './types'
25
25
@@ -41,8 +41,10 @@ export class HealthResponseBody {
41
41
active_primary_shards : integer
42
42
/** The total number of active primary and replica shards. */
43
43
active_shards : integer
44
+ /** The ratio of active shards in the cluster expressed as a string formatted percentage. */
45
+ active_shards_percent ?: string
44
46
/** The ratio of active shards in the cluster expressed as a percentage. */
45
- active_shards_percent_as_number : Percentage
47
+ active_shards_percent_as_number : double
46
48
/** The name of the cluster. */
47
49
cluster_name : Name
48
50
/** The number of shards whose allocation has been delayed by the timeout settings. */
You can’t perform that action at this time.
0 commit comments