File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
specification/cluster/health Expand file tree Collapse file tree 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
@@ -42,8 +42,10 @@ export class HealthResponseBody {
42
42
active_primary_shards : integer
43
43
/** The total number of active primary and replica shards. */
44
44
active_shards : integer
45
+ /** The ratio of active shards in the cluster expressed as a string formatted percentage. */
46
+ active_shards_percent ?: string
45
47
/** The ratio of active shards in the cluster expressed as a percentage. */
46
- active_shards_percent_as_number : Percentage
48
+ active_shards_percent_as_number : double
47
49
/** The name of the cluster. */
48
50
cluster_name : Name
49
51
/** 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