mirror of
https://github.com/iSharkFly-Docs/opensearch-docs-cn
synced 2025-03-01 11:49:04 +00:00
* add operation to titles to differentiate from the API group acronym Signed-off-by: alicejw <alicejw@amazon.com> * update frontmatter with new page title Signed-off-by: alicejw <alicejw@amazon.com> * for updates per issue https://github.com/opensearch-project/documentation-website/issues/1713 Signed-off-by: alicejw <alicejw@amazon.com> * to rename section title in left nav TOC to remove acronym definition and update each page frontmatter accordingly Signed-off-by: alicejw <alicejw@amazon.com> * to update page title per AWS Style Guide suggestion to only spell out the acronym the first time it's used in a sentence, not on the page title Signed-off-by: alicejw <alicejw@amazon.com> Signed-off-by: alicejw <alicejw@amazon.com>
64 lines
1.9 KiB
Markdown
64 lines
1.9 KiB
Markdown
---
|
|
layout: default
|
|
title: CAT plugins
|
|
parent: CAT API
|
|
|
|
nav_order: 50
|
|
has_children: false
|
|
---
|
|
|
|
# CAT plugins
|
|
Introduced 1.0
|
|
{: .label .label-purple }
|
|
|
|
The CAT plugins operation lists the names, components, and versions of the installed plugins.
|
|
|
|
## Example
|
|
|
|
```
|
|
GET _cat/plugins?v
|
|
```
|
|
|
|
## Path and HTTP methods
|
|
|
|
```
|
|
GET _cat/plugins
|
|
```
|
|
|
|
## URL parameters
|
|
|
|
All CAT plugins URL parameters are optional.
|
|
|
|
In addition to the [common URL parameters]({{site.url}}{{site.baseurl}}/api-reference/cat/index), you can specify the following parameters:
|
|
|
|
Parameter | Type | Description
|
|
:--- | :--- | :---
|
|
local | Boolean | Whether to return information from the local node only instead of from the cluster_manager node. Default is false.
|
|
cluster_manager_timeout | Time | The amount of time to wait for a connection to the cluster_manager node. Default is 30 seconds.
|
|
|
|
## Response
|
|
|
|
```json
|
|
name component version
|
|
odfe-node2 opendistro-alerting 1.13.1.0
|
|
odfe-node2 opendistro-anomaly-detection 1.13.0.0
|
|
odfe-node2 opendistro-asynchronous-search 1.13.0.1
|
|
odfe-node2 opendistro-index-management 1.13.2.0
|
|
odfe-node2 opendistro-job-scheduler 1.13.0.0
|
|
odfe-node2 opendistro-knn 1.13.0.0
|
|
odfe-node2 opendistro-performance-analyzer 1.13.0.0
|
|
odfe-node2 opendistro-reports-scheduler 1.13.0.0
|
|
odfe-node2 opendistro-sql 1.13.2.0
|
|
odfe-node2 opendistro_security 1.13.1.0
|
|
odfe-node1 opendistro-alerting 1.13.1.0
|
|
odfe-node1 opendistro-anomaly-detection 1.13.0.0
|
|
odfe-node1 opendistro-asynchronous-search 1.13.0.1
|
|
odfe-node1 opendistro-index-management 1.13.2.0
|
|
odfe-node1 opendistro-job-scheduler 1.13.0.0
|
|
odfe-node1 opendistro-knn 1.13.0.0
|
|
odfe-node1 opendistro-performance-analyzer 1.13.0.0
|
|
odfe-node1 opendistro-reports-scheduler 1.13.0.0
|
|
odfe-node1 opendistro-sql 1.13.2.0
|
|
odfe-node1 opendistro_security 1.13.1.0
|
|
```
|