Created
November 12, 2021 13:10
-
-
Save pashtet04/ad6d41a57d9f9baae88ef4bec1599a8b to your computer and use it in GitHub Desktop.
Revisions
-
pashtet04 created this gist
Nov 12, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ { "policy": { "description": "Production Logs rollover policy.", "default_state": "hot", "states": [ { "name": "rollover", "actions": [ { "rollover": { "min_size": "4gb" } } ], "transitions": [] }, { "name": "hot", "actions": [ { "replica_count": { "number_of_replicas": 2 } } ], "transitions": [ { "state_name": "cold", "conditions": { "min_index_age": "30d" } } ] }, { "name": "cold", "actions": [ { "read_only": {} } ], "transitions": [ { "state_name": "delete", "conditions": { "min_index_age": "180d" } } ] }, { "name": "delete", "actions": [ { "delete": {} } ], "transitions": [] } ], "ism_template": { "index_patterns": [ "prod*" ], "priority": 100 } } }