By default, it returns only settings that have been explicitly defined.
Required authorization
- Cluster privileges:
monitor
Query parameters
-
If
true, returns settings in flat format. -
If
true, also returns the values of all other cluster settings set in theelasticsearch.ymlfile on one of the nodes in your cluster, together with the default values of all other cluster settings on that node. The default value of each setting may depend on the values of other settings on that node. If the nodes in your cluster do not all have the same configuration then the values returned by this API may vary from invocation to invocation and may not reflect the values that Elasticsearch uses in all situations. Use theGET _nodes/settingsAPI to fetch the settings for each individual node in your cluster. -
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 -
Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
External documentation
GET /_cluster/settings?filter_path=persistent.cluster.remote
resp = client.cluster.get_settings(
filter_path="persistent.cluster.remote",
)
const response = await client.cluster.getSettings({
filter_path: "persistent.cluster.remote",
});
response = client.cluster.get_settings(
filter_path: "persistent.cluster.remote"
)
$resp = $client->cluster()->getSettings([
"filter_path" => "persistent.cluster.remote",
]);
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_cluster/settings?filter_path=persistent.cluster.remote"
client.cluster().getSettings(g -> g);