diff options
author | jmac <james.macnider@amdocs.com> | 2019-02-21 20:03:49 +0000 |
---|---|---|
committer | Alexis de Talhouƫt <adetalhouet89@gmail.com> | 2019-03-13 14:06:12 +0000 |
commit | 76d4a8a72e72c46cca38f2f41b48c07a246c5341 (patch) | |
tree | ef5822f7163671b9056570f186d552966c1c7ed8 /kubernetes/pomba/resources/config/log | |
parent | 623e0f619da41a1cd4de18b0ae61b32e1408eff0 (diff) |
Add missing filebeat sidecars for Pomba
Change-Id: I5f2cf1d74d55df0002af75367042eaf795ea2e8c
Signed-off-by: jmac <james.macnider@amdocs.com>
Issue-ID: LOG-852
Diffstat (limited to 'kubernetes/pomba/resources/config/log')
-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 |