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

Commit e4578be

Browse files
author
Chris Wiechmann
committed
Updated ILM min_age - as they depend on the Roll-Overdate
#99 - The ILM-Stage min-age depends on the Rollover from Hot to Warm, hence all other stages min_age must add a delay be on that.
1 parent 5609399 commit e4578be

File tree

7 files changed

+15
-14
lines changed

7 files changed

+15
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
### Fixed
99
- TransactionData not shown, if TransactionElement legs are not in a row [#97](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/97)
1010
- Already existing ServiceName and Operation (Policy-Based) is removed during API-Lookup, when native API cannot be looked up [#98](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/98)
11+
- Data is deleted too early - Data is not visible anymore after ap. 7 days [#99](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/99)
1112

1213
### Added
1314
- Added a new parameter: `DISABLE_CUSTOM_PROPERTIES` to disable custom properties support [#95](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/95)

README.md

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

780780
| Data-Type | Description | Hot (Size/Days) | Warm | Cold | Delete | Total |
781781
| :--- |:--- | :--- | :--- | :--- | :--- | :--- |
782-
| **Traffic-Summary** | Main index for traffic-monitor overview and primary dashboard | 30GB / 7 days | 4 days | 3 days | 0 days | 14 days |
783-
| **Traffic-Details** | Details in Traffic-Monitor for Policy, Headers and Payload reference | 30GB / 7 days | 4 days | 3 days | 0 days | 14 days |
784-
| **Traffic-Trace** | Trace-Messages belonging to an API-Request shown in Traffic-Monitor | 30GB / 7 days | 4 days | 3 days | 0 days | 14 days |
785-
| **General-Trace** | General trace messages, like Start- & Stop-Messages | 30GB / 7 days | 4 days | 3 days | 0 days | 14 days |
782+
| **Traffic-Summary** | Main index for traffic-monitor overview and primary dashboard | 30GB / 7 days | 5 days | 3 days | 0 days | 15 days |
783+
| **Traffic-Details** | Details in Traffic-Monitor for Policy, Headers and Payload reference | 30GB / 7 days | 5 days | 3 days | 0 days | 15 days |
784+
| **Traffic-Trace** | Trace-Messages belonging to an API-Request shown in Traffic-Monitor | 30GB / 7 days | 5 days | 3 days | 0 days | 15 days |
785+
| **General-Trace** | General trace messages, like Start- & Stop-Messages | 30GB / 7 days | 5 days | 3 days | 0 days | 15 days |
786786
| **Gateway-Monitoring** | System status information (CPU, HDD, etc.) from Event-Files | 30GB / 60 days | 30 days | 15 days | 0 days | 105 days|
787-
| **Domain-Audit** | Domain Audit-Information as configured in Admin-Node-Manager | 10GB / 270 days | 270 days| 720 days| 15 days | >3 years|
787+
| **Domain-Audit** | Domain Audit-Information as configured in Admin-Node-Manager | 10GB / 270 days | 270 days| 720 days| 30 days | >3 years|
788788

789789
Please note:
790790
:point_right: It's optional to use different hardware per stage

apibuilder4elastic/elasticsearch_config/apigw-domainaudit/ilm_policy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
}
4040
},
4141
"delete": {
42-
"min_age": "15d",
42+
"min_age": "750d",
4343
"actions": {
4444
"delete": {
4545
"delete_searchable_snapshot": true

apibuilder4elastic/elasticsearch_config/apigw-monitoring/ilm_policy.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
}
3232
},
3333
"cold": {
34-
"min_age": "30d",
34+
"min_age": "90d",
3535
"actions": {
3636
"set_priority": {
3737
"priority": 0
3838
}
3939
}
4040
},
4141
"delete": {
42-
"min_age": "15d",
42+
"min_age": "105d",
4343
"actions": {
4444
"delete": {
4545
"delete_searchable_snapshot": true

apibuilder4elastic/elasticsearch_config/trace-messages/ilm_policy.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
}
3232
},
3333
"cold": {
34-
"min_age": "4d",
34+
"min_age": "12d",
3535
"actions": {
3636
"set_priority": {
3737
"priority": 20
3838
}
3939
}
4040
},
4141
"delete": {
42-
"min_age": "3d",
42+
"min_age": "15d",
4343
"actions": {
4444
"delete": {
4545
"delete_searchable_snapshot": true

apibuilder4elastic/elasticsearch_config/traffic-details/ilm_policy.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
}
3232
},
3333
"cold": {
34-
"min_age": "4d",
34+
"min_age": "12d",
3535
"actions": {
3636
"set_priority": {
3737
"priority": 20
3838
}
3939
}
4040
},
4141
"delete": {
42-
"min_age": "3d",
42+
"min_age": "15d",
4343
"actions": {
4444
"delete": {
4545
"delete_searchable_snapshot": true

apibuilder4elastic/elasticsearch_config/traffic-summary/ilm_policy.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
}
3232
},
3333
"cold": {
34-
"min_age": "4d",
34+
"min_age": "12d",
3535
"actions": {
3636
"set_priority": {
3737
"priority": 20
3838
}
3939
}
4040
},
4141
"delete": {
42-
"min_age": "3d",
42+
"min_age": "15d",
4343
"actions": {
4444
"delete": {
4545
"delete_searchable_snapshot": true

0 commit comments

Comments
 (0)