Skip to content

Instantly share code, notes, and snippets.

@GiveMeSomething
Created August 24, 2023 17:46
Show Gist options
  • Save GiveMeSomething/ddea34d3a75267d9720f6f9b1c981a2c to your computer and use it in GitHub Desktop.
Save GiveMeSomething/ddea34d3a75267d9720f6f9b1c981a2c to your computer and use it in GitHub Desktop.
Patch Kibana low watermark
curl -X PUT "localhost:9200/_cluster/settings" -H 'Content-Type: application/json' -d'
{
"transient": {
"cluster.routing.allocation.disk.watermark.low": "30mb",
"cluster.routing.allocation.disk.watermark.high": "20mb",
"cluster.routing.allocation.disk.watermark.flood_stage": "10mb",
"cluster.info.update.interval": "1m"
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment