-
Notifications
You must be signed in to change notification settings - Fork 529
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement basic ILM handling for APM
ILM can be setup by using the `setup --index-management` or the `run` cmd. The templates and ilm policies can be exported using the `export` cmd. fixes #1290
- Loading branch information
Showing
22 changed files
with
1,490 additions
and
367 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file was deleted.
Oops, something went wrong.
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package ilm | ||
|
||
import ( | ||
"github.com/elastic/beats/libbeat/common/fmtstr" | ||
) | ||
|
||
const pattern = "000001" | ||
|
||
//Config for ILM supporter | ||
type Config struct { | ||
Enabled bool `config:"enabled"` | ||
PolicyName *fmtstr.EventFormatString `config:"policy_name"` | ||
AliasName *fmtstr.EventFormatString `config:"alias_name"` | ||
Event string `config:"event"` | ||
} |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package ilm | ||
|
||
import "github.com/elastic/beats/libbeat/common" | ||
|
||
type m common.MapStr | ||
|
||
var eventPolicies = map[string]common.MapStr{ | ||
"error": PolicyKeepMedium, | ||
"span": PolicyKeepMedium, | ||
"transaction": PolicyKeep, | ||
"metric": PolicyKeep, | ||
} | ||
|
||
//PolicyKeep should be used for indices queried max for 2 months | ||
var PolicyKeep = common.MapStr{ | ||
"policy": m{ | ||
"phases": m{ | ||
"hot": m{ | ||
"actions": m{ | ||
"rollover": m{ | ||
"max_size": "50gb", | ||
"max_age": "7d", | ||
}, | ||
"set_priority": m{ | ||
"priority": 100, | ||
}, | ||
}, | ||
}, | ||
"warm": m{ | ||
"min_age": "31d", | ||
"actions": m{ | ||
"set_priority": m{ | ||
"priority": 50, | ||
}, | ||
"readonly": m{}, | ||
"forcemerge": m{ | ||
"max_num_segments": 1, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
//PolicyKeepMedium should be used for indices that need to be queried max for two weeks | ||
var PolicyKeepMedium = common.MapStr{ | ||
"policy": m{ | ||
"phases": m{ | ||
"hot": m{ | ||
"actions": m{ | ||
"rollover": m{ | ||
"max_size": "50gb", | ||
"max_age": "1d", | ||
}, | ||
"set_priority": m{ | ||
"priority": 100, | ||
}, | ||
}, | ||
}, | ||
"warm": m{ | ||
"min_age": "7d", | ||
"actions": m{ | ||
"set_priority": m{ | ||
"priority": 50, | ||
}, | ||
"readonly": m{}, | ||
"forcemerge": m{ | ||
"max_num_segments": 1, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} |
This file contains 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 characters
Oops, something went wrong.