diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2019-03-14 11:42:42 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-14 11:42:42 +0000 |
commit | 603d7e52ca881df2baccdc956c999d537a9d5700 (patch) | |
tree | 9cef295b6f572e658d7ea850659b9d8b92dc06ec /kubernetes/pomba/resources/config/log/filebeat/filebeat.yml | |
parent | e7b54f7aadaa2b4ed550a2418bda11ccbfecf2f0 (diff) | |
parent | 76d4a8a72e72c46cca38f2f41b48c07a246c5341 (diff) |
Merge "Add missing filebeat sidecars for Pomba"
Diffstat (limited to 'kubernetes/pomba/resources/config/log/filebeat/filebeat.yml')
-rw-r--r-- | kubernetes/pomba/resources/config/log/filebeat/filebeat.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kubernetes/pomba/resources/config/log/filebeat/filebeat.yml b/kubernetes/pomba/resources/config/log/filebeat/filebeat.yml index b0d4690754..768b1c59dc 100644 --- a/kubernetes/pomba/resources/config/log/filebeat/filebeat.yml +++ b/kubernetes/pomba/resources/config/log/filebeat/filebeat.yml @@ -3,9 +3,15 @@ filebeat.prospectors: - input_type: log #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory. paths: + - /opt/app/logs/EELF/*/*.log + - /opt/app/logs/EELF/*.log - /var/log/onap/*/*/*/*.log - /var/log/onap/*/*/*.log - /var/log/onap/*/*.log + - /var/log/onap/*.log + - /logs/*/*.log + - /logs/*.log + #Files older than this should be ignored.In our case it will be 48 hours i.e. 2 days. It is a helping flag for clean_inactive ignore_older: 48h # Remove the registry entry for a file that is more than the specified time. In our case it will be 96 hours, i.e. 4 days. It will help to keep registry records with in limit |