Query parameters
-
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.
External documentation
GET
/_streams/status
Console
GET _streams/status
resp = client.streams.status()
const response = await client.streams.status();
response = client.streams.status
$resp = $client->streams()->status();
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_streams/status"
client.streams().status(s -> s);
Response examples (200)
{
"logs": {
"enabled": false
}
"logs.ecs": {
"enabled": true
}
"logs.otel": {
"enabled": true
}
}