You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _api-reference/cat/cat-aliases.md
+14-10Lines changed: 14 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,19 +32,23 @@ GET /_cat/aliases/{name}
32
32
<!-- spec_insert_start
33
33
api: cat.aliases
34
34
component: query_parameters
35
-
columns: Parameter,Type,Description,Default
35
+
columns: Parameter, Data type, Description,Default
36
36
include_deprecated: false
37
37
-->
38
38
## Query parameters
39
-
Parameter | Type | Description | Default
40
-
:--- | :--- | :--- | :---
41
-
`expand_wildcards` | List or String | Expands wildcard expressions to concrete indexes. Combine multiple values with commas. Supported values are `all`, `open`, `closed`, `hidden`, and `none`. |
42
-
`format` | String | A short version of the `Accept` header, such as `json` or `yaml`. |
43
-
`h` | List | A comma-separated list of column names to display. |
44
-
`help` | Boolean | Returns help information. | `false`
45
-
`local` | Boolean | Whether to return information from the local node only instead of from the cluster manager node. | `false`
46
-
`s` | List | A comma-separated list of column names or column aliases to sort by. |
The following table lists the available query parameters. All query parameters are optional.
41
+
42
+
| Parameter | Data type | Description | Default |
43
+
| :--- | :--- | :--- | :--- |
44
+
|`expand_wildcards`| List or String | Specifies the type of index that wildcard expressions can match. Supports comma-separated values. <br> Valid values are: <br> - `all`: Match any index, including hidden ones. <br> - `closed`: Match closed, non-hidden indexes. <br> - `hidden`: Match hidden indexes. Must be combined with open, closed, or both. <br> - `none`: Wildcard expressions are not accepted. <br> - `open`: Match open, non-hidden indexes. | N/A |
45
+
|`format`| String | A short version of the `Accept` header, such as `json` or `yaml`. | N/A |
46
+
|`h`| List | A comma-separated list of column names to display. | N/A |
47
+
|`help`| Boolean | Returns help information. |`false`|
48
+
|`local`| Boolean | Whether to return information from the local node only instead of from the cluster manager node. |`false`|
49
+
|`s`| List | A comma-separated list of column names or column aliases to sort by. | N/A |
Copy file name to clipboardExpand all lines: _api-reference/cat/cat-field-data.md
+26-7Lines changed: 26 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,19 +14,38 @@ redirect_from:
14
14
15
15
The CAT Field Data operation lists the memory size used by each field per node.
16
16
17
-
17
+
<!-- spec_insert_start
18
+
api: cat.fielddata
19
+
component: endpoints
20
+
-->
18
21
## Endpoints
19
-
20
22
```json
21
-
GET _cat/fielddata?v
22
-
GET _cat/fielddata/<field_name>?v
23
+
GET /_cat/fielddata
24
+
GET /_cat/fielddata/{fields}
23
25
```
26
+
<!-- spec_insert_end -->
24
27
28
+
29
+
<!-- spec_insert_start
30
+
api: cat.fielddata
31
+
component: query_parameters
32
+
columns: Parameter, Data type, Description, Default
33
+
include_deprecated: false
34
+
-->
25
35
## Query parameters
26
36
27
-
Parameter | Type | Description
28
-
:--- | :--- | :---
29
-
bytes | Byte size | Specify the units for byte size. For example, `7kb` or `6gb`. For more information, see [Supported units]({{site.url}}{{site.baseurl}}/opensearch/units/).
37
+
The following table lists the available query parameters. All query parameters are optional.
38
+
39
+
| Parameter | Data type | Description | Default |
40
+
| :--- | :--- | :--- | :--- |
41
+
|`bytes`| String | The units used to display byte values. <br> Valid values are: `b`, `kb`, `k`, `mb`, `m`, `gb`, `g`, `tb`, `t`, `pb`, `p`| N/A |
42
+
|`format`| String | A short version of the `Accept` header, such as `json` or `yaml`. | N/A |
43
+
|`h`| List | A comma-separated list of column names to display. | N/A |
44
+
|`help`| Boolean | Returns help information. |`false`|
45
+
|`s`| List | A comma-separated list of column names or column aliases to sort by. | N/A |
Copy file name to clipboardExpand all lines: _api-reference/cat/cat-health.md
+26-7Lines changed: 26 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
layout: default
3
3
title: CAT health
4
4
parent: CAT API
5
-
6
5
nav_order: 20
7
6
has_children: false
8
7
redirect_from:
@@ -16,18 +15,38 @@ redirect_from:
16
15
The CAT health operation lists the status of the cluster, how long the cluster has been up, the number of nodes, and other useful information that helps you analyze the health of your cluster.
17
16
18
17
18
+
<!-- spec_insert_start
19
+
api: cat.health
20
+
component: endpoints
21
+
-->
19
22
## Endpoints
20
-
21
23
```json
22
-
GET _cat/health?v
24
+
GET /_cat/health
23
25
```
26
+
<!-- spec_insert_end -->
27
+
24
28
29
+
<!-- spec_insert_start
30
+
api: cat.health
31
+
component: query_parameters
32
+
columns: Parameter, Data type, Description, Default
33
+
include_deprecated: false
34
+
-->
25
35
## Query parameters
26
36
27
-
Parameter | Type | Description
28
-
:--- | :--- | :---
29
-
time | Time | Specify the units for time. For example, `5d` or `7h`. For more information, see [Supported units]({{site.url}}{{site.baseurl}}/opensearch/units/).
30
-
ts | Boolean | If true, returns HH:MM:SS and Unix epoch timestamps. Default is `true`.
37
+
The following table lists the available query parameters. All query parameters are optional.
38
+
39
+
| Parameter | Data type | Description | Default |
40
+
| :--- | :--- | :--- | :--- |
41
+
|`format`| String | A short version of the `Accept` header, such as `json` or `yaml`. | N/A |
42
+
|`h`| List | A comma-separated list of column names to display. | N/A |
43
+
|`help`| Boolean | Returns help information. |`false`|
44
+
|`s`| List | A comma-separated list of column names or column aliases to sort by. | N/A |
45
+
|`time`| String | The unit used to display time values. <br> Valid values are: `nanos`, `micros`, `ms`, `s`, `m`, `h`, `d`| N/A |
46
+
|`ts`| Boolean | When `true`, returns `HH:MM:SS` and Unix epoch timestamps. |`true`|
Copy file name to clipboardExpand all lines: _api-reference/cat/cat-indices.md
+33-12Lines changed: 33 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,24 +15,45 @@ redirect_from:
15
15
The CAT indices operation lists information related to indexes, that is, how much disk space they are using, how many shards they have, their health status, and so on.
16
16
17
17
18
+
<!-- spec_insert_start
19
+
api: cat.indices
20
+
component: endpoints
21
+
-->
18
22
## Endpoints
19
-
20
23
```json
21
-
GET _cat/indices/<index>
22
-
GET _cat/indices
24
+
GET /_cat/indices
25
+
GET /_cat/indices/{index}
23
26
```
27
+
<!-- spec_insert_end -->
28
+
24
29
30
+
<!-- spec_insert_start
31
+
api: cat.indices
32
+
component: query_parameters
33
+
columns: Parameter, Data type, Description, Default
34
+
include_deprecated: false
35
+
-->
25
36
## Query parameters
26
37
27
-
Parameter | Type | Description
28
-
:--- | :--- | :---
29
-
bytes | Byte size | Specify the units for byte size. For example, `7kb` or `6gb`. For more information, see [Supported units]({{site.url}}{{site.baseurl}}/opensearch/units/).
30
-
health | String | Limit indexes based on their health status. Supported values are `green`, `yellow`, and `red`.
31
-
include_unloaded_segments | Boolean | Whether to include information from segments not loaded into memory. Default is `false`.
32
-
cluster_manager_timeout | Time | The amount of time to wait for a connection to the cluster manager node. Default is 30 seconds.
33
-
pri | Boolean | Whether to return information only from the primary shards. Default is `false`.
34
-
time | Time | Specify the units for time. For example, `5d` or `7h`. For more information, see [Supported units]({{site.url}}{{site.baseurl}}/opensearch/units/).
35
-
expand_wildcards | Enum | Expands wildcard expressions to concrete indexes. Combine multiple values with commas. Supported values are `all`, `open`, `closed`, `hidden`, and `none`. Default is `open`.
38
+
The following table lists the available query parameters. All query parameters are optional.
39
+
40
+
| Parameter | Data type | Description | Default |
41
+
| :--- | :--- | :--- | :--- |
42
+
|`bytes`| String | The units used to display byte values. <br> Valid values are: `b`, `kb`, `k`, `mb`, `m`, `gb`, `g`, `tb`, `t`, `pb`, `p`| N/A |
43
+
|`cluster_manager_timeout`| String | The amount of time allowed to establish a connection to the cluster manager node. | N/A |
44
+
|`expand_wildcards`| List or String | Specifies the type of index that wildcard expressions can match. Supports comma-separated values. <br> Valid values are: <br> - `all`: Match any index, including hidden ones. <br> - `closed`: Match closed, non-hidden indexes. <br> - `hidden`: Match hidden indexes. Must be combined with open, closed, or both. <br> - `none`: Wildcard expressions are not accepted. <br> - `open`: Match open, non-hidden indexes. | N/A |
45
+
|`format`| String | A short version of the `Accept` header, such as `json` or `yaml`. | N/A |
46
+
|`h`| List | A comma-separated list of column names to display. | N/A |
47
+
|`health`| String | Limits indexes based on their health status. Supported values are `green`, `yellow`, and `red`. <br> Valid values are: `green`, `GREEN`, `yellow`, `YELLOW`, `red`, `RED`| N/A |
48
+
|`help`| Boolean | Returns help information. |`false`|
49
+
|`include_unloaded_segments`| Boolean | Whether to include information from segments not loaded into memory. |`false`|
50
+
|`local`| Boolean | Returns local information but does not retrieve the state from the cluster manager node. |`false`|
51
+
|`pri`| Boolean | When `true`, returns information only from the primary shards. |`false`|
52
+
|`s`| List | A comma-separated list of column names or column aliases to sort by. | N/A |
53
+
|`time`| String | Specifies the time units. <br> Valid values are: `nanos`, `micros`, `ms`, `s`, `m`, `h`, `d`| N/A |
0 commit comments