Logstash パイプライン削除 API

この API は、Logstash Central Management に使用されるパイプラインを削除します。

リクエスト

DELETE _logstash/pipeline/<pipeline_id>

前提条件

  • Elasticsearch のセキュリティ機能が有効になっている場合、この API を使用するには manage_logstash_pipelines クラスター権限が必要です。

説明

Logstash パイプラインを削除します。

パスパラメータ

  • <pipeline_id>
  • (必須、文字列)パイプラインの識別子。

次の例では、my_pipeline という名前のパイプラインを削除します:

Python

  1. resp = client.logstash.delete_pipeline(
  2. id="my_pipeline",
  3. )
  4. print(resp)

Ruby

  1. response = client.logstash.delete_pipeline(
  2. id: 'my_pipeline'
  3. )
  4. puts response

Js

  1. const response = await client.logstash.deletePipeline({
  2. id: "my_pipeline",
  3. });
  4. console.log(response);

コンソール

  1. DELETE _logstash/pipeline/my_pipeline

リクエストが成功すると、適切なステータスコードを持つ空のレスポンスが返されます。