Skip to content
This repository was archived by the owner on Dec 14, 2022. It is now read-only.

Commit 2429183

Browse files
author
Chris Wiechmann
committed
ILM policies optimized for the ideal index sizes.
#68
1 parent 9a4d4c2 commit 2429183

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99
- Wrong ILM Rollover alias added to regional index [#67](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/67)
1010
- Index-Rollover error when using regional indices [#66](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/66)
1111

12+
### Changed
13+
- ILM policies optimized for the ideal index sizes [#68](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/68)
14+
1215
## [2.0.1] 2021-01-28
1316
### Fixed
1417
- Avoid a Race-Condition by making the variable apiProxy locally instead of global [#61](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/61)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -735,11 +735,11 @@ The configuration is defined here per data type (e.g. Summary, Details, Audit, .
735735

736736
| Data-Type | Description | Hot (Size/Days) | Warm | Cold | Delete | Total |
737737
| :--- |:--- | :--- | :--- | :--- | :--- | :--- |
738-
| **Traffic-Summary** | Main index for traffic-monitor overview and primary dashboard | 30GB / 7 days | 15 days | 30 days | 10 days | 62 days |
739-
| **Traffic-Details** | Details in Traffic-Monitor for Policy, Headers and Payload reference | 30GB / 7 days | 7 days | 10 days | 5 days | 29 days |
740-
| **Traffic-Trace** | Trace-Messages belonging to an API-Request shown in Traffic-Monitor | 30GB / 7 days | 7 days | 10 days | 5 days | 29 days |
741-
| **General-Trace** | General trace messages, like Start- & Stop-Messages | 30GB / 7 days | 7 days | 10 days | 5 days | 29 days |
742-
| **Gateway-Monitoring** | System status information (CPU, HDD, etc.) from Event-Files | 30GB / 15 days | 15 days | 15 days | 15 days | 60 days |
738+
| **Traffic-Summary** | Main index for traffic-monitor overview and primary dashboard | 30GB / 15 days | 15 days | 30 days | 10 days | 70 days |
739+
| **Traffic-Details** | Details in Traffic-Monitor for Policy, Headers and Payload reference | 30GB / 15 days | 7 days | 10 days | 5 days | 37 days |
740+
| **Traffic-Trace** | Trace-Messages belonging to an API-Request shown in Traffic-Monitor | 30GB / 60 days | 7 days | 10 days | 5 days | 82 days |
741+
| **General-Trace** | General trace messages, like Start- & Stop-Messages | 30GB / 60 days | 7 days | 10 days | 5 days | 82 days |
742+
| **Gateway-Monitoring** | System status information (CPU, HDD, etc.) from Event-Files | 30GB / 60 days | 15 days | 15 days | 15 days | 105 days |
743743
| **Domain-Audit** | Domain Audit-Information as configured in Admin-Node-Manager | 10GB / 270 days | 270 days| 720 days| 15 days | >3 years|
744744

745745
Please note:

apibuilder4elastic/elasticsearch_config/apigw-monitoring/ilm_policy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"min_age": "0ms",
66
"actions": {
77
"rollover": {
8-
"max_age": "15d",
8+
"max_age": "60d",
99
"max_size": "30gb"
1010
},
1111
"set_priority": {

apibuilder4elastic/elasticsearch_config/trace-messages/ilm_policy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"min_age": "0ms",
66
"actions": {
77
"rollover": {
8-
"max_age": "7d",
8+
"max_age": "60d",
99
"max_size": "30gb"
1010
},
1111
"set_priority": {

apibuilder4elastic/elasticsearch_config/traffic-details/ilm_policy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"min_age": "0ms",
66
"actions": {
77
"rollover": {
8-
"max_age": "7d",
8+
"max_age": "15d",
99
"max_size": "30gb"
1010
},
1111
"set_priority": {

apibuilder4elastic/elasticsearch_config/traffic-summary/ilm_policy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"min_age": "0ms",
66
"actions": {
77
"rollover": {
8-
"max_age": "7d",
8+
"max_age": "15d",
99
"max_size": "30gb"
1010
},
1111
"set_priority": {

0 commit comments

Comments
 (0)