We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We haven't nailed our retention policy so when our LME VM has run out of space we can no longer sign in to adjust the retention.
Is there an easy cli way to remove all, or preferably, logs from x days ago and older, so we can free space?
The text was updated successfully, but these errors were encountered:
You should be able to look into doing this with the api:
curl -k -u elastic:password https://ipaddress:9200/_cat/indices
then after finding indices you want do delete:
curl -k -X DELETE -u elastic:password https://ipaddress:9200/INDEX_NAME
see more in docs here:
https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-delete-index.html
Sorry, something went wrong.
No branches or pull requests
We haven't nailed our retention policy so when our LME VM has run out of space we can no longer sign in to adjust the retention.
Is there an easy cli way to remove all, or preferably, logs from x days ago and older, so we can free space?
The text was updated successfully, but these errors were encountered: