Skip to content

Instantly share code, notes, and snippets.

@vebodev
Last active March 18, 2024 08:01
Show Gist options
  • Save vebodev/48057b7292c4b9357bb2eaccc82d52ab to your computer and use it in GitHub Desktop.
Save vebodev/48057b7292c4b9357bb2eaccc82d52ab to your computer and use it in GitHub Desktop.
ElasticSearch

删除某个时间点前的indics

# 列出当前所有indics
curl -k  "https://localhost:9200/_cat/indices"
curl -k -X POST "http://localhost:9200/graylog_148/_delete_by_query?pretty" -H 'Content-Type: application/json' -d'
{
  "query": {
    "bool": {
      "filter": [
        {
          "range": {
            "@timestamp": {
              "lt": "now-1d"
            }
          }
        }
      ]
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment