Elasticsearchのコマンドでの「.monitoring」のindex削除について

下記のようなelasticsearchのコマンドで「.monitoring」のindexを削除したいのですが、
可能でしょうか?
可能でしたら削除コマンドのご教示をお願いします。

■「.monitoring」のindex削除コマンドの例
curl -XDELETE localhost:9200/{.monitoring-es-6-yyyy.mm.dd}?pretty

よろしくお願いします。

既にお試しいただいているかもしれませんが、
こちらの環境(7.5.2)では、以下のようなcurlでindexが削除できましたよ。

curl -X DELETE http://localhost:9200/.monitoring-es-7-2020.02.06?pretty

複数を対象としたいなら、他のIndexを消すときと同様に*を使えます。

curl -X DELETE http://localhost:9200/.monitoring-es-7-2020.02.*?pretty

レス、ありがとうございます。
おかげさまで、削除できました。

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.