OpenSearch Command Line Interface (opensearch-cli) is an open source tool that lets you manage your OpenSearch cluster from the command line and automate tasks. In addition to standard OpenSearch operations, you can configure, manage, and use the plugins, such as Alerting, Anomaly Detection, and SQL
opensearch-cli is best suited for situations in which you want to quickly combine a few commands, possibly adding them to a script for easy access or automation. This example moves a detector "ecommerce-count-qualtity" from staging to prod cluster, provided both profiles are available in config file.
opensearch-cli ad get ecommerce-count-qualtity --profile stg > ecommerce-count-qualtity.json
opensearch-cli ad create ecommerce-count-qualtity.json --profile prod
opensearch-cli ad start ecommerce-count-qualtity.json --profile prod
opensearch-cli ad stop ecommerce-count-qualtity --profile stg
opensearch-cli ad delete ecommerce-count-qualtity --profile stg
See User Guide.
See Compatibility.
See SECURITY for more information.
This project is licensed under the Apache v2.0 License.
Copyright OpenSearch Contributors. See NOTICE for details.