Disable a named stream Technical preview; Added in 9.1.0

POST /_streams/{name}/_disable

Turn off the named stream feature for this cluster.

Required authorization

  • Cluster privileges: manage

Path parameters

  • name string

    The stream type to disable.

    Values are logs, logs.otel, or logs.ecs.

Query parameters

  • master_timeout string

    The period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.

    Values are -1 or 0.

    External documentation
  • timeout string

    The period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.

    Values are -1 or 0.

    External documentation

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • acknowledged boolean Required

      For a successful response, this value is always true. On failure, an exception is returned instead.

POST /_streams/{name}/_disable
curl \
 --request POST 'http://api.example.com/_streams/{name}/_disable'
Response examples (200)
A successful response from `POST _streams/logs.otel/_disable` endpoint
{
  "acknowledged": true
}